user_admin_share.go 1022 B

12345678910111213141516171819202122
  1. package models
  2. import "time"
  3. type CygxUserAdminShare struct {
  4. UserAdminShareID int `orm:"column(user_admin_share_id);pk";comment:"主键ID"`
  5. Action string `comment:"动作内容"`
  6. UserId int `comment:"用户ID"`
  7. Mobile string `comment:"手机号"`
  8. Email string `comment:"邮箱"`
  9. CompanyId int `comment:"公司ID"`
  10. CompanyName string `comment:"公司名称"`
  11. RealName string `comment:"用户实际名称"`
  12. SellerName string `comment:"所属销售名称"`
  13. SellerId int `comment:"所属销售 ID"`
  14. Source string `comment:"来源(article, activity, login)"`
  15. SourceId int `comment:"来源 ID"`
  16. SourceTitle string `comment:"来源名称,活动或者报告标题"`
  17. RegisterPlatform int `comment:"注册平台(1: 小程序, 2: 网页)"`
  18. CreateTime time.Time `comment:"创建时间"`
  19. ModifyTime time.Time `comment:"修改时间"`
  20. }