package request
|
|
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
|
Keyword string `json:"keyword"`
|
}
|