|
@@ -21,6 +21,23 @@ type CygxApplyRecord struct {
|
|
InviteCompanySource int `description:"来源 1小程序,2:网页"`
|
|
InviteCompanySource int `description:"来源 1小程序,2:网页"`
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+type CygxApplyRecordResp struct {
|
|
|
|
+ ApplyRecordId int `orm:"column(apply_record_id);pk" description:"申请试用id"`
|
|
|
|
+ UserId int `description:"用户ID"`
|
|
|
|
+ BusinessCardUrl string `description:"名片地址"`
|
|
|
|
+ RealName string `description:"姓名"`
|
|
|
|
+ CompanyName string `description:"公司名称"`
|
|
|
|
+ CompanyIdPay int `description:"已付费客户公司id"`
|
|
|
|
+ CompanyIdType int `description:"用户状态,1:潜在客户 、2:现有客户 、3:FICC客户 、4:现有客户(正式,无对应权限) 、5:现有客户(试用,无对应权限) 、6:现有客户(试用暂停) 、7:现有客户(冻结) 、8:现有客户(流失) "`
|
|
|
|
+ CompanyNamePay string `description:"公司名称"`
|
|
|
|
+ Mobile string `description:"手机号"`
|
|
|
|
+ CreateTime time.Time `description:"创建时间"`
|
|
|
|
+ ApplyMethod int `description:"1:已付费客户申请试用,2:非客户申请试用"`
|
|
|
|
+ RegisterPlatform int `description:"来源 1小程序,2:网页"`
|
|
|
|
+ InviteCompanySource int `description:"三方来源 ,1:弘则本身,2:络町"`
|
|
|
|
+ ApplicationSource string `description:"申请来源"`
|
|
|
|
+}
|
|
|
|
+
|
|
func AddApplyRecordold(item *ApplyTryReq, mobile, companyNamePay string, userId, companyIdPay, CompanyIdType int) (err error) {
|
|
func AddApplyRecordold(item *ApplyTryReq, mobile, companyNamePay string, userId, companyIdPay, CompanyIdType int) (err error) {
|
|
o, err := orm.NewOrm().Begin()
|
|
o, err := orm.NewOrm().Begin()
|
|
if err != nil {
|
|
if err != nil {
|
|
@@ -96,13 +113,13 @@ func GetCygxApplyRecordByMobile(mobile string) (item *CygxApplyRecord, err error
|
|
}
|
|
}
|
|
|
|
|
|
// 通过ID获取详情
|
|
// 通过ID获取详情
|
|
-func GetCygxApplyRecordById(applyRecordId int) (item *CygxApplyRecord, err error) {
|
|
|
|
|
|
+func GetCygxApplyRecordById(applyRecordId int) (item *CygxApplyRecordResp, err error) {
|
|
o := orm.NewOrm()
|
|
o := orm.NewOrm()
|
|
sql := `SELECT * FROM cygx_apply_record WHERE apply_record_id=? `
|
|
sql := `SELECT * FROM cygx_apply_record WHERE apply_record_id=? `
|
|
err = o.Raw(sql, applyRecordId).QueryRow(&item)
|
|
err = o.Raw(sql, applyRecordId).QueryRow(&item)
|
|
return
|
|
return
|
|
}
|
|
}
|
|
|
|
|
|
-type CygxApplyRecordResp struct {
|
|
|
|
- Detail *CygxApplyRecord
|
|
|
|
|
|
+type CygxApplyRecordDetialResp struct {
|
|
|
|
+ Detail *CygxApplyRecordResp
|
|
}
|
|
}
|