1 Star 0 Fork 0

jackly-chao / joy-admin-server

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
paymentAccount.go 992 Bytes
一键复制 编辑 原始数据 按行查看 历史
package platform
import (
"gitee.com/jackly-chao/joy-admin-server/src/global/request"
"gitee.com/jackly-chao/joy-admin-server/src/model/common"
)
// 支付账户
type PaymentAccount struct {
common.Model
common.ExtraModel
PaymentAccountNum string `gorm:"column:payment_account_num;comment:支付账户;" json:"paymentAccountNum" form:"paymentAccountNum"` // 支付账户
AppId string `gorm:"column:app_id;comment:app_id;" json:"appId" form:"appId"` // app_id
PrivateKey string `gorm:"column:private_key;comment:应用私钥;" json:"privateKey" form:"privateKey"` // 应用私钥
PublicKey string `gorm:"column:public_key;comment:支付宝公钥;" json:"publicKey" form:"publicKey"` // 支付宝公钥
}
func (PaymentAccount) TableName() string {
return "payment_account"
}
// 支付账户申请
type PaymentAccountRequest struct {
request.PageInfo
PaymentAccount
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/jackly-chao/joy-admin-server.git
git@gitee.com:jackly-chao/joy-admin-server.git
jackly-chao
joy-admin-server
joy-admin-server
01c5a3fec7ab

搜索帮助

344bd9b3 5694891 D2dac590 5694891