fix
wangpengfei
2023-08-11 460e591f215fe64d6a097ff4b1ee836d181298ac
model/saleChance.go
@@ -3,7 +3,6 @@
import (
   "aps_crm/pkg/mysqlx"
   "gorm.io/gorm"
   "time"
)
type (
@@ -23,7 +22,7 @@
      Budget                float64                `json:"budget" gorm:"column:budget;type:decimal(10,2);comment:预算"`
      ProjectedAmount       float64                `json:"projected_amount" gorm:"column:projected_amount;type:decimal(10,2);comment:预计金额"`
      Currency              int                    `json:"currency" gorm:"column:currency;type:int(11);comment:币种"`
      ExpectedTime          *time.Time             `json:"expected_time" gorm:"column:expected_time;type:datetime;comment:预计成交时间"`
      ExpectedTime          *CustomTime            `json:"expected_time" gorm:"column:expected_time;type:datetime;comment:预计成交时间"`
      StatusId              int                    `json:"status_id" gorm:"column:status_id;type:int(11);comment:状态ID"`
      PainPoints            string                 `json:"pain_points" gorm:"column:pain_points;type:text;comment:痛点"`
      WhetherEstablished    string                 `json:"whether_established" gorm:"column:whether_established;type:text;comment:是否成立"`