青羊经侦大队-数据平台
qirong
2023-03-09 2e34633b3626c3dfbe678b416cfa9fe3e86b58e0
src/main/java/com/example/jz/modle/dto/CauseLoadDto.java
@@ -20,24 +20,28 @@
    @ExcelProperty(value = "案件名称",index = 1)
    private String name;
    @ApiModelProperty(dataType = "String", value = "案件名称")
    @ExcelProperty(value = "预估总金额",index = 2)
    private String totalMoney;
    //最早次案发时间
    @ApiModelProperty(dataType = "Date", value = "最早发案时间")
    @ExcelProperty(value = "最早发案时间",index = 2)
    @ExcelProperty(value = "最早发案时间",index = 3)
    private Date firstTime;
    //案件状态
    @ApiModelProperty(dataType = "String", value = "案件状态")
    @ExcelProperty(value = "案件状态",index = 3)
    @ExcelProperty(value = "案件状态",index = 4)
    private String status;
    //负责人
    @ApiModelProperty(dataType = "String", value = "负责人")
    @ExcelProperty(value = "负责人",index = 4)
    @ExcelProperty(value = "负责人",index = 5)
    private String userName;
    //案件描述
    @ApiModelProperty(dataType = "String", value = "案件描述")
    @ExcelProperty(value = "案件描述",index = 5)
    @ExcelProperty(value = "案件描述",index = 6)
    private String description;
}