|
@@ -39,6 +39,7 @@
|
|
|
<result column="ModifyUserID" jdbcType="VARCHAR" property="modifyUserID" />
|
|
|
<result column="ModifyTime" jdbcType="TIMESTAMP" property="modifyTime" />
|
|
|
<result column="openId" jdbcType="VARCHAR" property="openId" />
|
|
|
+ <result column="IsAppInsert" jdbcType="INTEGER" property="isAppInsert" />
|
|
|
<result column="SocialSecurityCard" jdbcType="VARCHAR" property="socialSecurityCard" />
|
|
|
<result column="FinishSchool" jdbcType="VARCHAR" property="finishSchool" />
|
|
|
<result column="FinishDate" jdbcType="VARCHAR" property="finishDate" />
|
|
@@ -113,9 +114,9 @@
|
|
|
Birthplace, BirthDay, FamilyNatureID, CultureRank, HealthID, BloodTypeID, Height,
|
|
|
Vision, Weight, MaritalStatusID, ProvinceCode, RegionCode, StreetCode, UserName,
|
|
|
UserMobile, Address, FamilyAddress, PostalCode, Email, Hobby, JobStatusID, KeyPersonTypeID,
|
|
|
- PersonalSkills, CreateUserID, CreateTime, ModifyUserID, ModifyTime, openId, SocialSecurityCard,
|
|
|
- FinishSchool, FinishDate, Profession, NativePlace, IsFullTime, OccupationalCategory,
|
|
|
- OccupationalLevel, Longitude, Latitude
|
|
|
+ PersonalSkills, CreateUserID, CreateTime, ModifyUserID, ModifyTime, openId, IsAppInsert,
|
|
|
+ SocialSecurityCard, FinishSchool, FinishDate, Profession, NativePlace, IsFullTime,
|
|
|
+ OccupationalCategory, OccupationalLevel, Longitude, Latitude
|
|
|
</sql>
|
|
|
<select id="selectByExample" parameterType="com.hz.employmentsite.model.PcJobuserExample" resultMap="BaseResultMap">
|
|
|
select
|
|
@@ -160,10 +161,11 @@
|
|
|
Email, Hobby, JobStatusID,
|
|
|
KeyPersonTypeID, PersonalSkills, CreateUserID,
|
|
|
CreateTime, ModifyUserID, ModifyTime,
|
|
|
- openId, SocialSecurityCard, FinishSchool,
|
|
|
- FinishDate, Profession, NativePlace,
|
|
|
- IsFullTime, OccupationalCategory, OccupationalLevel,
|
|
|
- Longitude, Latitude)
|
|
|
+ openId, IsAppInsert, SocialSecurityCard,
|
|
|
+ FinishSchool, FinishDate, Profession,
|
|
|
+ NativePlace, IsFullTime, OccupationalCategory,
|
|
|
+ OccupationalLevel, Longitude, Latitude
|
|
|
+ )
|
|
|
values (#{jobuserID,jdbcType=VARCHAR}, #{siteID,jdbcType=VARCHAR}, #{identityNumber,jdbcType=VARCHAR},
|
|
|
#{name,jdbcType=VARCHAR}, #{pyName,jdbcType=VARCHAR}, #{engName,jdbcType=VARCHAR},
|
|
|
#{sex,jdbcType=INTEGER}, #{nation,jdbcType=INTEGER}, #{politicsStatusID,jdbcType=INTEGER},
|
|
@@ -176,10 +178,11 @@
|
|
|
#{email,jdbcType=VARCHAR}, #{hobby,jdbcType=VARCHAR}, #{jobStatusID,jdbcType=INTEGER},
|
|
|
#{keyPersonTypeID,jdbcType=INTEGER}, #{personalSkills,jdbcType=VARCHAR}, #{createUserID,jdbcType=VARCHAR},
|
|
|
#{createTime,jdbcType=TIMESTAMP}, #{modifyUserID,jdbcType=VARCHAR}, #{modifyTime,jdbcType=TIMESTAMP},
|
|
|
- #{openId,jdbcType=VARCHAR}, #{socialSecurityCard,jdbcType=VARCHAR}, #{finishSchool,jdbcType=VARCHAR},
|
|
|
- #{finishDate,jdbcType=VARCHAR}, #{profession,jdbcType=VARCHAR}, #{nativePlace,jdbcType=VARCHAR},
|
|
|
- #{isFullTime,jdbcType=INTEGER}, #{occupationalCategory,jdbcType=VARCHAR}, #{occupationalLevel,jdbcType=INTEGER},
|
|
|
- #{longitude,jdbcType=VARCHAR}, #{latitude,jdbcType=VARCHAR})
|
|
|
+ #{openId,jdbcType=VARCHAR}, #{isAppInsert,jdbcType=INTEGER}, #{socialSecurityCard,jdbcType=VARCHAR},
|
|
|
+ #{finishSchool,jdbcType=VARCHAR}, #{finishDate,jdbcType=VARCHAR}, #{profession,jdbcType=VARCHAR},
|
|
|
+ #{nativePlace,jdbcType=VARCHAR}, #{isFullTime,jdbcType=INTEGER}, #{occupationalCategory,jdbcType=VARCHAR},
|
|
|
+ #{occupationalLevel,jdbcType=INTEGER}, #{longitude,jdbcType=VARCHAR}, #{latitude,jdbcType=VARCHAR}
|
|
|
+ )
|
|
|
</insert>
|
|
|
<insert id="insertSelective" parameterType="com.hz.employmentsite.model.PcJobuser">
|
|
|
insert into pc_jobuser
|
|
@@ -295,6 +298,9 @@
|
|
|
<if test="openId != null">
|
|
|
openId,
|
|
|
</if>
|
|
|
+ <if test="isAppInsert != null">
|
|
|
+ IsAppInsert,
|
|
|
+ </if>
|
|
|
<if test="socialSecurityCard != null">
|
|
|
SocialSecurityCard,
|
|
|
</if>
|
|
@@ -438,6 +444,9 @@
|
|
|
<if test="openId != null">
|
|
|
#{openId,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
+ <if test="isAppInsert != null">
|
|
|
+ #{isAppInsert,jdbcType=INTEGER},
|
|
|
+ </if>
|
|
|
<if test="socialSecurityCard != null">
|
|
|
#{socialSecurityCard,jdbcType=VARCHAR},
|
|
|
</if>
|
|
@@ -590,6 +599,9 @@
|
|
|
<if test="row.openId != null">
|
|
|
openId = #{row.openId,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
+ <if test="row.isAppInsert != null">
|
|
|
+ IsAppInsert = #{row.isAppInsert,jdbcType=INTEGER},
|
|
|
+ </if>
|
|
|
<if test="row.socialSecurityCard != null">
|
|
|
SocialSecurityCard = #{row.socialSecurityCard,jdbcType=VARCHAR},
|
|
|
</if>
|
|
@@ -664,6 +676,7 @@
|
|
|
ModifyUserID = #{row.modifyUserID,jdbcType=VARCHAR},
|
|
|
ModifyTime = #{row.modifyTime,jdbcType=TIMESTAMP},
|
|
|
openId = #{row.openId,jdbcType=VARCHAR},
|
|
|
+ IsAppInsert = #{row.isAppInsert,jdbcType=INTEGER},
|
|
|
SocialSecurityCard = #{row.socialSecurityCard,jdbcType=VARCHAR},
|
|
|
FinishSchool = #{row.finishSchool,jdbcType=VARCHAR},
|
|
|
FinishDate = #{row.finishDate,jdbcType=VARCHAR},
|
|
@@ -789,6 +802,9 @@
|
|
|
<if test="openId != null">
|
|
|
openId = #{openId,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
+ <if test="isAppInsert != null">
|
|
|
+ IsAppInsert = #{isAppInsert,jdbcType=INTEGER},
|
|
|
+ </if>
|
|
|
<if test="socialSecurityCard != null">
|
|
|
SocialSecurityCard = #{socialSecurityCard,jdbcType=VARCHAR},
|
|
|
</if>
|
|
@@ -860,6 +876,7 @@
|
|
|
ModifyUserID = #{modifyUserID,jdbcType=VARCHAR},
|
|
|
ModifyTime = #{modifyTime,jdbcType=TIMESTAMP},
|
|
|
openId = #{openId,jdbcType=VARCHAR},
|
|
|
+ IsAppInsert = #{isAppInsert,jdbcType=INTEGER},
|
|
|
SocialSecurityCard = #{socialSecurityCard,jdbcType=VARCHAR},
|
|
|
FinishSchool = #{finishSchool,jdbcType=VARCHAR},
|
|
|
FinishDate = #{finishDate,jdbcType=VARCHAR},
|