Commit b2640bd0 authored by hongguangwu's avatar hongguangwu

reason

parent eec72767
...@@ -417,6 +417,14 @@ public class TEmployeeContractInfo extends BaseEntity { ...@@ -417,6 +417,14 @@ public class TEmployeeContractInfo extends BaseEntity {
@Schema(description = "业务细分(存lable)", name = "contractName") @Schema(description = "业务细分(存lable)", name = "contractName")
private String contractSubName; private String contractSubName;
/**
* 原因说明
*/
@Length(max = 200, message = "原因说明不能超过200个字符")
@ExcelAttribute(name = "原因说明", maxLength = 200, needExport = true)
@Schema(description = "原因说明", name = "reason")
private String reason;
@Schema(description ="附件idList") @Schema(description ="附件idList")
@TableField(exist = false) @TableField(exist = false)
......
...@@ -78,6 +78,7 @@ ...@@ -78,6 +78,7 @@
<result property="empNatrue" column="EMP_NATRUE"/> <result property="empNatrue" column="EMP_NATRUE"/>
<result property="contractParty" column="CONTRACT_PARTY"/> <result property="contractParty" column="CONTRACT_PARTY"/>
<result property="contractSubName" column="CONTRACT_SUB_NAME"/> <result property="contractSubName" column="CONTRACT_SUB_NAME"/>
<result property="reason" column="REASON"/>
</resultMap> </resultMap>
<sql id="Base_Column_List"> <sql id="Base_Column_List">
a.ID, a.ID,
...@@ -133,7 +134,8 @@ ...@@ -133,7 +134,8 @@
a.DELETE_FLAG, a.DELETE_FLAG,
a.EMP_NATRUE, a.EMP_NATRUE,
a.CONTRACT_PARTY, a.CONTRACT_PARTY,
a.CONTRACT_SUB_NAME a.CONTRACT_SUB_NAME,
a.REASON
</sql> </sql>
<sql id="tEmployeeContractInfo_where"> <sql id="tEmployeeContractInfo_where">
......
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