|
@@ -4,7 +4,7 @@
|
|
|
<resultMap id="BaseResultMap" type="com.hz.employmentsite.model.PcPost">
|
|
|
<id column="PostID" jdbcType="VARCHAR" property="postID" />
|
|
|
<result column="WorkCode" jdbcType="VARCHAR" property="workCode" />
|
|
|
- <result column="WorkNmae" jdbcType="VARCHAR" property="workNmae" />
|
|
|
+ <result column="WorkName" jdbcType="VARCHAR" property="workName" />
|
|
|
<result column="RecruitCount" jdbcType="INTEGER" property="recruitCount" />
|
|
|
<result column="CompanyID" jdbcType="VARCHAR" property="companyID" />
|
|
|
<result column="PostName" jdbcType="VARCHAR" property="postName" />
|
|
@@ -12,22 +12,23 @@
|
|
|
<result column="WorkNature" jdbcType="VARCHAR" property="workNature" />
|
|
|
<result column="ValidDay" jdbcType="INTEGER" property="validDay" />
|
|
|
<result column="WorkYear" jdbcType="INTEGER" property="workYear" />
|
|
|
- <result column="CultureRank" jdbcType="VARCHAR" property="cultureRank" />
|
|
|
+ <result column="CultureRank" jdbcType="INTEGER" property="cultureRank" />
|
|
|
<result column="MaxSalary" jdbcType="DECIMAL" property="maxSalary" />
|
|
|
<result column="MinSalary" jdbcType="DECIMAL" property="minSalary" />
|
|
|
<result column="Welfare" jdbcType="VARCHAR" property="welfare" />
|
|
|
<result column="UserName" jdbcType="VARCHAR" property="userName" />
|
|
|
<result column="UserMobile" jdbcType="VARCHAR" property="userMobile" />
|
|
|
- <result column="PostEmial" jdbcType="VARCHAR" property="postEmial" />
|
|
|
+ <result column="PostEmail" jdbcType="VARCHAR" property="postEmail" />
|
|
|
<result column="WorkTime" jdbcType="INTEGER" property="workTime" />
|
|
|
<result column="IsTrail" jdbcType="BIT" property="isTrail" />
|
|
|
- <result column="Trailtime" jdbcType="TIMESTAMP" property="trailtime" />
|
|
|
+ <result column="Trailtime" jdbcType="INTEGER" property="trailtime" />
|
|
|
<result column="TrailMaxSalary" jdbcType="DECIMAL" property="trailMaxSalary" />
|
|
|
<result column="TrailMinSalary" jdbcType="DECIMAL" property="trailMinSalary" />
|
|
|
<result column="CreateUserID" jdbcType="VARCHAR" property="createUserID" />
|
|
|
<result column="CreateTime" jdbcType="TIMESTAMP" property="createTime" />
|
|
|
<result column="ModifyUserID" jdbcType="VARCHAR" property="modifyUserID" />
|
|
|
<result column="ModifyTime" jdbcType="TIMESTAMP" property="modifyTime" />
|
|
|
+ <result column="ValidTime" jdbcType="TIMESTAMP" property="validTime" />
|
|
|
</resultMap>
|
|
|
<resultMap extends="BaseResultMap" id="ResultMapWithBLOBs" type="com.hz.employmentsite.model.PcPost">
|
|
|
<result column="PostDesc" jdbcType="LONGVARCHAR" property="postDesc" />
|
|
@@ -91,10 +92,10 @@
|
|
|
</where>
|
|
|
</sql>
|
|
|
<sql id="Base_Column_List">
|
|
|
- PostID, WorkCode, WorkNmae, RecruitCount, CompanyID, PostName, RecordStatus, WorkNature,
|
|
|
+ PostID, WorkCode, WorkName, RecruitCount, CompanyID, PostName, RecordStatus, WorkNature,
|
|
|
ValidDay, WorkYear, CultureRank, MaxSalary, MinSalary, Welfare, UserName, UserMobile,
|
|
|
- PostEmial, WorkTime, IsTrail, Trailtime, TrailMaxSalary, TrailMinSalary, CreateUserID,
|
|
|
- CreateTime, ModifyUserID, ModifyTime
|
|
|
+ PostEmail, WorkTime, IsTrail, Trailtime, TrailMaxSalary, TrailMinSalary, CreateUserID,
|
|
|
+ CreateTime, ModifyUserID, ModifyTime, ValidTime
|
|
|
</sql>
|
|
|
<sql id="Blob_Column_List">
|
|
|
PostDesc
|
|
@@ -148,26 +149,26 @@
|
|
|
</if>
|
|
|
</delete>
|
|
|
<insert id="insert" parameterType="com.hz.employmentsite.model.PcPost">
|
|
|
- insert into pc_post (PostID, WorkCode, WorkNmae,
|
|
|
+ insert into pc_post (PostID, WorkCode, WorkName,
|
|
|
RecruitCount, CompanyID, PostName,
|
|
|
RecordStatus, WorkNature, ValidDay,
|
|
|
WorkYear, CultureRank, MaxSalary,
|
|
|
MinSalary, Welfare, UserName,
|
|
|
- UserMobile, PostEmial, WorkTime,
|
|
|
+ UserMobile, PostEmail, WorkTime,
|
|
|
IsTrail, Trailtime, TrailMaxSalary,
|
|
|
TrailMinSalary, CreateUserID, CreateTime,
|
|
|
- ModifyUserID, ModifyTime, PostDesc
|
|
|
- )
|
|
|
- values (#{postID,jdbcType=VARCHAR}, #{workCode,jdbcType=VARCHAR}, #{workNmae,jdbcType=VARCHAR},
|
|
|
+ ModifyUserID, ModifyTime, ValidTime,
|
|
|
+ PostDesc)
|
|
|
+ values (#{postID,jdbcType=VARCHAR}, #{workCode,jdbcType=VARCHAR}, #{workName,jdbcType=VARCHAR},
|
|
|
#{recruitCount,jdbcType=INTEGER}, #{companyID,jdbcType=VARCHAR}, #{postName,jdbcType=VARCHAR},
|
|
|
#{recordStatus,jdbcType=INTEGER}, #{workNature,jdbcType=VARCHAR}, #{validDay,jdbcType=INTEGER},
|
|
|
- #{workYear,jdbcType=INTEGER}, #{cultureRank,jdbcType=VARCHAR}, #{maxSalary,jdbcType=DECIMAL},
|
|
|
+ #{workYear,jdbcType=INTEGER}, #{cultureRank,jdbcType=INTEGER}, #{maxSalary,jdbcType=DECIMAL},
|
|
|
#{minSalary,jdbcType=DECIMAL}, #{welfare,jdbcType=VARCHAR}, #{userName,jdbcType=VARCHAR},
|
|
|
- #{userMobile,jdbcType=VARCHAR}, #{postEmial,jdbcType=VARCHAR}, #{workTime,jdbcType=INTEGER},
|
|
|
- #{isTrail,jdbcType=BIT}, #{trailtime,jdbcType=TIMESTAMP}, #{trailMaxSalary,jdbcType=DECIMAL},
|
|
|
+ #{userMobile,jdbcType=VARCHAR}, #{postEmail,jdbcType=VARCHAR}, #{workTime,jdbcType=INTEGER},
|
|
|
+ #{isTrail,jdbcType=BIT}, #{trailtime,jdbcType=INTEGER}, #{trailMaxSalary,jdbcType=DECIMAL},
|
|
|
#{trailMinSalary,jdbcType=DECIMAL}, #{createUserID,jdbcType=VARCHAR}, #{createTime,jdbcType=TIMESTAMP},
|
|
|
- #{modifyUserID,jdbcType=VARCHAR}, #{modifyTime,jdbcType=TIMESTAMP}, #{postDesc,jdbcType=LONGVARCHAR}
|
|
|
- )
|
|
|
+ #{modifyUserID,jdbcType=VARCHAR}, #{modifyTime,jdbcType=TIMESTAMP}, #{validTime,jdbcType=TIMESTAMP},
|
|
|
+ #{postDesc,jdbcType=LONGVARCHAR})
|
|
|
</insert>
|
|
|
<insert id="insertSelective" parameterType="com.hz.employmentsite.model.PcPost">
|
|
|
insert into pc_post
|
|
@@ -178,8 +179,8 @@
|
|
|
<if test="workCode != null">
|
|
|
WorkCode,
|
|
|
</if>
|
|
|
- <if test="workNmae != null">
|
|
|
- WorkNmae,
|
|
|
+ <if test="workName != null">
|
|
|
+ WorkName,
|
|
|
</if>
|
|
|
<if test="recruitCount != null">
|
|
|
RecruitCount,
|
|
@@ -220,8 +221,8 @@
|
|
|
<if test="userMobile != null">
|
|
|
UserMobile,
|
|
|
</if>
|
|
|
- <if test="postEmial != null">
|
|
|
- PostEmial,
|
|
|
+ <if test="postEmail != null">
|
|
|
+ PostEmail,
|
|
|
</if>
|
|
|
<if test="workTime != null">
|
|
|
WorkTime,
|
|
@@ -250,6 +251,9 @@
|
|
|
<if test="modifyTime != null">
|
|
|
ModifyTime,
|
|
|
</if>
|
|
|
+ <if test="validTime != null">
|
|
|
+ ValidTime,
|
|
|
+ </if>
|
|
|
<if test="postDesc != null">
|
|
|
PostDesc,
|
|
|
</if>
|
|
@@ -261,8 +265,8 @@
|
|
|
<if test="workCode != null">
|
|
|
#{workCode,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
- <if test="workNmae != null">
|
|
|
- #{workNmae,jdbcType=VARCHAR},
|
|
|
+ <if test="workName != null">
|
|
|
+ #{workName,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="recruitCount != null">
|
|
|
#{recruitCount,jdbcType=INTEGER},
|
|
@@ -286,7 +290,7 @@
|
|
|
#{workYear,jdbcType=INTEGER},
|
|
|
</if>
|
|
|
<if test="cultureRank != null">
|
|
|
- #{cultureRank,jdbcType=VARCHAR},
|
|
|
+ #{cultureRank,jdbcType=INTEGER},
|
|
|
</if>
|
|
|
<if test="maxSalary != null">
|
|
|
#{maxSalary,jdbcType=DECIMAL},
|
|
@@ -303,8 +307,8 @@
|
|
|
<if test="userMobile != null">
|
|
|
#{userMobile,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
- <if test="postEmial != null">
|
|
|
- #{postEmial,jdbcType=VARCHAR},
|
|
|
+ <if test="postEmail != null">
|
|
|
+ #{postEmail,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="workTime != null">
|
|
|
#{workTime,jdbcType=INTEGER},
|
|
@@ -313,7 +317,7 @@
|
|
|
#{isTrail,jdbcType=BIT},
|
|
|
</if>
|
|
|
<if test="trailtime != null">
|
|
|
- #{trailtime,jdbcType=TIMESTAMP},
|
|
|
+ #{trailtime,jdbcType=INTEGER},
|
|
|
</if>
|
|
|
<if test="trailMaxSalary != null">
|
|
|
#{trailMaxSalary,jdbcType=DECIMAL},
|
|
@@ -333,6 +337,9 @@
|
|
|
<if test="modifyTime != null">
|
|
|
#{modifyTime,jdbcType=TIMESTAMP},
|
|
|
</if>
|
|
|
+ <if test="validTime != null">
|
|
|
+ #{validTime,jdbcType=TIMESTAMP},
|
|
|
+ </if>
|
|
|
<if test="postDesc != null">
|
|
|
#{postDesc,jdbcType=LONGVARCHAR},
|
|
|
</if>
|
|
@@ -353,8 +360,8 @@
|
|
|
<if test="row.workCode != null">
|
|
|
WorkCode = #{row.workCode,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
- <if test="row.workNmae != null">
|
|
|
- WorkNmae = #{row.workNmae,jdbcType=VARCHAR},
|
|
|
+ <if test="row.workName != null">
|
|
|
+ WorkName = #{row.workName,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="row.recruitCount != null">
|
|
|
RecruitCount = #{row.recruitCount,jdbcType=INTEGER},
|
|
@@ -378,7 +385,7 @@
|
|
|
WorkYear = #{row.workYear,jdbcType=INTEGER},
|
|
|
</if>
|
|
|
<if test="row.cultureRank != null">
|
|
|
- CultureRank = #{row.cultureRank,jdbcType=VARCHAR},
|
|
|
+ CultureRank = #{row.cultureRank,jdbcType=INTEGER},
|
|
|
</if>
|
|
|
<if test="row.maxSalary != null">
|
|
|
MaxSalary = #{row.maxSalary,jdbcType=DECIMAL},
|
|
@@ -395,8 +402,8 @@
|
|
|
<if test="row.userMobile != null">
|
|
|
UserMobile = #{row.userMobile,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
- <if test="row.postEmial != null">
|
|
|
- PostEmial = #{row.postEmial,jdbcType=VARCHAR},
|
|
|
+ <if test="row.postEmail != null">
|
|
|
+ PostEmail = #{row.postEmail,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="row.workTime != null">
|
|
|
WorkTime = #{row.workTime,jdbcType=INTEGER},
|
|
@@ -405,7 +412,7 @@
|
|
|
IsTrail = #{row.isTrail,jdbcType=BIT},
|
|
|
</if>
|
|
|
<if test="row.trailtime != null">
|
|
|
- Trailtime = #{row.trailtime,jdbcType=TIMESTAMP},
|
|
|
+ Trailtime = #{row.trailtime,jdbcType=INTEGER},
|
|
|
</if>
|
|
|
<if test="row.trailMaxSalary != null">
|
|
|
TrailMaxSalary = #{row.trailMaxSalary,jdbcType=DECIMAL},
|
|
@@ -425,6 +432,9 @@
|
|
|
<if test="row.modifyTime != null">
|
|
|
ModifyTime = #{row.modifyTime,jdbcType=TIMESTAMP},
|
|
|
</if>
|
|
|
+ <if test="row.validTime != null">
|
|
|
+ ValidTime = #{row.validTime,jdbcType=TIMESTAMP},
|
|
|
+ </if>
|
|
|
<if test="row.postDesc != null">
|
|
|
PostDesc = #{row.postDesc,jdbcType=LONGVARCHAR},
|
|
|
</if>
|
|
@@ -437,7 +447,7 @@
|
|
|
update pc_post
|
|
|
set PostID = #{row.postID,jdbcType=VARCHAR},
|
|
|
WorkCode = #{row.workCode,jdbcType=VARCHAR},
|
|
|
- WorkNmae = #{row.workNmae,jdbcType=VARCHAR},
|
|
|
+ WorkName = #{row.workName,jdbcType=VARCHAR},
|
|
|
RecruitCount = #{row.recruitCount,jdbcType=INTEGER},
|
|
|
CompanyID = #{row.companyID,jdbcType=VARCHAR},
|
|
|
PostName = #{row.postName,jdbcType=VARCHAR},
|
|
@@ -445,22 +455,23 @@
|
|
|
WorkNature = #{row.workNature,jdbcType=VARCHAR},
|
|
|
ValidDay = #{row.validDay,jdbcType=INTEGER},
|
|
|
WorkYear = #{row.workYear,jdbcType=INTEGER},
|
|
|
- CultureRank = #{row.cultureRank,jdbcType=VARCHAR},
|
|
|
+ CultureRank = #{row.cultureRank,jdbcType=INTEGER},
|
|
|
MaxSalary = #{row.maxSalary,jdbcType=DECIMAL},
|
|
|
MinSalary = #{row.minSalary,jdbcType=DECIMAL},
|
|
|
Welfare = #{row.welfare,jdbcType=VARCHAR},
|
|
|
UserName = #{row.userName,jdbcType=VARCHAR},
|
|
|
UserMobile = #{row.userMobile,jdbcType=VARCHAR},
|
|
|
- PostEmial = #{row.postEmial,jdbcType=VARCHAR},
|
|
|
+ PostEmail = #{row.postEmail,jdbcType=VARCHAR},
|
|
|
WorkTime = #{row.workTime,jdbcType=INTEGER},
|
|
|
IsTrail = #{row.isTrail,jdbcType=BIT},
|
|
|
- Trailtime = #{row.trailtime,jdbcType=TIMESTAMP},
|
|
|
+ Trailtime = #{row.trailtime,jdbcType=INTEGER},
|
|
|
TrailMaxSalary = #{row.trailMaxSalary,jdbcType=DECIMAL},
|
|
|
TrailMinSalary = #{row.trailMinSalary,jdbcType=DECIMAL},
|
|
|
CreateUserID = #{row.createUserID,jdbcType=VARCHAR},
|
|
|
CreateTime = #{row.createTime,jdbcType=TIMESTAMP},
|
|
|
ModifyUserID = #{row.modifyUserID,jdbcType=VARCHAR},
|
|
|
ModifyTime = #{row.modifyTime,jdbcType=TIMESTAMP},
|
|
|
+ ValidTime = #{row.validTime,jdbcType=TIMESTAMP},
|
|
|
PostDesc = #{row.postDesc,jdbcType=LONGVARCHAR}
|
|
|
<if test="example != null">
|
|
|
<include refid="Update_By_Example_Where_Clause" />
|
|
@@ -470,7 +481,7 @@
|
|
|
update pc_post
|
|
|
set PostID = #{row.postID,jdbcType=VARCHAR},
|
|
|
WorkCode = #{row.workCode,jdbcType=VARCHAR},
|
|
|
- WorkNmae = #{row.workNmae,jdbcType=VARCHAR},
|
|
|
+ WorkName = #{row.workName,jdbcType=VARCHAR},
|
|
|
RecruitCount = #{row.recruitCount,jdbcType=INTEGER},
|
|
|
CompanyID = #{row.companyID,jdbcType=VARCHAR},
|
|
|
PostName = #{row.postName,jdbcType=VARCHAR},
|
|
@@ -478,22 +489,23 @@
|
|
|
WorkNature = #{row.workNature,jdbcType=VARCHAR},
|
|
|
ValidDay = #{row.validDay,jdbcType=INTEGER},
|
|
|
WorkYear = #{row.workYear,jdbcType=INTEGER},
|
|
|
- CultureRank = #{row.cultureRank,jdbcType=VARCHAR},
|
|
|
+ CultureRank = #{row.cultureRank,jdbcType=INTEGER},
|
|
|
MaxSalary = #{row.maxSalary,jdbcType=DECIMAL},
|
|
|
MinSalary = #{row.minSalary,jdbcType=DECIMAL},
|
|
|
Welfare = #{row.welfare,jdbcType=VARCHAR},
|
|
|
UserName = #{row.userName,jdbcType=VARCHAR},
|
|
|
UserMobile = #{row.userMobile,jdbcType=VARCHAR},
|
|
|
- PostEmial = #{row.postEmial,jdbcType=VARCHAR},
|
|
|
+ PostEmail = #{row.postEmail,jdbcType=VARCHAR},
|
|
|
WorkTime = #{row.workTime,jdbcType=INTEGER},
|
|
|
IsTrail = #{row.isTrail,jdbcType=BIT},
|
|
|
- Trailtime = #{row.trailtime,jdbcType=TIMESTAMP},
|
|
|
+ Trailtime = #{row.trailtime,jdbcType=INTEGER},
|
|
|
TrailMaxSalary = #{row.trailMaxSalary,jdbcType=DECIMAL},
|
|
|
TrailMinSalary = #{row.trailMinSalary,jdbcType=DECIMAL},
|
|
|
CreateUserID = #{row.createUserID,jdbcType=VARCHAR},
|
|
|
CreateTime = #{row.createTime,jdbcType=TIMESTAMP},
|
|
|
ModifyUserID = #{row.modifyUserID,jdbcType=VARCHAR},
|
|
|
- ModifyTime = #{row.modifyTime,jdbcType=TIMESTAMP}
|
|
|
+ ModifyTime = #{row.modifyTime,jdbcType=TIMESTAMP},
|
|
|
+ ValidTime = #{row.validTime,jdbcType=TIMESTAMP}
|
|
|
<if test="example != null">
|
|
|
<include refid="Update_By_Example_Where_Clause" />
|
|
|
</if>
|
|
@@ -504,8 +516,8 @@
|
|
|
<if test="workCode != null">
|
|
|
WorkCode = #{workCode,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
- <if test="workNmae != null">
|
|
|
- WorkNmae = #{workNmae,jdbcType=VARCHAR},
|
|
|
+ <if test="workName != null">
|
|
|
+ WorkName = #{workName,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="recruitCount != null">
|
|
|
RecruitCount = #{recruitCount,jdbcType=INTEGER},
|
|
@@ -529,7 +541,7 @@
|
|
|
WorkYear = #{workYear,jdbcType=INTEGER},
|
|
|
</if>
|
|
|
<if test="cultureRank != null">
|
|
|
- CultureRank = #{cultureRank,jdbcType=VARCHAR},
|
|
|
+ CultureRank = #{cultureRank,jdbcType=INTEGER},
|
|
|
</if>
|
|
|
<if test="maxSalary != null">
|
|
|
MaxSalary = #{maxSalary,jdbcType=DECIMAL},
|
|
@@ -546,8 +558,8 @@
|
|
|
<if test="userMobile != null">
|
|
|
UserMobile = #{userMobile,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
- <if test="postEmial != null">
|
|
|
- PostEmial = #{postEmial,jdbcType=VARCHAR},
|
|
|
+ <if test="postEmail != null">
|
|
|
+ PostEmail = #{postEmail,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="workTime != null">
|
|
|
WorkTime = #{workTime,jdbcType=INTEGER},
|
|
@@ -556,7 +568,7 @@
|
|
|
IsTrail = #{isTrail,jdbcType=BIT},
|
|
|
</if>
|
|
|
<if test="trailtime != null">
|
|
|
- Trailtime = #{trailtime,jdbcType=TIMESTAMP},
|
|
|
+ Trailtime = #{trailtime,jdbcType=INTEGER},
|
|
|
</if>
|
|
|
<if test="trailMaxSalary != null">
|
|
|
TrailMaxSalary = #{trailMaxSalary,jdbcType=DECIMAL},
|
|
@@ -576,6 +588,9 @@
|
|
|
<if test="modifyTime != null">
|
|
|
ModifyTime = #{modifyTime,jdbcType=TIMESTAMP},
|
|
|
</if>
|
|
|
+ <if test="validTime != null">
|
|
|
+ ValidTime = #{validTime,jdbcType=TIMESTAMP},
|
|
|
+ </if>
|
|
|
<if test="postDesc != null">
|
|
|
PostDesc = #{postDesc,jdbcType=LONGVARCHAR},
|
|
|
</if>
|
|
@@ -585,7 +600,7 @@
|
|
|
<update id="updateByPrimaryKeyWithBLOBs" parameterType="com.hz.employmentsite.model.PcPost">
|
|
|
update pc_post
|
|
|
set WorkCode = #{workCode,jdbcType=VARCHAR},
|
|
|
- WorkNmae = #{workNmae,jdbcType=VARCHAR},
|
|
|
+ WorkName = #{workName,jdbcType=VARCHAR},
|
|
|
RecruitCount = #{recruitCount,jdbcType=INTEGER},
|
|
|
CompanyID = #{companyID,jdbcType=VARCHAR},
|
|
|
PostName = #{postName,jdbcType=VARCHAR},
|
|
@@ -593,29 +608,30 @@
|
|
|
WorkNature = #{workNature,jdbcType=VARCHAR},
|
|
|
ValidDay = #{validDay,jdbcType=INTEGER},
|
|
|
WorkYear = #{workYear,jdbcType=INTEGER},
|
|
|
- CultureRank = #{cultureRank,jdbcType=VARCHAR},
|
|
|
+ CultureRank = #{cultureRank,jdbcType=INTEGER},
|
|
|
MaxSalary = #{maxSalary,jdbcType=DECIMAL},
|
|
|
MinSalary = #{minSalary,jdbcType=DECIMAL},
|
|
|
Welfare = #{welfare,jdbcType=VARCHAR},
|
|
|
UserName = #{userName,jdbcType=VARCHAR},
|
|
|
UserMobile = #{userMobile,jdbcType=VARCHAR},
|
|
|
- PostEmial = #{postEmial,jdbcType=VARCHAR},
|
|
|
+ PostEmail = #{postEmail,jdbcType=VARCHAR},
|
|
|
WorkTime = #{workTime,jdbcType=INTEGER},
|
|
|
IsTrail = #{isTrail,jdbcType=BIT},
|
|
|
- Trailtime = #{trailtime,jdbcType=TIMESTAMP},
|
|
|
+ Trailtime = #{trailtime,jdbcType=INTEGER},
|
|
|
TrailMaxSalary = #{trailMaxSalary,jdbcType=DECIMAL},
|
|
|
TrailMinSalary = #{trailMinSalary,jdbcType=DECIMAL},
|
|
|
CreateUserID = #{createUserID,jdbcType=VARCHAR},
|
|
|
CreateTime = #{createTime,jdbcType=TIMESTAMP},
|
|
|
ModifyUserID = #{modifyUserID,jdbcType=VARCHAR},
|
|
|
ModifyTime = #{modifyTime,jdbcType=TIMESTAMP},
|
|
|
+ ValidTime = #{validTime,jdbcType=TIMESTAMP},
|
|
|
PostDesc = #{postDesc,jdbcType=LONGVARCHAR}
|
|
|
where PostID = #{postID,jdbcType=VARCHAR}
|
|
|
</update>
|
|
|
<update id="updateByPrimaryKey" parameterType="com.hz.employmentsite.model.PcPost">
|
|
|
update pc_post
|
|
|
set WorkCode = #{workCode,jdbcType=VARCHAR},
|
|
|
- WorkNmae = #{workNmae,jdbcType=VARCHAR},
|
|
|
+ WorkName = #{workName,jdbcType=VARCHAR},
|
|
|
RecruitCount = #{recruitCount,jdbcType=INTEGER},
|
|
|
CompanyID = #{companyID,jdbcType=VARCHAR},
|
|
|
PostName = #{postName,jdbcType=VARCHAR},
|
|
@@ -623,22 +639,23 @@
|
|
|
WorkNature = #{workNature,jdbcType=VARCHAR},
|
|
|
ValidDay = #{validDay,jdbcType=INTEGER},
|
|
|
WorkYear = #{workYear,jdbcType=INTEGER},
|
|
|
- CultureRank = #{cultureRank,jdbcType=VARCHAR},
|
|
|
+ CultureRank = #{cultureRank,jdbcType=INTEGER},
|
|
|
MaxSalary = #{maxSalary,jdbcType=DECIMAL},
|
|
|
MinSalary = #{minSalary,jdbcType=DECIMAL},
|
|
|
Welfare = #{welfare,jdbcType=VARCHAR},
|
|
|
UserName = #{userName,jdbcType=VARCHAR},
|
|
|
UserMobile = #{userMobile,jdbcType=VARCHAR},
|
|
|
- PostEmial = #{postEmial,jdbcType=VARCHAR},
|
|
|
+ PostEmail = #{postEmail,jdbcType=VARCHAR},
|
|
|
WorkTime = #{workTime,jdbcType=INTEGER},
|
|
|
IsTrail = #{isTrail,jdbcType=BIT},
|
|
|
- Trailtime = #{trailtime,jdbcType=TIMESTAMP},
|
|
|
+ Trailtime = #{trailtime,jdbcType=INTEGER},
|
|
|
TrailMaxSalary = #{trailMaxSalary,jdbcType=DECIMAL},
|
|
|
TrailMinSalary = #{trailMinSalary,jdbcType=DECIMAL},
|
|
|
CreateUserID = #{createUserID,jdbcType=VARCHAR},
|
|
|
CreateTime = #{createTime,jdbcType=TIMESTAMP},
|
|
|
ModifyUserID = #{modifyUserID,jdbcType=VARCHAR},
|
|
|
- ModifyTime = #{modifyTime,jdbcType=TIMESTAMP}
|
|
|
+ ModifyTime = #{modifyTime,jdbcType=TIMESTAMP},
|
|
|
+ ValidTime = #{validTime,jdbcType=TIMESTAMP}
|
|
|
where PostID = #{postID,jdbcType=VARCHAR}
|
|
|
</update>
|
|
|
</mapper>
|