liujiandao
2023-11-18 115bd9b51f5d8eade4658f844de37516486c60e7
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
32
package request
 
import "aps_crm/constvar"
 
type AddServiceFeeManage struct {
    ServiceFeeManage
    Client
}
 
type ServiceFeeManage struct {
    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
    ServiceFeeManage
}
 
type GetServiceFeeManageList struct {
    PageInfo
    QueryClass  constvar.ServiceFeeQueryClass  `json:"queryClass"`
    KeywordType constvar.ServiceFeeKeywordType `json:"keywordType"`
    Keyword     string                         `json:"keyword"`
}
 
type DeleteServiceFeeManage struct {
    Ids []int `json:"ids"`
}