|
@@ -21,7 +21,7 @@ type ClueAddReq struct {
|
|
|
FollowUpTime int64 `json:"followUpTime,optional"` //下次跟进时间(时间戳)
|
|
|
Types int64 `json:"types"` //处理方式 1自办;2转办
|
|
|
User []int64 `json:"user,optional"` //企业用户id
|
|
|
- EmployInfoId int64 `json:"employInfoId"` //资讯收录id
|
|
|
+ EmployInfoId int64 `json:"employInfoId,optional"` //资讯收录id
|
|
|
CreateName string `json:"createName"` //创建人
|
|
|
}
|
|
|
|
|
@@ -44,8 +44,8 @@ type SaleChanceReq struct {
|
|
|
NextfollowUpTime int64 `json:"nextfollowUpTime,optional"` //下次跟进时间戳
|
|
|
Types int64 `json:"types"` //处理方式 1自办;2转办
|
|
|
User []int64 `json:"user,optional"` //企业用户id
|
|
|
- EmployInfoId int64 `json:"employInfoId"` //资讯收录id
|
|
|
- CustomId int64 `json:"customId"` //客户id
|
|
|
+ EmployInfoId int64 `json:"employInfoId,optional"` //资讯收录id
|
|
|
+ CustomId int64 `json:"customId,optional"` //客户id
|
|
|
CreateName string `json:"createName"` //创建人
|
|
|
}
|
|
|
|
|
@@ -102,25 +102,25 @@ type CustomAddReq struct {
|
|
|
EntId int64 `header:"entId,optional"`
|
|
|
AccountId int64 `header:"accountId,optional"`
|
|
|
EntDeptId int64 `header:"entDeptId,optional"`
|
|
|
- CustomType int64 `json:"customType"` //客户类型
|
|
|
- Summary string `json:"summary"` //概要信息
|
|
|
- CustomAllName string `json:"customAllName"` //客户全称
|
|
|
- CustomAbbreviation string `json:"customAbbreviation"` //客户简称
|
|
|
- CustomLevel int64 `json:"customLevel,optional"` //客户级别
|
|
|
- CustomIndustry int64 `json:"customIndustry"` //客户行业
|
|
|
- CustomDetailIndustry int64 `json:"customDetailIndustry"` //客户细分行业
|
|
|
- Province string `json:"province,optional"` //省份
|
|
|
- City string `json:"city,optional"` //城市
|
|
|
- District string `json:"district,optional"` //地区
|
|
|
- Address string `json:"address,optional"` //详细地址
|
|
|
- CompanyPhone string `json:"companyPhone,optional"` //公司电话
|
|
|
- NextfollowUpTime int64 `json:"nextfollowUpTime,optional"` //下次跟进时间戳
|
|
|
- Types int64 `json:"types"` //处理方式 1自办;2转办
|
|
|
- User []int64 `json:"user,optional"` //转办用户
|
|
|
- EmployCustomId int64 `json:"employCustomId,optional"` //客户收录id
|
|
|
- EmployInfoId int64 `json:"employInfoId,optional"` //资讯收录id
|
|
|
- Remarks string `json:"remarks,optional"` //备注
|
|
|
- CreateName string `json:"createName"` //创建人
|
|
|
+ CustomType int64 `json:"customType"` //客户类型
|
|
|
+ Summary string `json:"summary"` //概要信息
|
|
|
+ CustomAllName string `json:"customAllName"` //客户全称
|
|
|
+ CustomAbbreviation string `json:"customAbbreviation"` //客户简称
|
|
|
+ CustomLevel int64 `json:"customLevel,optional"` //客户级别
|
|
|
+ CustomIndustry int64 `json:"customIndustry"` //客户行业
|
|
|
+ CustomDetailIndustry int64 `json:"customDetailIndustry"` //客户细分行业
|
|
|
+ Province string `json:"province,optional"` //省份
|
|
|
+ City string `json:"city,optional"` //城市
|
|
|
+ District string `json:"district,optional"` //地区
|
|
|
+ Address string `json:"address,optional"` //详细地址
|
|
|
+ CompanyPhone string `json:"companyPhone,optional"` //公司电话
|
|
|
+ NextfollowUpTime int64 `json:"nextfollowUpTime,optional"` //下次跟进时间戳
|
|
|
+ Types int64 `json:"types"` //处理方式 1自办;2转办
|
|
|
+ User []int64 `json:"user,optional"` //转办用户
|
|
|
+ EmployCustomId int64 `json:"employCustomId,optional,optional"` //客户收录id
|
|
|
+ EmployInfoId int64 `json:"employInfoId,optional,optional"` //资讯收录id
|
|
|
+ Remarks string `json:"remarks,optional"` //备注
|
|
|
+ CreateName string `json:"createName"` //创建人
|
|
|
}
|
|
|
|
|
|
type FileUploadReq struct {
|