7 changed files with 40 additions and 131 deletions
@ -1,107 +0,0 @@ |
|||
/** |
|||
* 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.excel; |
|||
|
|||
import cn.afterturn.easypoi.excel.annotation.Excel; |
|||
import lombok.Data; |
|||
|
|||
import java.util.Date; |
|||
|
|||
/** |
|||
* 绩效考核手动打分记录 |
|||
* |
|||
* @author qu qu@elink-cn.com |
|||
* @since v1.0.0 2019-12-06 |
|||
*/ |
|||
@Data |
|||
public class KpiManualScoreTempExcel { |
|||
|
|||
@Excel(name = "主键") |
|||
private String id; |
|||
|
|||
@Excel(name = "epdc_kpi_rule表主键") |
|||
private String ruleId; |
|||
|
|||
@Excel(name = "被打分的部门id") |
|||
private String deptId; |
|||
|
|||
@Excel(name = "得分") |
|||
private Integer score; |
|||
|
|||
@Excel(name = "考核起止日期yyyy-MM-dd") |
|||
private Date scoreStartDate; |
|||
|
|||
@Excel(name = "考核终止日期yyyy-MM-dd") |
|||
private Date scoreEndDate; |
|||
|
|||
@Excel(name = "所有父级部门id") |
|||
private String parentDeptIds; |
|||
|
|||
@Excel(name = "所有父级部门名称") |
|||
private String parentDeptNames; |
|||
|
|||
@Excel(name = "完整部门名称") |
|||
private String allDeptNames; |
|||
|
|||
@Excel(name = "完整部门id") |
|||
private String allDeptIds; |
|||
|
|||
@Excel(name = "导出用户id") |
|||
private String userId; |
|||
|
|||
@Excel(name = "乐观锁") |
|||
private Integer revision; |
|||
|
|||
@Excel(name = "创建人") |
|||
private String createdBy; |
|||
|
|||
@Excel(name = "创建时间") |
|||
private Date createdTime; |
|||
|
|||
@Excel(name = "更新人") |
|||
private String updatedBy; |
|||
|
|||
@Excel(name = "更新时间") |
|||
private Date updatedTime; |
|||
|
|||
@Excel(name = "删除标记") |
|||
private String delFlag; |
|||
|
|||
@Excel(name = "街道") |
|||
private String street; |
|||
|
|||
@Excel(name = "社区") |
|||
private String community; |
|||
|
|||
@Excel(name = "网格") |
|||
private String grid; |
|||
|
|||
@Excel(name = "规则名称") |
|||
private String ruleName; |
|||
|
|||
@Excel(name = "考核周期") |
|||
private String kpiCycleName; |
|||
|
|||
@Excel(name = "考核起止日期") |
|||
private String scoreStartTime; |
|||
|
|||
@Excel(name = "考核终止日期") |
|||
private Date scoreEndTime; |
|||
|
|||
|
|||
} |
Loading…
Reference in new issue