8 changed files with 187 additions and 0 deletions
@ -0,0 +1,19 @@ |
|||
package com.elink.esua.epdc.dto.screen.result; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @Description 街道各种率计算 |
|||
* @Author zhaoqifeng |
|||
* @Date 2022/10/11 10:21 |
|||
*/ |
|||
@Data |
|||
public class EventStreetRatioResultDTO implements Serializable { |
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
private String streetName; |
|||
|
|||
private String ratio; |
|||
} |
@ -0,0 +1,21 @@ |
|||
package com.elink.esua.epdc.modules.screen.excel; |
|||
|
|||
import com.alibaba.excel.annotation.ExcelProperty; |
|||
import com.alibaba.excel.annotation.write.style.ColumnWidth; |
|||
import lombok.Data; |
|||
|
|||
/** |
|||
* @Description 一天7小时五天为维度的按期回复率 |
|||
* @Author lc |
|||
* @Date 2023/4/13 10:46 |
|||
*/ |
|||
@Data |
|||
public class ScreenReplyExportExcel { |
|||
@ColumnWidth(20) |
|||
@ExcelProperty(value = "街道", order = 1) |
|||
private String streetName; |
|||
@ColumnWidth(20) |
|||
@ExcelProperty(value = "一天7小时五天为维度的按期回复率", order = 2) |
|||
private String ratio; |
|||
|
|||
} |
@ -0,0 +1,21 @@ |
|||
package com.elink.esua.epdc.modules.screen.excel; |
|||
|
|||
import com.alibaba.excel.annotation.ExcelProperty; |
|||
import com.alibaba.excel.annotation.write.style.ColumnWidth; |
|||
import lombok.Data; |
|||
|
|||
/** |
|||
* @Description 6小时维度响应率 |
|||
* @Author lc |
|||
* @Date 2023/4/13 10:46 |
|||
*/ |
|||
@Data |
|||
public class ScreenSixResponseExportExcel { |
|||
@ColumnWidth(20) |
|||
@ExcelProperty(value = "街道", order = 1) |
|||
private String streetName; |
|||
@ColumnWidth(20) |
|||
@ExcelProperty(value = "6小时维度响应率", order = 2) |
|||
private String ratio; |
|||
|
|||
} |
Loading…
Reference in new issue