sys_org.go 368B

123456789101112131415
  1. package model
  2. import (
  3. "time"
  4. )
  5. type SysOrg struct {
  6. OrgId string `xorm:"not null pk VARCHAR(64)"`
  7. OrgName string `xorm:"VARCHAR(32)"`
  8. WechatId string `xorm:"VARCHAR(64)"`
  9. WechatName string `xorm:"VARCHAR(32)"`
  10. AuthStatus string `xorm:"VARCHAR(32)"`
  11. Status int `xorm:"SMALLINT(6)"`
  12. CreateDate time.Time `xorm:"DATETIME"`
  13. }