Browse Source

feature(订单管理系统):
1、项目管理编辑

niezch 2 years ago
parent
commit
a0afb46361
1 changed files with 18 additions and 0 deletions
  1. 18 0
      opms_parent/app/model/proj/proj_business.go

+ 18 - 0
opms_parent/app/model/proj/proj_business.go

@@ -73,6 +73,24 @@ type AddProjBusinessReq struct {
 	//FollowContent  string      `json:"followContent"       v:"required#跟进内容不能为空"` // 跟进内容
 
 	Products []BusinessProduct `json:"products"      v:"required#产品列表不能为空"` // 产品列表
+	//20230330 添加
+	NextFollowTime          *gtime.Time `json:"nextFollowTime"`          // 下次联系时间
+	FinalFollowTime         *gtime.Time `json:"finalFollowTime"`         // 最新跟进时间
+	TechnicalSupportTime    *gtime.Time `json:"technicalSupportTime"`    // 技术支持时间
+	TechnicalSupportName    string      `json:"technicalSupportName"`    // 技术支持人员
+	TechnicalSupportContent string      `json:"technicalSupportContent"` // 技术支持内容
+	ParentReceiver          string      `json:"parentReceiver"`          // 总部对接人
+	CapitalSource           string      `json:"capitalSource"`           // 资金来源
+	NboBudgetTime           *gtime.Time `json:"nboBudgetTime"`           // 项目预算期限
+	ProductSatisfaction     string      `json:"productSatisfaction"`     // 产品/方案满足情况
+	PurchasingWay           string      `json:"purchasingWay"`           // 采购方式
+	PurchasingTime          *gtime.Time `json:"purchasingTime"`          // 采购时间
+	MakerName               string      `json:"makerName"`               // 决策人员
+	MakerDept               string      `json:"makerDept"`               // 决策部门
+	DealerSalesName         string      `json:"dealerSalesName"`         // 经销商销售人员
+	Accendant               string      `json:"accendant"`               // 维护部门及人员
+	IsAdoptDashoo           string      `json:"isAdoptDashoo"`           // 是否采纳大数技术参数
+
 }
 
 type UpdateProjBusinessReq struct {