Commit 529753cd authored by chenyuxi's avatar chenyuxi

feat: offer改字段名称

parent 4694fb69
...@@ -91,7 +91,7 @@ public class TGzOfferInfo extends BaseEntity { ...@@ -91,7 +91,7 @@ public class TGzOfferInfo extends BaseEntity {
@Length(max = 2, message = "人员类别编码:参考字典不能超过2个字符") @Length(max = 2, message = "人员类别编码:参考字典不能超过2个字符")
@ExcelProperty("人员类别编码:参考字典") @ExcelProperty("人员类别编码:参考字典")
@Schema(description = "人员类别编码:参考字典") @Schema(description = "人员类别编码:参考字典")
private String empType; private String emplType;
/** /**
* 人员类别名称 * 人员类别名称
*/ */
...@@ -99,7 +99,7 @@ public class TGzOfferInfo extends BaseEntity { ...@@ -99,7 +99,7 @@ public class TGzOfferInfo extends BaseEntity {
@Length(max = 32, message = "人员类别名称不能超过32个字符") @Length(max = 32, message = "人员类别名称不能超过32个字符")
@ExcelProperty("人员类别名称") @ExcelProperty("人员类别名称")
@Schema(description = "人员类别名称") @Schema(description = "人员类别名称")
private String empTypeDescr; private String emplTypeDescr;
/** /**
* 外签类型:A: 洼地外签/ B:属地外签 * 外签类型:A: 洼地外签/ B:属地外签
*/ */
......
...@@ -30,8 +30,8 @@ ...@@ -30,8 +30,8 @@
<result property="offerSendStatus" column="offer_send_status"/> <result property="offerSendStatus" column="offer_send_status"/>
<result property="updateBy" column="update_by"/> <result property="updateBy" column="update_by"/>
<result property="updateTime" column="update_time"/> <result property="updateTime" column="update_time"/>
<result property="empType" column="emp_type"/> <result property="emplType" column="empl_type"/>
<result property="empTypeDescr" column="emp_type_descr"/> <result property="emplTypeDescr" column="empl_type_descr"/>
<result property="outSginType" column="out_sgin_type"/> <result property="outSginType" column="out_sgin_type"/>
<result property="company" column="company"/> <result property="company" column="company"/>
<result property="name" column="name"/> <result property="name" column="name"/>
...@@ -75,8 +75,8 @@ ...@@ -75,8 +75,8 @@
a.offer_send_status, a.offer_send_status,
a.update_by, a.update_by,
a.update_time, a.update_time,
a.emp_type, a.empl_type,
a.emp_type_descr, a.empl_type_descr,
a.out_sgin_type, a.out_sgin_type,
a.company, a.company,
a.name, a.name,
......
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