From 7438f17c0b3a9f79ee5890c554bedc64c362859b Mon Sep 17 00:00:00 2001 From: zhangqian <zhangqian@123.com> Date: 星期五, 13 十月 2023 14:04:59 +0800 Subject: [PATCH] 销售计划简单数据权限 --- model/request/serviceFeeManage.go | 60 ++++++++++++++++++++++++++++++++---------------------------- 1 files changed, 32 insertions(+), 28 deletions(-) diff --git a/model/request/serviceFeeManage.go b/model/request/serviceFeeManage.go index 74a9f38..4ba0295 100644 --- a/model/request/serviceFeeManage.go +++ b/model/request/serviceFeeManage.go @@ -1,28 +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 -} - -type GetServiceFeeManageList struct { - PageInfo - Keyword string `json:"keyword"` -} - -type DeleteServiceFeeManage struct { - Ids []int `json:"ids"` -} +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"` +} -- Gitblit v1.8.0