Commit 2e8bc50a authored by huyuchen's avatar huyuchen

huyc 项目档案代码提交

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