From 6befd5f2fe9779883993b87f2e686885c147bc34 Mon Sep 17 00:00:00 2001
From: zhangqian <zhangqian@123.com>
Date: 星期三, 20 三月 2024 14:43:20 +0800
Subject: [PATCH] fix
---
model/request/serviceFeeManage.go | 51 ++++++++++++++++++++++++++++++++-------------------
1 files changed, 32 insertions(+), 19 deletions(-)
diff --git a/model/request/serviceFeeManage.go b/model/request/serviceFeeManage.go
index 2972640..4ba0295 100644
--- a/model/request/serviceFeeManage.go
+++ b/model/request/serviceFeeManage.go
@@ -1,19 +1,32 @@
-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
-}
+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