cjl
2025-01-06 8490eb11583ffdc586436f165860de5cfc39f915
fix:sql查询时间调整
2 files modified
10 ■■■■■ changed files
screen-api/src/main/java/com/moral/api/controller/AllocationController.java 2 ●●●●● patch | view | raw | blame | history
screen-api/src/main/java/com/moral/api/pojo/vo/allocation/AllocationListExcelVo.java 8 ●●●●● patch | view | raw | blame | history
screen-api/src/main/java/com/moral/api/controller/AllocationController.java
@@ -243,6 +243,8 @@
        for(int i = 0;i<list.size();i++){
            AllocationExcelExt excelExt = list.get(i);
            AllocationListExcelVo item = AllocationListExcelVo.convert(excelExt);
            String stateStr = Objects.nonNull(excelExt.getState())?AllocationApproveEnum.getByValue(excelExt.getState()).getName():"未找到状态";
            item.setStateStr(stateStr);
            List<String> urls = new ArrayList<>();
            for(FileAddressVo z : excelExt.getFileBaseList()){
                urls.add(handleFileRealPath(z.getFileAddress()));
screen-api/src/main/java/com/moral/api/pojo/vo/allocation/AllocationListExcelVo.java
@@ -96,6 +96,14 @@
    @ExcelProperty(value = "整改后图片",converter = MyStringImageConverterUtil.class)
    private List<String> writeCellDataFileResult;
    @ApiModelProperty(value = "状态")
    @ExcelProperty(value = "流程状态")
    private String stateStr;
    @ApiModelProperty(value = "考核理由")
    @ExcelProperty(value = "审批理由")
    private String checkDescribe;
   /* @ApiModelProperty(value = "责任单位id")
    private Integer unitId;