liujiandao
2024-01-11 40e540f8ca398fee68f4520dbebd6db6fe2e164c
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
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"`
}