apply_collection.go 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. package models
  2. import (
  3. "github.com/beego/beego/v2/client/orm"
  4. "time"
  5. )
  6. type CollectionBannerResp struct {
  7. Title string `description:"标题"`
  8. IndexImg string `description:"小程序封面图"`
  9. Path string `description:"小程序路径"`
  10. IsShowSustainable bool `description:"是否展示限免标签"`
  11. }
  12. type CollectionBannerListResp struct {
  13. ListA []*CollectionBannerResp
  14. ListB *CollectionBannerResp
  15. }
  16. type CollectionDetailResp struct {
  17. HttpUrl string `description:"跳转地址"`
  18. }
  19. type ApplyCollectionReq struct {
  20. Content string `description:"内容"`
  21. }
  22. // 精选看板申请表
  23. type CygxApplyCollection struct {
  24. ApplyCollectionId int `orm:"column(apply_collection_id);pk" description:"主键ID"`
  25. UserId int `description:"用户ID"` // 用户ID
  26. Mobile string `description:"手机号"` // 手机号
  27. Email string `description:"邮箱"` // 邮箱
  28. CompanyId int `description:"公司ID"` // 公司ID
  29. CompanyName string `description:"公司名称"` // 公司名称
  30. RealName string `description:"用户实际名称"` // 用户实际名称
  31. SellerName string `description:"所属销售"` // 所属销售
  32. CreateTime time.Time `description:"创建时间"` // 创建时间
  33. ModifyTime time.Time `description:"修改时间"` // 修改时间
  34. RegisterPlatform int `description:"来源 1小程序,2:网页"` // 来源 1小程序,2:网页
  35. Content string `description:" 内容"` // 内容
  36. }
  37. // 精选看板申请表
  38. type CygxApplyCollectionResp struct {
  39. ApplyCollectionId int `gorm:"column:"`
  40. UserId int `gorm:"column:"` // 用户ID
  41. Mobile string `gorm:"column:"` // 手机号
  42. Email string `gorm:"column:"` // 邮箱
  43. CompanyId int `gorm:"column:;default:0"` // 公司ID
  44. CompanyName string `gorm:"column:"` // 公司名称
  45. RealName string `gorm:"column:"` // 用户实际名称
  46. SellerName string `gorm:"column:"` // 所属销售
  47. CreateTime time.Time `gorm:"column:"` // 创建时间
  48. ModifyTime time.Time `gorm:"column:"` // 修改时间
  49. RegisterPlatform int `gorm:"column:;default:1;NOT NULL"` // 来源 1小程序,2:网页
  50. Content string `gorm:"column:;NOT NULL"` // 内容
  51. }
  52. // 添加信息
  53. func AddCygxApplyCollection(item *CygxApplyCollection) (lastId int64, err error) {
  54. o := orm.NewOrm()
  55. lastId, err = o.Insert(item)
  56. return
  57. }
  58. // 通过ID获取详情
  59. func GetCygxApplyCollectionDetail(applyCollectionId int) (item *CygxApplyCollectionResp, err error) {
  60. o := orm.NewOrm()
  61. sql := `SELECT * FROM cygx_apply_collection WHERE apply_collection_id=? `
  62. err = o.Raw(sql, applyCollectionId).QueryRow(&item)
  63. return
  64. }
  65. type CygxApplyCollectionDetailResp struct {
  66. Detail *CygxApplyCollectionResp
  67. }