sys_case_user.go 475B

123456789101112131415161718
  1. package model
  2. import (
  3. "time"
  4. )
  5. type SysCaseUser struct {
  6. CaseUserId string `xorm:"not null pk VARCHAR(64)"`
  7. OrgId string `xorm:"VARCHAR(64)"`
  8. CaseId string `xorm:"VARCHAR(64)"`
  9. UserName string `xorm:"VARCHAR(50)"`
  10. Tel string `xorm:"VARCHAR(50)"`
  11. UserType string `xorm:"comment('案场管理员
  12. 咖啡师
  13. 消息收发员') VARCHAR(20)"`
  14. Status int `xorm:"SMALLINT(6)"`
  15. CreateDate time.Time `xorm:"DATETIME"`
  16. }