zhangqian
2024-07-01 73b6baf6af3d88cdcb0e2df7932a9bd96b0b85c5
request/operation_type.go
@@ -4,7 +4,8 @@
type GetOperationTypeList struct {
   PageInfo
   Keyword string `json:"keyword"`
   Keyword      string `json:"keyword" form:"keyword"`           //关键字搜索
   WarehouseIds string `json:"warehouseIds" form:"warehouseIds"` //仓库id
}
type AddOperationType struct {
@@ -24,9 +25,14 @@
   ShowOperations                bool                       `json:"showOperations" gorm:"column:show_operations;type:int"`          //显示作业详情
   CreateBackorder               constvar.WhetherType       `json:"createBackorder" gorm:"column:create_backorder"`                 //创建欠单
   ReturnOperationTypeID         int                        `json:"returnOperationTypeID" gorm:"column:return_job_type_id"`         //退货类型ID
   Prefix                        string                     `json:"prefix" gorm:"type:varchar(255);comment:前缀"`                     //前缀
}
type UpdateOperationType struct {
   ID uint `gorm:"comment:主键ID;primaryKey;" json:"id"`
   AddOperationType
}
type ListTransfer struct {
   Keyword string `json:"keyword"`
}