sys_wechat_conf.go 436B

1234567891011121314
  1. package model
  2. type SysWechatConf struct {
  3. ConfId string `xorm:"not null pk VARCHAR(64)"`
  4. Type string `xorm:"comment('wechat 微信公众号
  5. mini 小程序') VARCHAR(20)"`
  6. Appid string `xorm:"VARCHAR(50)"`
  7. Secret string `xorm:"VARCHAR(50)"`
  8. Token string `xorm:"VARCHAR(50)"`
  9. Aeskey string `xorm:"VARCHAR(100)"`
  10. Wxid string `xorm:"VARCHAR(50)"`
  11. Remark string `xorm:"TEXT"`
  12. Status int `xorm:"SMALLINT(6)"`
  13. }