|
@@ -43,7 +43,7 @@ public class DeviceChargingHistoryDto {
|
|
|
@ApiModelProperty(value = "续费金额")
|
|
|
private Integer chargingMoney;
|
|
|
|
|
|
- @ApiModelProperty(value = "代理商费用")
|
|
|
+ @ApiModelProperty(value = "佣金")
|
|
|
private Integer agentMoney;
|
|
|
|
|
|
@ApiModelProperty(value = "续费数量")
|
|
@@ -99,8 +99,8 @@ public class DeviceChargingHistoryDto {
|
|
|
@NumberFormat("#0.00")
|
|
|
@ApiModelProperty(value = "续费金额")
|
|
|
private Integer chargingMoney;
|
|
|
- @ApiModelProperty(value = "代理商费用")
|
|
|
- @ExcelProperty(value = "代理商费用", converter = CustomFenToYuanConverter.class)
|
|
|
+ @ApiModelProperty(value = "佣金")
|
|
|
+ @ExcelProperty(value = "佣金", converter = CustomFenToYuanConverter.class)
|
|
|
@NumberFormat("#0.00")
|
|
|
private Integer agentMoney;
|
|
|
@ExcelProperty("续费数量(年)")
|
|
@@ -114,6 +114,16 @@ public class DeviceChargingHistoryDto {
|
|
|
@ApiModelProperty(value = "创建时间")
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
private LocalDateTime createTime;
|
|
|
+
|
|
|
+
|
|
|
+ @ExcelProperty("过期时间")
|
|
|
+ @ApiModelProperty(value = "过期时间")
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ private LocalDateTime timeout;
|
|
|
+ @ExcelProperty("状态说明")
|
|
|
+ @ApiModelProperty(value = "过期状态说明")
|
|
|
+ private String timeoutStatus;
|
|
|
+
|
|
|
}
|
|
|
|
|
|
|