add
wangpengfei
2023-07-14 5f00d720ea52ababeb10954da4d33ab6c46e93b7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package request
 
type AddPlan struct {
    Plan Plan `json:"plan"`
}
 
type Plan struct {
    ClientId       int    `json:"clientId"`
    Number         string `json:"number"`
    MemberId       int    `json:"memberId"`
    SubOrderId     int    `json:"subOrderId"`
    SalesDetailsId int    `json:"salesDetailsId"`
    StartTime      string `json:"startTime"`
    EndTime        string `json:"endTime"`
    Content        string `json:"content"`
    File           string `json:"file"`
}
 
type UpdatePlan struct {
    Id   int  `json:"id"`
    Plan Plan `json:"plan"`
}