Commit b2640bd0 authored by hongguangwu's avatar hongguangwu

reason

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