面包店
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

22 lines
1.5 KiB

  1. package model
  2. type PrivilegeCardBrand struct {
  3. Id int `json:"id" xorm:"not null pk autoincr INT(11)"`
  4. ZhimengId int `json:"zhimeng_id" xorm:"not null default 0 comment('智盟ID') INT(11)"`
  5. ThirdId int `json:"third_id" xorm:"not null default 0 comment('三方平台ID') INT(11)"`
  6. Name string `json:"name" xorm:"not null default '' comment('品牌名称') VARCHAR(255)"`
  7. SubName string `json:"sub_name" xorm:"not null default '' comment('品牌副标题') VARCHAR(255)"`
  8. Logo string `json:"logo" xorm:"not null default '' comment('品牌logo') VARCHAR(255)"`
  9. CateId int `json:"cate_id" xorm:"not null default 0 comment('分类ID') INT(11)"`
  10. Type string `json:"type" xorm:"not null default '' comment('类型') VARCHAR(255)"`
  11. TypeId string `json:"type_id" xorm:"not null default '' comment('类型id') VARCHAR(255)"`
  12. AccountType string `json:"account_type" xorm:"comment('账号类型') VARCHAR(255)"`
  13. Remark string `json:"remark" xorm:"not null comment('温馨提示') TEXT"`
  14. IsShow int `json:"is_show" xorm:"not null default 1 comment('是否显示') TINYINT(1)"`
  15. Sort int `json:"sort" xorm:"default 0 comment('排序') INT(11)"`
  16. CreatedAt int `json:"created_at" xorm:"not null default 0 INT(11)"`
  17. UpdatedAt int `json:"updated_at" xorm:"not null default 0 INT(11)"`
  18. DeletedAt int `json:"deleted_at" xorm:"not null default 0 INT(11)"`
  19. Skip string `json:"skip" xorm:"comment('跳转信息') TEXT"`
  20. }