Browse Source
# Conflicts: # esua-epdc/epdc-module/epdc-events/epdc-events-server/src/main/java/com/elink/esua/epdc/modules/item/controller/ItemController.java # esua-epdc/epdc-module/epdc-events/epdc-events-server/src/main/java/com/elink/esua/epdc/modules/item/service/impl/ItemServiceImpl.java # esua-epdc/epdc-module/epdc-events/epdc-events-server/src/main/java/com/elink/esua/epdc/modules/item/service/impl/PushToCityGridServiceImpl.java # esua-epdc/epdc-module/epdc-events/epdc-events-server/src/main/resources/mapper/item/ItemDao.xmlfeature/dangjian
26 changed files with 755 additions and 138 deletions
@ -0,0 +1,31 @@ |
|||
package com.elink.esua.epdc.dto.item.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import javax.validation.constraints.NotBlank; |
|||
import javax.validation.constraints.Size; |
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* 吹哨给市平台 |
|||
* |
|||
* @author zhy |
|||
* @date 2022/10/24 14:11 |
|||
*/ |
|||
@Data |
|||
public class ItemWhistle2GovFormDTO implements Serializable { |
|||
private static final long serialVersionUID = -5395350316792859552L; |
|||
|
|||
/** |
|||
* 项目ID |
|||
*/ |
|||
@NotBlank(message = "项目ID不能为空") |
|||
private String id; |
|||
|
|||
/** |
|||
* 处理意见(内部) |
|||
*/ |
|||
@Size(min = 1, max = 500, message = "处理意见在500字以内") |
|||
private String reason; |
|||
|
|||
} |
|||
@ -0,0 +1,38 @@ |
|||
package com.elink.esua.epdc.modules.screen.excel; |
|||
|
|||
import cn.afterturn.easypoi.excel.annotation.Excel; |
|||
import com.alibaba.excel.annotation.ExcelProperty; |
|||
import com.alibaba.excel.annotation.write.style.ColumnWidth; |
|||
import com.alibaba.excel.annotation.write.style.HeadStyle; |
|||
import com.alibaba.excel.enums.poi.FillPatternTypeEnum; |
|||
import lombok.Data; |
|||
|
|||
/** |
|||
* @Description |
|||
* @Author zhaoqifeng |
|||
* @Date 2022/4/13 10:46 |
|||
*/ |
|||
@Data |
|||
public class ScreenDataExportExcel { |
|||
@ColumnWidth(20) |
|||
@ExcelProperty(value = "部门",order = 1) |
|||
private String deptName; |
|||
@ColumnWidth(20) |
|||
@ExcelProperty(value = "问题总上报数",order = 2) |
|||
private Integer eventCount; |
|||
@ColumnWidth(20) |
|||
@ExcelProperty(value = {"分类", "发展诉求"},order = 3) |
|||
private Integer developCount; |
|||
@ColumnWidth(20) |
|||
@ExcelProperty(value = {"分类", "执法诉求"},order = 4) |
|||
private Integer lawCount; |
|||
@ColumnWidth(20) |
|||
@ExcelProperty(value = {"分类", "民生诉求"},order = 5) |
|||
private Integer livelihoodCount; |
|||
@ColumnWidth(20) |
|||
@ExcelProperty(value = "响应数",order = 6) |
|||
private Integer responseCount; |
|||
@ColumnWidth(20) |
|||
@ExcelProperty(value = "办结数",order = 7) |
|||
private Integer closedCount; |
|||
} |
|||
Loading…
Reference in new issue