123456789101112
  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(100)"`
  8. CreateDate time.Time `xorm:"DATETIME"`
  9. Status int `xorm:"SMALLINT(6)"`
  10. }