zhenghaoyu
11 months ago
7 changed files with 172 additions and 1 deletions
@ -0,0 +1,52 @@
|
||||
package com.logpm.supervise.vo; |
||||
|
||||
import com.alibaba.excel.annotation.ExcelIgnore; |
||||
import com.alibaba.excel.annotation.ExcelProperty; |
||||
import lombok.Data; |
||||
|
||||
import java.io.Serializable; |
||||
import java.util.Date; |
||||
|
||||
@Data |
||||
public class ClassifyExportVO implements Serializable { |
||||
|
||||
@ExcelIgnore |
||||
private Long id; |
||||
|
||||
@ExcelIgnore |
||||
private Long createUser; |
||||
|
||||
@ExcelIgnore |
||||
private Long createDept; |
||||
|
||||
@ExcelProperty(value = "创建时间") |
||||
private Date createTime; |
||||
|
||||
@ExcelIgnore |
||||
private Long updateUser; |
||||
|
||||
@ExcelProperty(value = "指标名称") |
||||
private String name; |
||||
|
||||
@ExcelProperty(value = "指标描述") |
||||
private String description; |
||||
|
||||
@ExcelProperty(value = "指标备注") |
||||
private String remark; |
||||
|
||||
@ExcelIgnore |
||||
private Long pId; |
||||
|
||||
@ExcelProperty(value = "考核范围") |
||||
private String examineDeptName; |
||||
|
||||
@ExcelProperty(value = "指标分类") |
||||
private String parentClassifyName; |
||||
|
||||
@ExcelProperty(value = "考核归属部门") |
||||
private String createDeptName; |
||||
|
||||
@ExcelProperty(value = "考核分值") |
||||
private String pointStr; |
||||
|
||||
} |
Loading…
Reference in new issue