reward_standard_info.go 848 字节
package dto

type RewardStandardInfo struct {
	Id           int    `json:"id"`           //奖惩标准id
	WorkshopId   int    `json:"workshopId"`   //车间id
	WorkshopName string `json:"workshopName"` //
	LineId       int    `json:"lineId"`       //生产线ID
	LineName     string `json:"lineName"`     //
	SectionId    int    `json:"sectionId"`    //工段ID
	SectionName  string `json:"sectionName"`  //
	Remark       string `json:"remark"`       //备注
	TargetType   int    `json:"targetType"`   //指标类别 1:产效 2:合格率 3:安全事故 4:质量事故 5:异物次数
	TargeVal1    string `json:"targeVal1"`    //填写的指标值1
	TargeVal2    string `json:"targeVal2"`    //填写的指标值2
	TargeVal3    string `json:"targeVal3"`    //填写的指标值3
	TargeVal4    string `json:"targeVal4"`    //填写的指标值4

}