fix
wangpengfei
2023-07-19 e5e75fcbb5b5115da6e5069817a4bfdd892b95bb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package request
 
type AddServiceFeeManage struct {
    ServiceFeeManage
}
 
type ServiceFeeManage struct {
    ClientId   int    `json:"client_id"`
    MemberId   int    `json:"member_id"`
    LatestDate string `json:"latest_date"`
    Remark     string `json:"remark"`
    File       string `json:"file"`
}
 
type UpdateServiceFeeManage struct {
    Id     int    `json:"id"`
    Client Client `json:"client"`
    ServiceFeeManage
}