From 012da13206f2e4d6a3871b050c71a3b237878424 Mon Sep 17 00:00:00 2001
From: wangpengfei <274878379@qq.com>
Date: 星期四, 10 八月 2023 16:39:32 +0800
Subject: [PATCH] Merge branch 'master' into fly

---
 model/request/salesDetails.go |   40 +++++++++++++++++++++-------------------
 1 files changed, 21 insertions(+), 19 deletions(-)

diff --git a/model/request/salesDetails.go b/model/request/salesDetails.go
index f5b1975..1d12f61 100644
--- a/model/request/salesDetails.go
+++ b/model/request/salesDetails.go
@@ -1,31 +1,32 @@
 package request
 
 import (
+	"aps_crm/constvar"
 	"aps_crm/model"
 )
 
 type AddSalesDetails struct {
-	SalesDetails SalesDetails `json:"salesDetails"`
+	SalesDetails
 }
 
 type SalesDetails struct {
-	ClientId          int             `json:"clientId" gorm:"column:client_id;type:int;comment:瀹㈡埛id"`
-	Number            string          `json:"number" gorm:"column:number;type:varchar(255);comment:閿�鍞瓙鍗曞彿"`
-	SaleChanceId      int             `json:"saleChanceId" gorm:"column:sale_chance_id;type:int;comment:閿�鍞満浼歩d"`
-	SaleType          int             `json:"saleType" gorm:"column:sale_type;type:int;comment:閿�鍞被鍨�"`
-	SignTime          string          `json:"signTime" gorm:"column:sign_time;type:datetime;comment:绛惧崟鏃堕棿"`
-	MemberId          int             `json:"memberId" gorm:"column:member_id;type:int;comment:璐熻矗浜篿d"`
-	DeliveryDate      string          `json:"deliveryDate" gorm:"column:delivery_date;type:datetime;comment:浜よ揣鏃ユ湡"`
-	WechatOrderStatus int             `json:"wechatOrderStatus" gorm:"column:wechat_order_status;type:int;comment:寰俊璁㈠崟鐘舵��"`
-	Address           string          `json:"address" gorm:"column:address;type:varchar(255);comment:鍦板潃"`
-	Phone             string          `json:"phone" gorm:"column:phone;type:varchar(255);comment:鐢佃瘽"`
-	Addressee         string          `json:"addressee" gorm:"column:addressee;type:varchar(255);comment:鏀朵欢浜�"`
-	Conditions        string          `json:"conditions" gorm:"column:conditions;type:text;comment:鏉′欢"`
-	Remark            string          `json:"remark" gorm:"column:remark;type:text;comment:澶囨敞"`
-	Products          []model.Product `json:"products" gorm:"many2many:salesDetails_product;"`
-	LogisticCompany   string          `json:"logisticCompany" gorm:"column:logistic_company;type:varchar(255);comment:鐗╂祦鍏徃"`
-	LogisticNumber    string          `json:"logisticNumber" gorm:"column:logistic_number;type:varchar(255);comment:鐗╂祦鍗曞彿"`
-	LogisticCost      float64         `json:"logisticCost" gorm:"column:logistic_cost;type:decimal(10,2);comment:鐗╂祦璐圭敤"`
+	ClientId            int             `json:"clientId" gorm:"column:client_id;type:int;comment:瀹㈡埛id"`
+	Number              string          `json:"number" gorm:"column:number;type:varchar(255);comment:閿�鍞瓙鍗曞彿"`
+	SaleChanceId        int             `json:"saleChanceId" gorm:"column:sale_chance_id;type:int;comment:閿�鍞満浼歩d"`
+	SaleType            int             `json:"saleType" gorm:"column:sale_type;type:int;comment:閿�鍞被鍨�"`
+	SignTime            string          `json:"signTime" gorm:"column:sign_time;type:datetime;comment:绛惧崟鏃堕棿"`
+	MemberId            int             `json:"memberId" gorm:"column:member_id;type:int;comment:璐熻矗浜篿d"`
+	DeliveryDate        string          `json:"deliveryDate" gorm:"column:delivery_date;type:datetime;comment:浜よ揣鏃ユ湡"`
+	WechatOrderStatusId int             `json:"wechatOrderStatusId" gorm:"column:wechat_order_status_id;type:int;comment:寰俊璁㈠崟鐘舵�乮d"`
+	Address             string          `json:"address" gorm:"column:address;type:varchar(255);comment:鍦板潃"`
+	Phone               string          `json:"phone" gorm:"column:phone;type:varchar(255);comment:鐢佃瘽"`
+	Addressee           string          `json:"addressee" gorm:"column:addressee;type:varchar(255);comment:鏀朵欢浜�"`
+	Conditions          string          `json:"conditions" gorm:"column:conditions;type:text;comment:鏉′欢"`
+	Remark              string          `json:"remark" gorm:"column:remark;type:text;comment:澶囨敞"`
+	Products            []model.Product `json:"products" gorm:"many2many:sales_details_product;"`
+	LogisticCompany     string          `json:"logisticCompany" gorm:"column:logistic_company;type:varchar(255);comment:鐗╂祦鍏徃"`
+	LogisticNumber      string          `json:"logisticNumber" gorm:"column:logistic_number;type:varchar(255);comment:鐗╂祦鍗曞彿"`
+	LogisticCost        float64         `json:"logisticCost" gorm:"column:logistic_cost;type:decimal(10,2);comment:鐗╂祦璐圭敤"`
 }
 
 type UpdateSalesDetails struct {
@@ -35,5 +36,6 @@
 
 type GetSalesDetailsList struct {
 	PageInfo
-	Keyword string `json:"keyword"`
+	KeywordType constvar.SalesDetailsKeywordType `json:"keywordType"`
+	Keyword     string                           `json:"keyword"`
 }

--
Gitblit v1.8.0