fox
zhangqian
2024-05-07 7d06c6472f1acea6b2e49e7b8837bf555e94e219
1
2
3
4
5
6
7
8
9
10
11
12
13
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"`      //薪资方案
}