完善订单相关表

This commit is contained in:
GoEdgeLab
2022-09-29 10:22:17 +08:00
parent de100b1bf9
commit 0abc99e9f2
2 changed files with 3 additions and 1 deletions

View File

@@ -14,6 +14,7 @@ type OrderMethod struct {
Secret string `field:"secret"` // 密钥 Secret string `field:"secret"` // 密钥
Params dbs.JSON `field:"params"` // 参数 Params dbs.JSON `field:"params"` // 参数
ClientType string `field:"clientType"` // 客户端类型 ClientType string `field:"clientType"` // 客户端类型
QrcodeTitle string `field:"qrcodeTitle"` // 二维码标题
Order uint32 `field:"order"` // 排序 Order uint32 `field:"order"` // 排序
State uint8 `field:"state"` // 状态 State uint8 `field:"state"` // 状态
} }
@@ -29,6 +30,7 @@ type OrderMethodOperator struct {
Secret any // 密钥 Secret any // 密钥
Params any // 参数 Params any // 参数
ClientType any // 客户端类型 ClientType any // 客户端类型
QrcodeTitle any // 二维码标题
Order any // 排序 Order any // 排序
State any // 状态 State any // 状态
} }

File diff suppressed because one or more lines are too long