zhangqian
2023-11-01 530fed8ec225453572d57b15c200ab062c335457
model/request/orderManage.go
@@ -1,22 +1,31 @@
package request
type AddOrderManage struct {
   OrderManage
}
type OrderManage struct {
   Name               string `json:"name"`
   ClientId           int    `json:"clientId"`
   Number             string `json:"number"`
   ContactId          int    `json:"contactId"`
   OrderType          int    `json:"orderType"`
   ReportSourceId     int    `json:"reportSourceId"`
   SourceSheet        int    `json:"sourceSheet"`
   ProblemDescription string `json:"problemDescription"`
   File               string `json:"file"`
}
type UpdateOrderManage struct {
   Id int `json:"id"`
   OrderManage
}
package request
type AddOrderManage struct {
   OrderManage
}
type OrderManage struct {
   Name               string `json:"name"`
   ClientId           int    `json:"clientId"`
   Number             string `json:"number"`
   ContactId          int    `json:"contactId"`
   OrderType          int    `json:"orderType"`
   ReportSourceId     int    `json:"reportSourceId"`
   SourceSheet        int    `json:"sourceSheet"`
   ProblemDescription string `json:"problemDescription"`
   File               string `json:"file"`
}
type UpdateOrderManage struct {
   Id int `json:"id"`
   OrderManage
}
type GetOrderManageList struct {
   PageInfo
   Keyword string `json:"keyword"`
}
type DeleteOrderManage struct {
   Ids []int `json:"ids"`
}