|
|
@@ -56,6 +56,7 @@ type Customer struct {
|
|
|
FollowUpDate *gtime.Time `p:"followUpDate" json:"followUpDate" ` //跟进时间
|
|
|
CustIndustry string `p:"custIndustry" json:"custIndustry" v:"required#客户行业不能为空"` //客户行业
|
|
|
CustLevel string `p:"custLevel" json:"custLevel" v:"required#客户级别不能为空"` //客户级别
|
|
|
+ CustSource string `p:"custSource" json:"source" v:"required#客户来源不能为空"` //客户级别
|
|
|
CustDistCode int `p:"custDistCode" json:"custDistCode" v:"required#省份不能为空" ` // 省份Id
|
|
|
Remark string `p:"remark" json:"remark""` //备注
|
|
|
SalesName string `p:"salesName" json:"salesName" ` //
|
|
|
@@ -84,6 +85,7 @@ type CustList struct {
|
|
|
FollowUpDate string `orm:"follow_up_date" json:"followUpDate"` // 最后跟进时间
|
|
|
CustIndustry string `orm:"cust_industry" json:"custIndustry"` // 客户行业
|
|
|
CustLevel string `orm:"cust_level" json:"custLevel"` // 客户级别(10 重点客户 20 普通客户 30非优客户)
|
|
|
+ CustSource string `orm:"cust_soucrce" json:"source"` // 客户来源
|
|
|
CreatedName string `orm:"created_name" json:"createdName"` // 创建人
|
|
|
CreatedTime string `orm:"created_time" json:"createdTime"` // 创建时间
|
|
|
SalesId int `orm:"sales_id" json:"salesId"` //
|