4 changed files with 104 additions and 8 deletions
@ -0,0 +1,76 @@ |
|||
/** |
|||
* Copyright 2018 人人开源 https://www.renren.io
|
|||
* <p> |
|||
* This program is free software: you can redistribute it and/or modify |
|||
* it under the terms of the GNU General Public License as published by |
|||
* the Free Software Foundation, either version 3 of the License, or |
|||
* (at your option) any later version. |
|||
* <p> |
|||
* This program is distributed in the hope that it will be useful, |
|||
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|||
* GNU General Public License for more details. |
|||
* <p> |
|||
* You should have received a copy of the GNU General Public License |
|||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|||
*/ |
|||
|
|||
package com.elink.esua.epdc.modules.item.excel; |
|||
|
|||
import cn.afterturn.easypoi.excel.annotation.Excel; |
|||
import lombok.Data; |
|||
|
|||
|
|||
/** |
|||
* @param |
|||
* @author qushutong |
|||
* @description: 申诉 |
|||
* @date 2024/12/11 14:59 |
|||
* @return |
|||
* @Version1.0 |
|||
**/ |
|||
@Data |
|||
public class ApplealExcel { |
|||
|
|||
@Excel(name = "编码") |
|||
private String serialNum; |
|||
|
|||
@Excel(name = "所属组织") |
|||
private String allDeptNames; |
|||
|
|||
@Excel(name = "诉求内容") |
|||
private String itemContent; |
|||
|
|||
@Excel(name = "诉求来源", replace = {"居民上报_1", "新新向党_2", "12345热线_3"}) |
|||
private String appealSource; |
|||
|
|||
@Excel(name = "评价内容") |
|||
private String evaluationContent; |
|||
|
|||
@Excel(name = "申诉原因") |
|||
private String ssyy; |
|||
|
|||
@Excel(name = "区驳回原因") |
|||
private String districtReject; |
|||
|
|||
@Excel(name = "上报时间") |
|||
private String createdTime; |
|||
|
|||
@Excel(name = "联系电话") |
|||
private Long handlePeopleMobile; |
|||
|
|||
@Excel(name = "审核结果", replace = {"审核通过_01", "不通过_02"}) |
|||
private String shjg; |
|||
|
|||
@Excel(name = "处理时间") |
|||
private Long clsj; |
|||
|
|||
@Excel(name = "审核意见") |
|||
private String shyj; |
|||
|
|||
@Excel(name = "评价",replace = {"不满意_0", "基本满意_1","非常满意_2"}) |
|||
private Long evaluationScore; |
|||
|
|||
|
|||
|
|||
} |
Loading…
Reference in new issue