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"`
|
}
|