|
|
|
|
@ -2,6 +2,7 @@ package org.dromara.oa.erp.domain.vo;
|
|
|
|
|
|
|
|
|
|
import cn.idev.excel.annotation.ExcelIgnoreUnannotated;
|
|
|
|
|
import cn.idev.excel.annotation.ExcelProperty;
|
|
|
|
|
import cn.idev.excel.annotation.write.style.ColumnWidth;
|
|
|
|
|
import io.github.linpeilie.annotations.AutoMapper;
|
|
|
|
|
import lombok.Data;
|
|
|
|
|
import org.dromara.common.excel.annotation.ExcelDictFormat;
|
|
|
|
|
@ -47,30 +48,31 @@ public class ErpProjectReportDetailVo implements Serializable {
|
|
|
|
|
/**
|
|
|
|
|
* 部门名称
|
|
|
|
|
*/
|
|
|
|
|
@ExcelProperty(value = "部门名称")
|
|
|
|
|
// @ExcelProperty(value = "部门名称")
|
|
|
|
|
private String deptName;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 项目经理名称
|
|
|
|
|
*/
|
|
|
|
|
@ExcelProperty(value = "项目经理名称")
|
|
|
|
|
// @ExcelProperty(value = "项目经理名称")
|
|
|
|
|
private String managerName;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 部门负责人名称
|
|
|
|
|
*/
|
|
|
|
|
@ExcelProperty(value = "部门负责人名称")
|
|
|
|
|
// @ExcelProperty(value = "部门负责人名称")
|
|
|
|
|
private String chargeName;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 分管副总名称
|
|
|
|
|
*/
|
|
|
|
|
@ExcelProperty(value = "分管副总名称")
|
|
|
|
|
// @ExcelProperty(value = "分管副总名称")
|
|
|
|
|
private String deputyName;
|
|
|
|
|
/**
|
|
|
|
|
* 填写日期
|
|
|
|
|
*/
|
|
|
|
|
@ExcelProperty(value = "填写日期")
|
|
|
|
|
@ColumnWidth(20) // 设置列宽为20个字符
|
|
|
|
|
private Date fillTime;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
@ -113,7 +115,7 @@ public class ErpProjectReportDetailVo implements Serializable {
|
|
|
|
|
* 计划完成率
|
|
|
|
|
*/
|
|
|
|
|
@ExcelProperty(value = "计划完成率")
|
|
|
|
|
private Long plannedCompletionRate;
|
|
|
|
|
private Double plannedCompletionRate;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 周报情况说明
|
|
|
|
|
@ -131,7 +133,8 @@ public class ErpProjectReportDetailVo implements Serializable {
|
|
|
|
|
/**
|
|
|
|
|
* 周报状态(1暂存 2审批中 3可用)
|
|
|
|
|
*/
|
|
|
|
|
@ExcelProperty(value = "周报状态(1暂存 2审批中 3可用)")
|
|
|
|
|
@ExcelProperty(value = "周报状态(1暂存 2审批中 3可用)", converter = ExcelDictConvert.class)
|
|
|
|
|
@ExcelDictFormat(readConverterExp = "1=暂存,2=审批中,3=可用")
|
|
|
|
|
private String projectReportStatus;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|