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"` //是否可编辑
|
}
|