| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- package com.github.microservice.models.hxz;
- import io.swagger.v3.oas.annotations.media.Schema;
- import lombok.AllArgsConstructor;
- import lombok.Data;
- import lombok.NoArgsConstructor;
- /**
- * @author TRX
- * @date 2024/6/28
- */
- @Data
- @AllArgsConstructor
- @NoArgsConstructor
- public class OrderQueryResult {
- @Schema(description = "1:成功; 0:失败")
- private Integer Status = 0;
- @Schema(description = "错误消息(Status为0时屏幕显示此内容,最多不超过8个汉字)")
- private String Msg;
- @Schema(description = "人员姓名")
- private String Name;
- @Schema(description = "10进制卡序列号(实体卡号或虚拟卡号)")
- private String CardNo;
- @Schema(description = "现金余额(允许两位小数)")
- private String Money;
- @Schema(description = "补贴余额(允许两位小数)")
- private String Subsidy;
- @Schema(description = "剩余次数")
- private String Times;
- @Schema(description = "赠送余额(允许两位小数)")
- private String Integral;
- @Schema(description = "入场时间(固定值””)")
- private String InTime;
- @Schema(description = "出场时间(固定值””)")
- private String OutTime;
- @Schema(description = "累计使用时间:天时分秒")
- private String CumulativeTime;
- @Schema(description = "实际扣费金额(信息查询模式下返回”0”)")
- private String Amount;
- @Schema(description = "语音段(用于安卓系统设备)")
- private String VoiceID;
- @Schema(description = "自定义显示文本(Status为1时传入,屏幕显示此值,内容内使用\\r\\n换行,最多支持4行,每行不超过8个汉字)")
- private String Text = "支付失败";
- }
|