sys_wechat_conf.go 638B

123456789101112131415161718
  1. package model
  2. import "time"
  3. type SysWechatConf struct {
  4. ConfId string `xorm:"not null pk VARCHAR(64)"`
  5. Type string `xorm:"comment('wechat 微信公众号
  6. mini 小程序') VARCHAR(20)"`
  7. Appid string `xorm:"VARCHAR(50)"`
  8. AuthorizationCode string `xorm:"VARCHAR(100)"`
  9. RefreshToken string `xorm:"VARCHAR(100)"`
  10. Token string `xorm:"VARCHAR(100)"`
  11. Remark string `xorm:"TEXT"`
  12. Status int `xorm:"SMALLINT(6)"`
  13. AuthorizationInfo string `xorm:"TEXT"`
  14. BindDate time.Time `xorm:"DATETIME"`
  15. ExpiresDate time.Time `xorm:"DATETIME"`
  16. }