|
@@ -16,11 +16,11 @@ import java.util.List;
|
|
|
public class RefundInfoRespVO {
|
|
|
|
|
|
@Schema(description = "主键")
|
|
|
- @ExcelProperty("主键")
|
|
|
+ // @ExcelProperty("主键")
|
|
|
private Long id;
|
|
|
|
|
|
@Schema(description = "回款编号:年月日+uuid")
|
|
|
- @ExcelProperty("回款编号:年月日+uuid")
|
|
|
+ // @ExcelProperty("回款编号:年月日+uuid")
|
|
|
private String refundInfoUuid;
|
|
|
|
|
|
@Schema(description = "回款标题")
|
|
@@ -28,7 +28,7 @@ public class RefundInfoRespVO {
|
|
|
private String refundTitle;
|
|
|
|
|
|
@Schema(description = "客户id")
|
|
|
- @ExcelProperty("客户id")
|
|
|
+ // @ExcelProperty("客户id")
|
|
|
private Long customerId;
|
|
|
|
|
|
@Schema(description = "客户名称")
|
|
@@ -36,11 +36,11 @@ public class RefundInfoRespVO {
|
|
|
private String customerName;
|
|
|
|
|
|
@Schema(description = "客户编码")
|
|
|
- @ExcelProperty("客户编码")
|
|
|
+ // @ExcelProperty("客户编码")
|
|
|
private String customerCode;
|
|
|
|
|
|
@Schema(description = "合同id")
|
|
|
- @ExcelProperty("合同id")
|
|
|
+ // @ExcelProperty("合同id")
|
|
|
private Long contractId;
|
|
|
|
|
|
@Schema(description = "合同名称")
|
|
@@ -48,7 +48,7 @@ public class RefundInfoRespVO {
|
|
|
private String contractName;
|
|
|
|
|
|
@Schema(description = "合同编码")
|
|
|
- @ExcelProperty("合同编码")
|
|
|
+ // @ExcelProperty("合同编码")
|
|
|
private String contractCode;
|
|
|
|
|
|
@Schema(description = "回款日期")
|
|
@@ -60,31 +60,31 @@ public class RefundInfoRespVO {
|
|
|
private BigDecimal refundMoney;
|
|
|
|
|
|
@Schema(description = "回款周期,单位:天")
|
|
|
- @ExcelProperty("回款周期,单位:天")
|
|
|
+ // @ExcelProperty("回款周期,单位:天")
|
|
|
private Integer refundCycle;
|
|
|
|
|
|
@Schema(description = "逾期天数")
|
|
|
- @ExcelProperty("逾期天数")
|
|
|
+ // @ExcelProperty("逾期天数")
|
|
|
private Integer overdueDay;
|
|
|
|
|
|
@Schema(description = "单据状态:0:已完成,1:作废")
|
|
|
- @ExcelProperty("单据状态:0:已完成,1:作废")
|
|
|
+ // @ExcelProperty("单据状态:0:已完成,1:作废")
|
|
|
private String status;
|
|
|
|
|
|
@Schema(description = "单据状态描述:0:已完成,1:作废")
|
|
|
- @ExcelProperty("单据状态描述:0:已完成,1:作废")
|
|
|
+ // @ExcelProperty("单据状态描述:0:已完成,1:作废")
|
|
|
private String statusDesc;
|
|
|
|
|
|
@Schema(description = "备注")
|
|
|
- @ExcelProperty("备注")
|
|
|
+ // @ExcelProperty("备注")
|
|
|
private String remarks;
|
|
|
|
|
|
@Schema(description = "创建人id")
|
|
|
- @ExcelProperty("创建人id")
|
|
|
+ // @ExcelProperty("创建人id")
|
|
|
private String creator;
|
|
|
|
|
|
@Schema(description = "创建人名称")
|
|
|
- @ExcelProperty("创建人名称")
|
|
|
+ @ExcelProperty("创建人")
|
|
|
private String creatorName;
|
|
|
|
|
|
@Schema(description = "创建时间", requiredMode = Schema.RequiredMode.REQUIRED)
|