zhangqian
2024-04-19 61bebbdb99d6c1ca95236cc567a9718bc5f5b1eb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package request
 
import "silkserver/constvar"
 
type GetWorkerList struct {
    PageInfo
    Keyword string `json:"keyword"`
}
 
type GetWorkTypeList struct {
    PageInfo
    Keyword string `json:"keyword"`
}
 
type GetSalaryPlanList struct {
    PageInfo
    Keyword string `json:"keyword"`
}
 
type SalaryType struct {
    Type   constvar.MiniDictType `json:"type"` //字典类型,薪资类型:8
    Values []SalaryTypeValue     `json:"values"`
}
 
type SalaryTypeValue struct {
    Name      string `json:"name"`      //名称
    IsDefault bool   `json:"isDefault"` //是否可编辑
}