|
|
@@ -71,6 +71,13 @@ enum PayOrderType {
|
|
|
PayOrderTypeTg = 4; // tg 购买
|
|
|
}
|
|
|
|
|
|
+// 1 跳转支付地址 2 显示QrCode 3 其他
|
|
|
+enum PayShowType {
|
|
|
+ PayShowTypeUnknown = 0;
|
|
|
+ PayShowTypeUrl = 1;
|
|
|
+ PayShowTypeQrCode = 2;
|
|
|
+}
|
|
|
+
|
|
|
message Empty {}
|
|
|
|
|
|
message Int64SelectController {
|
|
|
@@ -335,6 +342,7 @@ message UserPayOrderVo { //用户支付订单表
|
|
|
int64 createTime = 30; //订单创建时间
|
|
|
int64 updateTime = 31; //订单修改时间
|
|
|
BoolInt isCurrentDevice = 32;
|
|
|
+ PayShowType showType = 33; //1 跳转支付地址 2 显示QrCode 3 其他
|
|
|
}
|
|
|
|
|
|
message UserAuthLogVo { //用户授权日志表
|