package response
|
|
import "github.com/shopspring/decimal"
|
|
type WorkTypeList struct {
|
Id uint `json:"id"`
|
WorkName string `json:"workName"` //工种名称
|
IsGuaranteed bool `json:"isGuaranteed"` //不达标保底
|
GuaranteedWages decimal.Decimal `json:"guaranteedWages"` //保底工资
|
AddPeople string `json:"addPeople"` //添加人
|
CreateTime string `json:"createTime"` //添加时间
|
SalaryPlan string `json:"salaryPlan"` //薪资方案
|
}
|