Commit b4e74fd2 authored by hongguangwu's avatar hongguangwu

优化-APPLY_NO

parent 3b9f5414
...@@ -41,7 +41,7 @@ public class TDispatchInfoExportVo { ...@@ -41,7 +41,7 @@ public class TDispatchInfoExportVo {
@ExcelAttribute(name = "申请编码", maxLength = 30) @ExcelAttribute(name = "申请编码", maxLength = 30)
@Schema(description = "申请编码") @Schema(description = "申请编码")
@ExcelProperty("申请编码") @ExcelProperty("申请编码")
private String dispatchCode; private String applyNo;
@ExcelAttribute(name = "员工编码", maxLength = 30) @ExcelAttribute(name = "员工编码", maxLength = 30)
@Schema(description = "员工编码") @Schema(description = "员工编码")
...@@ -103,8 +103,8 @@ public class TDispatchInfoExportVo { ...@@ -103,8 +103,8 @@ public class TDispatchInfoExportVo {
@ExcelProperty("公积金户") @ExcelProperty("公积金户")
private String providentHouseholdName; private String providentHouseholdName;
@ExcelAttribute(name = "审核状态", readConverterExp = "1=待审核,2=审核通过,3=审核不通过") @ExcelAttribute(name = "审核状态", readConverterExp = "1=待审核,2=审核通过,3=审核不通过,4=已办结")
@Schema(description = "审核状态:1待审核2审核通过3审核不通过") @Schema(description = "审核状态:1待审核2审核通过3审核不通过4已办结")
@ExcelProperty("审核状态") @ExcelProperty("审核状态")
private String status; private String status;
......
...@@ -103,7 +103,7 @@ ...@@ -103,7 +103,7 @@
<!-- 派单导出vo --> <!-- 派单导出vo -->
<resultMap id="exportMap" type="com.yifu.cloud.plus.v1.yifu.social.vo.TDispatchInfoExportVo"> <resultMap id="exportMap" type="com.yifu.cloud.plus.v1.yifu.social.vo.TDispatchInfoExportVo">
<id property="id" column="ID"/> <id property="id" column="ID"/>
<result property="dispatchCode" column="DISPATCH_CODE"/> <result property="applyNo" column="APPLY_NO"/>
<result property="empNo" column="EMP_NO"/> <result property="empNo" column="EMP_NO"/>
<result property="empName" column="EMP_NAME"/> <result property="empName" column="EMP_NAME"/>
<result property="empIdcard" column="EMP_IDCARD"/> <result property="empIdcard" column="EMP_IDCARD"/>
...@@ -436,7 +436,7 @@ ...@@ -436,7 +436,7 @@
<select id="exportDispatch" resultMap="exportMap"> <select id="exportDispatch" resultMap="exportMap">
select select
a.ID, a.ID,
a.DISPATCH_CODE, a.APPLY_NO,
a.EMP_NO, a.EMP_NO,
a.EMP_NAME, a.EMP_NAME,
a.EMP_IDCARD, a.EMP_IDCARD,
......
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