作者 Your Name

更新

... ... @@ -14,7 +14,6 @@ type RewardRule struct {
FaultNum int `json:"faultNum"`
FaultAmount string `json:"faultAmount"`
Remark string `json:"remark"`
IsBackup int `json:"IsBackup"` //是否作为备份遗留的 0 否 1 是
CreatedAt time.Time
UpdatedAt time.Time
}
... ... @@ -42,12 +41,3 @@ func (m *RewardRule) ValidFaultTag() bool {
}
return true
}
// 编辑 奖惩标准时 ,是否需要将旧数据做备份处理
func (m *RewardRule) NeedMakeBackup() bool {
// 当前时间与 数据最后更新的时间 不是同一天时
// 备份数据
updateAt := m.UpdatedAt.Local().Format("2006-01-02")
nowDate := time.Now().Format("2006-01-02")
return !(updateAt == nowDate)
}
... ...
... ... @@ -16,7 +16,6 @@ type RewardStandard struct {
ProductLine SimpleProductLine `json:"productLine"` //生产线
ProductSection ProductSection `json:"ProductSection"` //工段
Remark string `json:"remark"` //备注
IsBackup int `json:"IsBackup"` //是否作为备份遗留的 0 否 1是
TargetType int `json:"targetType"` //指标类别 1:产效 2:合格率 3:安全事故 4:质量事故 5:异物次数
TargeVal1 string `json:"targeVal1"` //填写的指标值1
TargeVal2 string `json:"targeVal2"` //填写的指标值2
... ...