From d4bf53dd19a45ef09a367babcf7a2ac04ae1d08f Mon Sep 17 00:00:00 2001
From: liujiandao <274878379@qq.com>
Date: 星期二, 17 十月 2023 14:31:31 +0800
Subject: [PATCH] bug修改

---
 model/contract.go |   34 ++++++++++++++++++++++------------
 1 files changed, 22 insertions(+), 12 deletions(-)

diff --git a/model/contract.go b/model/contract.go
index 4c75e20..93519c3 100644
--- a/model/contract.go
+++ b/model/contract.go
@@ -7,17 +7,20 @@
 
 type (
 	Contract struct {
-		Id          int         `json:"id" gorm:"column:id;primary_key;AUTO_INCREMENT"`
-		ClientId    int         `json:"clientId" gorm:"column:client_id;type:int;comment:瀹㈡埛id"`
-		Client      Client      `json:"client" gorm:"foreignKey:ClientId"`
-		MemberId    int         `json:"memberId" gorm:"column:member_id;type:int;comment:璐熻矗浜篿d"`
-		Member      User        `json:"member" gorm:"foreignKey:MemberId"`
-		Number      string      `json:"number" gorm:"column:number;type:varchar(255);comment:鍚堝悓缂栧彿"`
-		QuotationId int         `json:"quotationId" gorm:"column:quotation_id;type:int;comment:鎶ヤ环鍗昳d"`
-		Quotation   Quotation   `json:"quotation" gorm:"foreignKey:QuotationId;references:Id"`
-		StatusId    int         `json:"statusId" gorm:"column:status_id;type:int;comment:鍚堝悓鐘舵��"`
-		File        string      `json:"file" gorm:"column:file;type:varchar(255);comment:鍚堝悓鏂囦欢"`
-		CreatedAt   *CustomTime `json:"created_at" gorm:"column:created_at;type:datetime;comment:鍒涘缓鏃堕棿"`
+		Id                    int                   `json:"id" gorm:"column:id;primary_key;AUTO_INCREMENT"`
+		ContractName          string                `json:"contractName" gorm:"column:contract_name;type:varchar(255);comment:鍚堝悓鍚嶇О"`
+		ClientId              int                   `json:"clientId" gorm:"column:client_id;type:int;comment:瀹㈡埛id"`
+		Client                Client                `json:"client" gorm:"foreignKey:ClientId"`
+		MemberId              int                   `json:"memberId" gorm:"column:member_id;type:int;comment:璐熻矗浜篿d"`
+		Member                User                  `json:"member" gorm:"foreignKey:MemberId"`
+		Number                string                `json:"number" gorm:"column:number;type:varchar(255);comment:鍚堝悓缂栧彿"`
+		QuotationId           int                   `json:"quotationId" gorm:"column:quotation_id;type:int;comment:鎶ヤ环鍗昳d"`
+		Quotation             Quotation             `json:"quotation" gorm:"foreignKey:QuotationId;references:Id"`
+		StatusId              int                   `json:"statusId" gorm:"column:status_id;type:int;comment:鍚堝悓鐘舵��"`
+		ServiceContractStatus ServiceContractStatus `json:"serviceContractStatus" gorm:"foreignKey:StatusId;references:Id"`
+		File                  string                `json:"file" gorm:"column:file;type:varchar(255);comment:鍚堝悓鏂囦欢"`
+		CreatedAt             *CustomTime           `json:"created_at" gorm:"column:created_at;type:datetime;comment:鍒涘缓鏃堕棿"`
+		CodeStandID           string                `json:"codeStandID" gorm:"column:code_stand_id;type:varchar(255);comment:缂栫爜id"`
 		gormModel
 	}
 
@@ -69,6 +72,9 @@
 					db = db.Where(key+"= ?", v)
 				}
 			case int:
+				if key == "member_id" {
+					db = db.Where(key+"= ?", v)
+				}
 			}
 		}
 	}
@@ -113,7 +119,7 @@
 		db = db.Limit(slf.PageSize).Offset((slf.PageNum - 1) * slf.PageSize)
 	}
 
-	err := db.Preload("Client").Preload("Member").Preload("Quotation").Order("id desc").Find(&records).Error
+	err := db.Preload("ServiceContractStatus").Preload("Client").Preload("Member").Preload("Quotation").Order("id desc").Find(&records).Error
 	return records, total, err
 }
 
@@ -140,3 +146,7 @@
 	slf.Orm = slf.Orm.Where("id in (?)", ids)
 	return slf
 }
+func (slf *ContractSearch) UpdateByMap(data map[string]interface{}) error {
+	var db = slf.build()
+	return db.Updates(data).Error
+}

--
Gitblit v1.8.0