zhangqian
2023-11-01 530fed8ec225453572d57b15c200ab062c335457
model/request/serviceFeeManage.go
@@ -1,19 +1,32 @@
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
}
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"`
}