|
@@ -29,6 +29,7 @@
|
|
|
<result column="openId" jdbcType="VARCHAR" property="openId" />
|
|
|
<result column="EstablishmentTime" jdbcType="TIMESTAMP" property="establishmentTime" />
|
|
|
<result column="RegisteredCapital" jdbcType="DECIMAL" property="registeredCapital" />
|
|
|
+ <result column="RegisteredCapitalType" jdbcType="INTEGER" property="registeredCapitalType" />
|
|
|
<result column="SignInPoliticalArea" jdbcType="VARCHAR" property="signInPoliticalArea" />
|
|
|
<result column="IndustryID" jdbcType="VARCHAR" property="industryID" />
|
|
|
<result column="EstateCategoryID" jdbcType="INTEGER" property="estateCategoryID" />
|
|
@@ -102,8 +103,8 @@
|
|
|
CompanyID, SiteID, RegionCode, InsuredCount, StreetCode, CompanyName, CompanyCode,
|
|
|
CompanyModel, WorkSituation, CompanyType, CompanyAddress, UserName, UserMobile, CompanyEmail,
|
|
|
FrName, ValidDate, IsShortage, RecordStatus, CreateUserID, CreateTime, ModifyUserID,
|
|
|
- ModifyTime, Longitude, Latitude, openId, EstablishmentTime, RegisteredCapital, SignInPoliticalArea,
|
|
|
- IndustryID, EstateCategoryID, TagID, Website, Bonus
|
|
|
+ ModifyTime, Longitude, Latitude, openId, EstablishmentTime, RegisteredCapital, RegisteredCapitalType,
|
|
|
+ SignInPoliticalArea, IndustryID, EstateCategoryID, TagID, Website, Bonus
|
|
|
</sql>
|
|
|
<sql id="Blob_Column_List">
|
|
|
BusinScope, CompanyDesc
|
|
@@ -166,9 +167,10 @@
|
|
|
CreateUserID, CreateTime, ModifyUserID,
|
|
|
ModifyTime, Longitude, Latitude,
|
|
|
openId, EstablishmentTime, RegisteredCapital,
|
|
|
- SignInPoliticalArea, IndustryID, EstateCategoryID,
|
|
|
- TagID, Website, Bonus,
|
|
|
- BusinScope, CompanyDesc)
|
|
|
+ RegisteredCapitalType, SignInPoliticalArea,
|
|
|
+ IndustryID, EstateCategoryID, TagID,
|
|
|
+ Website, Bonus, BusinScope,
|
|
|
+ CompanyDesc)
|
|
|
values (#{companyID,jdbcType=VARCHAR}, #{siteID,jdbcType=VARCHAR}, #{regionCode,jdbcType=VARCHAR},
|
|
|
#{insuredCount,jdbcType=INTEGER}, #{streetCode,jdbcType=VARCHAR}, #{companyName,jdbcType=VARCHAR},
|
|
|
#{companyCode,jdbcType=VARCHAR}, #{companyModel,jdbcType=INTEGER}, #{workSituation,jdbcType=VARCHAR},
|
|
@@ -178,9 +180,10 @@
|
|
|
#{createUserID,jdbcType=VARCHAR}, #{createTime,jdbcType=TIMESTAMP}, #{modifyUserID,jdbcType=VARCHAR},
|
|
|
#{modifyTime,jdbcType=TIMESTAMP}, #{longitude,jdbcType=VARCHAR}, #{latitude,jdbcType=VARCHAR},
|
|
|
#{openId,jdbcType=VARCHAR}, #{establishmentTime,jdbcType=TIMESTAMP}, #{registeredCapital,jdbcType=DECIMAL},
|
|
|
- #{signInPoliticalArea,jdbcType=VARCHAR}, #{industryID,jdbcType=VARCHAR}, #{estateCategoryID,jdbcType=INTEGER},
|
|
|
- #{tagID,jdbcType=INTEGER}, #{website,jdbcType=VARCHAR}, #{bonus,jdbcType=VARCHAR},
|
|
|
- #{businScope,jdbcType=LONGVARCHAR}, #{companyDesc,jdbcType=LONGVARCHAR})
|
|
|
+ #{registeredCapitalType,jdbcType=INTEGER}, #{signInPoliticalArea,jdbcType=VARCHAR},
|
|
|
+ #{industryID,jdbcType=VARCHAR}, #{estateCategoryID,jdbcType=INTEGER}, #{tagID,jdbcType=INTEGER},
|
|
|
+ #{website,jdbcType=VARCHAR}, #{bonus,jdbcType=VARCHAR}, #{businScope,jdbcType=LONGVARCHAR},
|
|
|
+ #{companyDesc,jdbcType=LONGVARCHAR})
|
|
|
</insert>
|
|
|
<insert id="insertSelective" parameterType="com.hz.employmentsite.model.PcCompanyWithBLOBs">
|
|
|
insert into pc_company
|
|
@@ -266,6 +269,9 @@
|
|
|
<if test="registeredCapital != null">
|
|
|
RegisteredCapital,
|
|
|
</if>
|
|
|
+ <if test="registeredCapitalType != null">
|
|
|
+ RegisteredCapitalType,
|
|
|
+ </if>
|
|
|
<if test="signInPoliticalArea != null">
|
|
|
SignInPoliticalArea,
|
|
|
</if>
|
|
@@ -373,6 +379,9 @@
|
|
|
<if test="registeredCapital != null">
|
|
|
#{registeredCapital,jdbcType=DECIMAL},
|
|
|
</if>
|
|
|
+ <if test="registeredCapitalType != null">
|
|
|
+ #{registeredCapitalType,jdbcType=INTEGER},
|
|
|
+ </if>
|
|
|
<if test="signInPoliticalArea != null">
|
|
|
#{signInPoliticalArea,jdbcType=VARCHAR},
|
|
|
</if>
|
|
@@ -489,6 +498,9 @@
|
|
|
<if test="row.registeredCapital != null">
|
|
|
RegisteredCapital = #{row.registeredCapital,jdbcType=DECIMAL},
|
|
|
</if>
|
|
|
+ <if test="row.registeredCapitalType != null">
|
|
|
+ RegisteredCapitalType = #{row.registeredCapitalType,jdbcType=INTEGER},
|
|
|
+ </if>
|
|
|
<if test="row.signInPoliticalArea != null">
|
|
|
SignInPoliticalArea = #{row.signInPoliticalArea,jdbcType=VARCHAR},
|
|
|
</if>
|
|
@@ -547,6 +559,7 @@
|
|
|
openId = #{row.openId,jdbcType=VARCHAR},
|
|
|
EstablishmentTime = #{row.establishmentTime,jdbcType=TIMESTAMP},
|
|
|
RegisteredCapital = #{row.registeredCapital,jdbcType=DECIMAL},
|
|
|
+ RegisteredCapitalType = #{row.registeredCapitalType,jdbcType=INTEGER},
|
|
|
SignInPoliticalArea = #{row.signInPoliticalArea,jdbcType=VARCHAR},
|
|
|
IndustryID = #{row.industryID,jdbcType=VARCHAR},
|
|
|
EstateCategoryID = #{row.estateCategoryID,jdbcType=INTEGER},
|
|
@@ -588,6 +601,7 @@
|
|
|
openId = #{row.openId,jdbcType=VARCHAR},
|
|
|
EstablishmentTime = #{row.establishmentTime,jdbcType=TIMESTAMP},
|
|
|
RegisteredCapital = #{row.registeredCapital,jdbcType=DECIMAL},
|
|
|
+ RegisteredCapitalType = #{row.registeredCapitalType,jdbcType=INTEGER},
|
|
|
SignInPoliticalArea = #{row.signInPoliticalArea,jdbcType=VARCHAR},
|
|
|
IndustryID = #{row.industryID,jdbcType=VARCHAR},
|
|
|
EstateCategoryID = #{row.estateCategoryID,jdbcType=INTEGER},
|
|
@@ -679,6 +693,9 @@
|
|
|
<if test="registeredCapital != null">
|
|
|
RegisteredCapital = #{registeredCapital,jdbcType=DECIMAL},
|
|
|
</if>
|
|
|
+ <if test="registeredCapitalType != null">
|
|
|
+ RegisteredCapitalType = #{registeredCapitalType,jdbcType=INTEGER},
|
|
|
+ </if>
|
|
|
<if test="signInPoliticalArea != null">
|
|
|
SignInPoliticalArea = #{signInPoliticalArea,jdbcType=VARCHAR},
|
|
|
</if>
|
|
@@ -734,6 +751,7 @@
|
|
|
openId = #{openId,jdbcType=VARCHAR},
|
|
|
EstablishmentTime = #{establishmentTime,jdbcType=TIMESTAMP},
|
|
|
RegisteredCapital = #{registeredCapital,jdbcType=DECIMAL},
|
|
|
+ RegisteredCapitalType = #{registeredCapitalType,jdbcType=INTEGER},
|
|
|
SignInPoliticalArea = #{signInPoliticalArea,jdbcType=VARCHAR},
|
|
|
IndustryID = #{industryID,jdbcType=VARCHAR},
|
|
|
EstateCategoryID = #{estateCategoryID,jdbcType=INTEGER},
|
|
@@ -772,6 +790,7 @@
|
|
|
openId = #{openId,jdbcType=VARCHAR},
|
|
|
EstablishmentTime = #{establishmentTime,jdbcType=TIMESTAMP},
|
|
|
RegisteredCapital = #{registeredCapital,jdbcType=DECIMAL},
|
|
|
+ RegisteredCapitalType = #{registeredCapitalType,jdbcType=INTEGER},
|
|
|
SignInPoliticalArea = #{signInPoliticalArea,jdbcType=VARCHAR},
|
|
|
IndustryID = #{industryID,jdbcType=VARCHAR},
|
|
|
EstateCategoryID = #{estateCategoryID,jdbcType=INTEGER},
|