- package model
-
- import (
- "time"
- )
-
- type SysOrg struct {
- OrgId string `xorm:"not null pk VARCHAR(64)"`
- OrgName string `xorm:"VARCHAR(32)"`
- WechatId string `xorm:"VARCHAR(64)"`
- WechatName string `xorm:"VARCHAR(32)"`
- AuthStatus string `xorm:"VARCHAR(32)"`
- Status int `xorm:"SMALLINT(6)"`
- CreateDate time.Time `xorm:"DATETIME"`
- }
|