liujiandao
2024-03-01 6db46482ae4c8dac7161a0e9ded92cff5db7c1a4
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
29
30
31
32
package request
 
import "silkserver/constvar"
 
type GetDictList struct {
    PageInfo
    DictType constvar.DictType `json:"dictType"` //字典类型
}
 
type AddDict struct {
    DictType constvar.DictType `json:"dictType"` //字典类型
    Number   string            `json:"number"`   //编码
    Name     string            `json:"name"`     //名称
    Remark   string            `json:"remark"`   //备注
}
 
type UpdateDict struct {
    ID uint `gorm:"comment:主键ID;primaryKey;" json:"id"`
    AddDict
}
 
// ---------------------------------------生丝---------------------------------
type GetPriceStandard struct {
    PageInfo
    KeyWord string `json:"keyWord"`
}
 
// ---------------------------------------车间---------------------------------
type GetWorkshopManage struct {
    PageInfo
    KeyWord string `json:"keyWord"`
}