- package model
-
- import (
- "time"
- )
-
- type TaWechatMenu struct {
- WechatConfigId string `xorm:"not null pk VARCHAR(128)"`
- WechatConfigJson string `xorm:"TEXT"`
- Status int `xorm:"SMALLINT(6)"`
- OrgId string `xorm:"VARCHAR(64)"`
- CreateDate time.Time `xorm:"DATETIME"`
- }
|