1 Star 1 Fork 0

颜言/gopay

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
model_business.go 1.36 KB
一键复制 编辑 原始数据 按行查看 历史
颜言 提交于 2024-09-12 18:02 +08:00 . 原版
package wechat
// 商圈积分授权查询 Rsp
type BusinessAuthPointsQueryRsp struct {
Code int `json:"-"`
SignInfo *SignInfo `json:"-"`
Response *BusinessAuthPointsQuery `json:"response,omitempty"`
Error string `json:"-"`
}
// 商圈会员待积分状态查询 Rsp
type BusinessPointsStatusQueryRsp struct {
Code int `json:"-"`
SignInfo *SignInfo `json:"-"`
Response *BusinessPointsStatusQuery `json:"response,omitempty"`
Error string `json:"-"`
}
// =========================================================分割=========================================================
type BusinessAuthPointsQuery struct {
Openid string `json:"openid"` // 顾客授权时使用的小程序上的openid
AuthorizeState string `json:"authorize_state"` // 顾客授权商圈积分结果:UNAUTHORIZED:未授权,AUTHORIZED:已授权,DEAUTHORIZED:已取消授权
AuthorizeTime string `json:"authorize_time,omitempty"` // 顾客成功授权商圈积分的时间
DeauthorizeTime string `json:"deauthorize_time,omitempty"` // 顾客关闭授权商圈积分的时间
}
type BusinessPointsStatusQuery struct {
PointsCommitStatus string `json:"points_commit_status"` // 顾客关闭授权商圈积分的时间
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/ujq/gopay.git
git@gitee.com:ujq/gopay.git
ujq
gopay
gopay
95cb943fb81a

搜索帮助