ta_cms_case.go 612B

12345678910111213141516171819
  1. package model
  2. import (
  3. "time"
  4. )
  5. type TaCmsCase struct {
  6. CmsCaseId string `xorm:"not null pk VARCHAR(64)"`
  7. CaseId string `xorm:"VARCHAR(64)"`
  8. Name string `xorm:"VARCHAR(128)"`
  9. Title string `xorm:"VARCHAR(128)"`
  10. DetailContent string `xorm:"TEXT"`
  11. IsAllCourse int `xorm:"comment('是否显示全部课程 0否1是') SMALLINT(6)"`
  12. Status int `xorm:"SMALLINT(6)"`
  13. CreateUser string `xorm:"VARCHAR(64)"`
  14. Sort int `xorm:"INT(11)"`
  15. CreateDate time.Time `xorm:"DATETIME"`
  16. OrgId string `xorm:"VARCHAR(64)"`
  17. }