|
|
|
|
@ -30,7 +30,7 @@ public class ErpProjectReportDetailVo implements Serializable {
|
|
|
|
|
/**
|
|
|
|
|
* 项目周报明细ID
|
|
|
|
|
*/
|
|
|
|
|
@ExcelProperty(value = "项目周报明细ID")
|
|
|
|
|
// @ExcelProperty(value = "项目周报明细ID")
|
|
|
|
|
private Long reportDetailId;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
@ -44,7 +44,29 @@ public class ErpProjectReportDetailVo implements Serializable {
|
|
|
|
|
*/
|
|
|
|
|
@ExcelProperty(value = "项目ID")
|
|
|
|
|
private Long projectId;
|
|
|
|
|
/**
|
|
|
|
|
* 部门名称
|
|
|
|
|
*/
|
|
|
|
|
@ExcelProperty(value = "部门名称")
|
|
|
|
|
private String deptName;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 项目经理名称
|
|
|
|
|
*/
|
|
|
|
|
@ExcelProperty(value = "项目经理名称")
|
|
|
|
|
private String managerName;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 部门负责人名称
|
|
|
|
|
*/
|
|
|
|
|
@ExcelProperty(value = "部门负责人名称")
|
|
|
|
|
private String chargeName;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 分管副总名称
|
|
|
|
|
*/
|
|
|
|
|
@ExcelProperty(value = "分管副总名称")
|
|
|
|
|
private String deputyName;
|
|
|
|
|
/**
|
|
|
|
|
* 填写日期
|
|
|
|
|
*/
|
|
|
|
|
@ -121,7 +143,7 @@ public class ErpProjectReportDetailVo implements Serializable {
|
|
|
|
|
/**
|
|
|
|
|
* 排序号
|
|
|
|
|
*/
|
|
|
|
|
@ExcelProperty(value = "排序号")
|
|
|
|
|
// @ExcelProperty(value = "排序号")
|
|
|
|
|
private Long sortOrder;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
@ -151,32 +173,10 @@ public class ErpProjectReportDetailVo implements Serializable {
|
|
|
|
|
/**
|
|
|
|
|
* 激活标识(1是 0否)
|
|
|
|
|
*/
|
|
|
|
|
@ExcelProperty(value = "激活标识", converter = ExcelDictConvert.class)
|
|
|
|
|
// @ExcelProperty(value = "激活标识", converter = ExcelDictConvert.class)
|
|
|
|
|
@ExcelDictFormat(readConverterExp = "1=是,0=否")
|
|
|
|
|
private String activeFlag;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 部门名称
|
|
|
|
|
*/
|
|
|
|
|
@ExcelProperty(value = "部门名称")
|
|
|
|
|
private String deptName;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 项目经理名称
|
|
|
|
|
*/
|
|
|
|
|
@ExcelProperty(value = "项目经理名称")
|
|
|
|
|
private String managerName;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 部门负责人名称
|
|
|
|
|
*/
|
|
|
|
|
@ExcelProperty(value = "部门负责人名称")
|
|
|
|
|
private String chargeName;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 分管副总名称
|
|
|
|
|
*/
|
|
|
|
|
@ExcelProperty(value = "分管副总名称")
|
|
|
|
|
private String deputyName;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|