yinbentan
2024-07-10 743614db00f9b8cd9a97997a743f9c161e493aea
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"`      //薪资方案
}