完善订单相关表

This commit is contained in:
刘祥超
2022-09-29 10:22:17 +08:00
parent 98765b6e2a
commit 177afafe12
2 changed files with 3 additions and 1 deletions

View File

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

File diff suppressed because one or more lines are too long