diff --git a/src/model/alipay_user_info.go b/src/model/alipay_user_info.go index c039eac..ad4126e 100644 --- a/src/model/alipay_user_info.go +++ b/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"` diff --git a/src/model/wx_user_info.go b/src/model/wx_user_info.go index ce597ad..8473e9f 100644 --- a/src/model/wx_user_info.go +++ b/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"`