|
|
@@ -14,18 +14,23 @@ import java.io.Serializable;
|
|
|
@NoArgsConstructor
|
|
|
public class QRCodeTransactionModel extends HxzSuperModel implements Serializable {
|
|
|
|
|
|
- @JsonProperty("Mode:交易模式(0:扣费 1:充值3:信息查询)")
|
|
|
+ @JsonProperty("Mode")
|
|
|
+ @Schema(description = "Mode:交易模式(0:扣费 1:充值3:信息查询)")
|
|
|
private String Mode;
|
|
|
|
|
|
- @JsonProperty("PayType: 扣费类型(0:手动 1:菜单 2:定值 3:取餐 4:计时)")
|
|
|
+ @JsonProperty("PayType")
|
|
|
+ @Schema(description = "PayType: 扣费类型(0:手动 1:菜单 2:定值 3:取餐 4:计时)")
|
|
|
private Integer PayType;
|
|
|
|
|
|
- @JsonProperty("Amount: 消费金额(Mode为3时,此字段传入值可能为0)")
|
|
|
+ @JsonProperty("Amount")
|
|
|
+ @Schema(description = "Amount: 消费金额(Mode为3时,此字段传入值可能为0)")
|
|
|
private String Amount;
|
|
|
|
|
|
- @JsonProperty("扫描到的二维码字符串(最大长度为200)")
|
|
|
+ @JsonProperty("QR")
|
|
|
+ @Schema(description = "扫描到的二维码字符串(最大长度为200)")
|
|
|
private String QR;
|
|
|
|
|
|
+ @JsonProperty("paymentType")
|
|
|
@Schema(description = "支付方式")
|
|
|
PaymentType paymentType = PaymentType.WxQrCode;
|
|
|
|