浏览代码

update

master
shenjiachi 5 天前
父节点
当前提交
a528fb63b5
共有 2 个文件被更改,包括 2 次插入0 次删除
  1. +1
    -0
      src/model/alipay_user_info.go
  2. +1
    -0
      src/model/wx_user_info.go

+ 1
- 0
src/model/alipay_user_info.go 查看文件

@@ -6,6 +6,7 @@ type AlipayUserInfo struct {
UserId string `json:"user_id" xorm:"not null default '' comment('支付宝用户id') CHAR(100)"`
OpenId string `json:"open_id" xorm:"not null default '' comment('支付宝用户open_id') CHAR(100)"`
AppId string `json:"app_id" xorm:"not null default '' comment('支付宝商户应用appid') CHAR(50)"`
UserName string `json:"user_name" xorm:"not null comment('支付宝昵称') CHAR(100)"`
Ext string `json:"ext" xorm:"not null comment('拓展字段') TEXT"`
CreateAt string `json:"create_at" xorm:"not null default 'CURRENT_TIMESTAMP' DATETIME"`
UpdateAt string `json:"update_at" xorm:"not null default 'CURRENT_TIMESTAMP' DATETIME"`


+ 1
- 0
src/model/wx_user_info.go 查看文件

@@ -6,6 +6,7 @@ type WxUserInfo struct {
UserId string `json:"user_id" xorm:"not null default '' comment('微信用户id') CHAR(100)"`
OpenId string `json:"open_id" xorm:"not null default '' comment('微信用户open_id') CHAR(100)"`
AppId string `json:"app_id" xorm:"not null default '' comment('微信应用appid') CHAR(50)"`
UserName string `json:"user_name" xorm:"not null comment('微信用户名称') CHAR(100)"`
Ext string `json:"ext" xorm:"not null comment('拓展字段') TEXT"`
CreateAt string `json:"create_at" xorm:"not null default 'CURRENT_TIMESTAMP' DATETIME"`
UpdateAt string `json:"update_at" xorm:"not null default 'CURRENT_TIMESTAMP' DATETIME"`


正在加载...
取消
保存