1234567891011121314
  1. package model
  2. type TdCmsImageLocation struct {
  3. LocationId string `xorm:"not null pk VARCHAR(64)"`
  4. LocationName string `xorm:"VARCHAR(32)"`
  5. LocationCode string `xorm:"VARCHAR(32)"`
  6. OrgId string `xorm:"VARCHAR(64)"`
  7. Title string `xorm:"VARCHAR(50)"`
  8. Consult string `xorm:"VARCHAR(50)"`
  9. IsSys int `xorm:"TINYINT(1)"`
  10. TypeImg string `xorm:"TEXT"`
  11. Status int `xorm:"SMALLINT(6)"`
  12. OrderNo int `xorm:"SMALLINT(6)"`
  13. }