Commit 2e8bc50a authored by huyuchen's avatar huyuchen

huyc 项目档案代码提交

parent 342a47c6
...@@ -69,12 +69,14 @@ public class EmployeeProjectExportVO{ ...@@ -69,12 +69,14 @@ public class EmployeeProjectExportVO{
* 身份证有效期起 * 身份证有效期起
*/ */
@ExcelProperty(value = "身份证开始日期") @ExcelProperty(value = "身份证开始日期")
@DateTimeFormat("yyyy-MM-dd")
private Date validityStart; private Date validityStart;
/** /**
* 身份证有效期止 * 身份证有效期止
*/ */
@ExcelProperty(value = "身份证截止日期") @ExcelProperty(value = "身份证截止日期")
@DateTimeFormat("yyyy-MM-dd")
private Date validityEnd; private Date validityEnd;
/** /**
...@@ -219,13 +221,6 @@ public class EmployeeProjectExportVO{ ...@@ -219,13 +221,6 @@ public class EmployeeProjectExportVO{
@ExcelAttribute(name = "人员档案状态", readConverterExp = "0=草稿,1=已审核") @ExcelAttribute(name = "人员档案状态", readConverterExp = "0=草稿,1=已审核")
private Integer proStatus; private Integer proStatus;
/**
* 档案状态(0正常;1已减档)
*/
@ExcelProperty(value = "档案状态")
@ExcelAttribute(name = "人员档案状态", readConverterExp = "0=正常,1=已减档")
private Integer fileStatus;
/** /**
* 创建者-姓名 * 创建者-姓名
*/ */
...@@ -288,6 +283,7 @@ public class EmployeeProjectExportVO{ ...@@ -288,6 +283,7 @@ public class EmployeeProjectExportVO{
* 入职日期 * 入职日期
*/ */
@ExcelProperty(value ="入职日期") @ExcelProperty(value ="入职日期")
@DateTimeFormat("yyyy-MM-dd")
@Past @Past
private Date enjoinDate; private Date enjoinDate;
...@@ -301,7 +297,7 @@ public class EmployeeProjectExportVO{ ...@@ -301,7 +297,7 @@ public class EmployeeProjectExportVO{
* 项目员工类型 * 项目员工类型
*/ */
@ExcelProperty(value ="项目员工类型") @ExcelProperty(value ="项目员工类型")
@ExcelAttribute(name = "项目员工类型", isDataId = true,dataType = ExcelAttributeConstants.PERSONNEL_STATE) @ExcelAttribute(name = "项目员工类型", isDataId = true,dataType = ExcelAttributeConstants.EMP_NATRUE)
private String empNatrue; private String empNatrue;
/** /**
...@@ -391,6 +387,7 @@ public class EmployeeProjectExportVO{ ...@@ -391,6 +387,7 @@ public class EmployeeProjectExportVO{
/** /**
* 项目档案状态(0草稿、1已审核) * 项目档案状态(0草稿、1已审核)
*/ */
@ExcelAttribute(name ="项目档案状态", readConverterExp = "0=草稿,1=已审核")
@ExcelProperty(value ="项目档案状态") @ExcelProperty(value ="项目档案状态")
private Integer status; private Integer status;
......
...@@ -80,7 +80,6 @@ ...@@ -80,7 +80,6 @@
<result property="remark" column="REMARK"/> <result property="remark" column="REMARK"/>
<result property="fileSource" column="FILE_SOURCE"/> <result property="fileSource" column="FILE_SOURCE"/>
<result property="proStatus" column="PROSTATUS"/> <result property="proStatus" column="PROSTATUS"/>
<result property="fileStatus" column="FILE_STATUS"/>
<result property="bankName" column="BANK_NAME"/> <result property="bankName" column="BANK_NAME"/>
<result property="bankSubName" column="BANK_SUB_NAME"/> <result property="bankSubName" column="BANK_SUB_NAME"/>
<result property="bankNo" column="BANK_NO"/> <result property="bankNo" column="BANK_NO"/>
......
...@@ -345,7 +345,6 @@ public class DictController { ...@@ -345,7 +345,6 @@ public class DictController {
@PostMapping("/inner/getDictList") @PostMapping("/inner/getDictList")
public R<List<SysDictItem>> getDictList(@RequestParam(value = "itemType", required = false) String itemType) { public R<List<SysDictItem>> getDictList(@RequestParam(value = "itemType", required = false) String itemType) {
List<SysDictItem> allList = sysDictItemService.list(Wrappers.<SysDictItem>query().lambda() List<SysDictItem> allList = sysDictItemService.list(Wrappers.<SysDictItem>query().lambda()
.in(SysDictItem::getType,itemType)
.eq(SysDictItem::getDelFlag,CommonConstants.ZERO_STRING)); .eq(SysDictItem::getDelFlag,CommonConstants.ZERO_STRING));
return new R<>(allList); return new R<>(allList);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment