ta_wechat_menu.go 311B

12345678910111213
  1. package model
  2. import (
  3. "time"
  4. )
  5. type TaWechatMenu struct {
  6. WechatConfigId string `xorm:"not null pk VARCHAR(64)"`
  7. WechatConfigJson string `xorm:"TEXT"`
  8. Status int `xorm:"SMALLINT(6)"`
  9. OrgId string `xorm:"VARCHAR(64)"`
  10. CreateDate time.Time `xorm:"DATETIME"`
  11. }