Răsfoiți Sursa

添加预估成本、招募截止具体时间、产品置换服务费

Ohio-HYF 2 ani în urmă
părinte
comite
c528ed7d1f
1 a modificat fișierele cu 1 adăugiri și 1 ștergeri
  1. 1 1
      model/gorm_model/project.go

+ 1 - 1
model/gorm_model/project.go

@@ -33,7 +33,7 @@ type ProjectInfo struct {
 	FailReason        int64      `gorm:"column:fail_reason"`                           // 失效原因,1、2分别表示逾期未支付、项目存在风险
 	PassAt            *time.Time `gorm:"column:pass_at"`                               // 审核通过时间
 	FinishAt          *time.Time `gorm:"column:finish_at"`                             // 结案时间
-	EstimatedCost     string     `gorm:"column:estimated_cost"`                        // 预估成本
+	EstimatedCost     float64     `gorm:"column:estimated_cost"`                        // 预估成本
 	IsRead            int64      `gorm:"column:is_read"`                               // 是否已读
 }