From 530fed8ec225453572d57b15c200ab062c335457 Mon Sep 17 00:00:00 2001
From: zhangqian <zhangqian@123.com>
Date: 星期三, 01 十一月 2023 19:20:21 +0800
Subject: [PATCH] 公海member_id使用0

---
 model/request/orderManage.go |   58 +++++++++++++++++++++++++++++++---------------------------
 1 files changed, 31 insertions(+), 27 deletions(-)

diff --git a/model/request/orderManage.go b/model/request/orderManage.go
index 614db86..f7404b1 100644
--- a/model/request/orderManage.go
+++ b/model/request/orderManage.go
@@ -1,27 +1,31 @@
-package request
-
-type AddOrderManage struct {
-	OrderManage
-}
-
-type OrderManage struct {
-	Name               string `json:"name"`
-	ClientId           int    `json:"clientId"`
-	Number             string `json:"number"`
-	ContactId          int    `json:"contactId"`
-	OrderType          int    `json:"orderType"`
-	ReportSourceId     int    `json:"reportSourceId"`
-	SourceSheet        int    `json:"sourceSheet"`
-	ProblemDescription string `json:"problemDescription"`
-	File               string `json:"file"`
-}
-
-type UpdateOrderManage struct {
-	Id int `json:"id"`
-	OrderManage
-}
-
-type GetOrderManageList struct {
-	PageInfo
-	Keyword string `json:"keyword"`
-}
+package request
+
+type AddOrderManage struct {
+	OrderManage
+}
+
+type OrderManage struct {
+	Name               string `json:"name"`
+	ClientId           int    `json:"clientId"`
+	Number             string `json:"number"`
+	ContactId          int    `json:"contactId"`
+	OrderType          int    `json:"orderType"`
+	ReportSourceId     int    `json:"reportSourceId"`
+	SourceSheet        int    `json:"sourceSheet"`
+	ProblemDescription string `json:"problemDescription"`
+	File               string `json:"file"`
+}
+
+type UpdateOrderManage struct {
+	Id int `json:"id"`
+	OrderManage
+}
+
+type GetOrderManageList struct {
+	PageInfo
+	Keyword string `json:"keyword"`
+}
+
+type DeleteOrderManage struct {
+	Ids []int `json:"ids"`
+}

--
Gitblit v1.8.0