|
@@ -23,19 +23,20 @@ type ProductConsultRecordListReq struct {
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
type ProductConsultRecordAddReq struct {
|
|
type ProductConsultRecordAddReq struct {
|
|
|
- Code string `json:"code"` // 序号
|
|
|
|
|
|
|
+ Code string `json:"code"` // 序号
|
|
|
ConsultTime *gtime.Time `json:"consultTime" v:"required#请输入日期时间"` // 日期时间
|
|
ConsultTime *gtime.Time `json:"consultTime" v:"required#请输入日期时间"` // 日期时间
|
|
|
- ProvinceId int `json:"provinceId"` // 所在省ID
|
|
|
|
|
- Province string `json:"province"` // 所在省
|
|
|
|
|
- CityId int `json:"cityId"` // 所在市ID
|
|
|
|
|
- City string `json:"city"` // 所在市
|
|
|
|
|
|
|
+ ProvinceId int `json:"provinceId"` // 所在省ID
|
|
|
|
|
+ Province string `json:"province"` // 所在省
|
|
|
|
|
+ CityId int `json:"cityId"` // 所在市ID
|
|
|
|
|
+ City string `json:"city"` // 所在市
|
|
|
Unit string `json:"unit" v:"required#请输入单位名称"` // 单位名称
|
|
Unit string `json:"unit" v:"required#请输入单位名称"` // 单位名称
|
|
|
- Name string `json:"name" v:"required#请输入联系人"` // 联系人
|
|
|
|
|
|
|
+ Name string `json:"name" v:"required#请输入联系人"` // 联系人
|
|
|
Contact string `json:"contact" v:"required#请输入联系方式"` // 联系方式
|
|
Contact string `json:"contact" v:"required#请输入联系方式"` // 联系方式
|
|
|
Product string `json:"product" v:"required#请输入咨询产品"` // 咨询产品
|
|
Product string `json:"product" v:"required#请输入咨询产品"` // 咨询产品
|
|
|
- InchargeId int `json:"inchargeId" v:"required#请输入对接人"` // 对接人ID
|
|
|
|
|
- InchargeName string `json:"inchargeName"` // 对接人(销售工程师)
|
|
|
|
|
- Remark string `json:"remark"` // 备注
|
|
|
|
|
|
|
+ InchargeId int `json:"inchargeId" v:"required#请输入对接人"` // 对接人ID
|
|
|
|
|
+ InchargeName string `json:"inchargeName"` // 对接人(销售工程师)
|
|
|
|
|
+ Content string `json:"content"` // 内容
|
|
|
|
|
+ Remark string `json:"remark"` // 备注
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
type ProductConsultRecordUpdateReq struct {
|
|
type ProductConsultRecordUpdateReq struct {
|