|
@@ -204,6 +204,60 @@ public class DeviceAlgorithmChargingHistoryDto {
|
|
|
private LocalDateTime createTime;
|
|
|
|
|
|
|
|
|
+ }
|
|
|
+
|
|
|
+ @Data
|
|
|
+ @Accessors(chain = true)
|
|
|
+ public static class SpendPageExcelVo {
|
|
|
+
|
|
|
+
|
|
|
+ @ExcelProperty("商户名称")
|
|
|
+ @ApiModelProperty(value = "商户名称")
|
|
|
+ private String mercName;
|
|
|
+
|
|
|
+ @ExcelProperty("缴费单号")
|
|
|
+ @ApiModelProperty(value = "缴费单号")
|
|
|
+ private String orderId;
|
|
|
+ @ExcelProperty("设备编号")
|
|
|
+ @ApiModelProperty(value = "设备id")
|
|
|
+ private Long deviceId;
|
|
|
+
|
|
|
+ @ExcelProperty(value = "算法类型", converter = DictConvert.class)
|
|
|
+ @DictFormat(DictConsts.ALGORITHM_TYPES)
|
|
|
+ @ApiModelProperty(value = "算法类型")
|
|
|
+ private Long algorithmId;
|
|
|
+
|
|
|
+// @ApiModelProperty(value = "名称")
|
|
|
+// private String name;
|
|
|
+
|
|
|
+ @ExcelProperty(value = "实缴金额", converter = CustomFenToYuanConverter.class)
|
|
|
+ @NumberFormat("#0.00")
|
|
|
+ @ApiModelProperty(value = "实缴金额")
|
|
|
+ private Integer chargingMoney;
|
|
|
+
|
|
|
+
|
|
|
+ @ExcelProperty("缴费数量(笔)")
|
|
|
+ @ApiModelProperty(value = "缴费数量")
|
|
|
+ private Integer chargingSize;
|
|
|
+
|
|
|
+
|
|
|
+ @ExcelProperty(value = "缴费方式", converter = DictConvert.class)
|
|
|
+ @DictFormat(DictConsts.ORDER_MERC_MANAGE_PAY_TYPE)
|
|
|
+ @ApiModelProperty(value = "缴费方式")
|
|
|
+ private Integer chargingType;
|
|
|
+
|
|
|
+ @ExcelProperty(value = "支付状态", converter = DictConvert.class)
|
|
|
+ @DictFormat(DictConsts.ORDER_MERC_MANAGE_STATUS)
|
|
|
+ @ApiModelProperty(value = "支付状态")
|
|
|
+ private Integer status;
|
|
|
+
|
|
|
+
|
|
|
+ @ExcelProperty("支付时间")
|
|
|
+ @ApiModelProperty(value = "缴费时间")
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ private LocalDateTime createTime;
|
|
|
+
|
|
|
+
|
|
|
}
|
|
|
|
|
|
@Data
|