123456789101112131415
  1. package model
  2. import (
  3. "time"
  4. )
  5. type SysRole struct {
  6. RoleId string `xorm:"not null pk VARCHAR(64)"`
  7. RoleName string `xorm:"not null VARCHAR(100)"`
  8. CaseId string `xorm:"not null VARCHAR(64)"`
  9. OrgId string `xorm:"not null VARCHAR(64)"`
  10. Remark string `xorm:"TEXT"`
  11. Status int `xorm:"SMALLINT(6)"`
  12. CreateDate time.Time `xorm:"DATETIME"`
  13. }