|
|
@@ -73,7 +73,7 @@
|
|
|
employer_address, employer_contacts, employer_contacts_mobile,
|
|
|
employer_contacts_mailbox, contacts, status,
|
|
|
release_status, release_date, create_time,
|
|
|
- principal_id, deleted_sign, audit_status, tech_broker_id,boutique)
|
|
|
+ principal_id, deleted_sign, audit_status, tech_broker_id,boutique,remark)
|
|
|
values (#{id,jdbcType=VARCHAR}, #{serialNumber,jdbcType=INTEGER}, #{dataCategory,jdbcType=INTEGER},
|
|
|
#{name,jdbcType=VARCHAR}, #{keyword,jdbcType=VARCHAR}, #{infoSources,jdbcType=INTEGER},
|
|
|
#{industryCategoryA,jdbcType=INTEGER}, #{industryCategoryB,jdbcType=INTEGER}, #{industryCategoryC,jdbcType=INTEGER},
|
|
|
@@ -86,7 +86,7 @@
|
|
|
#{employerContactsMailbox,jdbcType=VARCHAR}, #{contacts,jdbcType=INTEGER}, #{status,jdbcType=INTEGER},
|
|
|
#{releaseStatus,jdbcType=INTEGER}, #{releaseDate,jdbcType=TIMESTAMP}, #{createTime,jdbcType=TIMESTAMP},
|
|
|
#{principalId,jdbcType=VARCHAR}, #{deletedSign,jdbcType=INTEGER}, #{auditStatus,jdbcType=INTEGER},
|
|
|
- #{techBrokerId,jdbcType=VARCHAR},#{boutique,jdbcType=INTEGER})
|
|
|
+ #{techBrokerId,jdbcType=VARCHAR},#{boutique,jdbcType=INTEGER},#{remark,jdbcType=VARCHAR})
|
|
|
</insert>
|
|
|
<insert id="insertSelective" parameterType="com.goafanti.common.model.Demand" >
|
|
|
insert into demand
|
|
|
@@ -205,6 +205,9 @@
|
|
|
<if test="boutique != null" >
|
|
|
boutique,
|
|
|
</if>
|
|
|
+ <if test="remark != null" >
|
|
|
+ remark,
|
|
|
+ </if>
|
|
|
</trim>
|
|
|
<trim prefix="values (" suffix=")" suffixOverrides="," >
|
|
|
<if test="id != null" >
|
|
|
@@ -321,6 +324,9 @@
|
|
|
<if test="boutique != null" >
|
|
|
#{boutique,jdbcType=INTEGER},
|
|
|
</if>
|
|
|
+ <if test="remark != null" >
|
|
|
+ #{remark,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
</trim>
|
|
|
</insert>
|
|
|
<update id="updateByPrimaryKeySelective" parameterType="com.goafanti.common.model.Demand" >
|
|
|
@@ -437,6 +443,9 @@
|
|
|
<if test="boutique != null">
|
|
|
boutique = #{boutique,jdbcType=INTEGER},
|
|
|
</if>
|
|
|
+ <if test="remark != null" >
|
|
|
+ remark = #{remark,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
</set>
|
|
|
where id = #{id,jdbcType=VARCHAR}
|
|
|
</update>
|
|
|
@@ -880,7 +889,7 @@
|
|
|
d.budget_cost as budgetCost, d.fixed_cycle as fixedCycle, d.people_number as peopleNumber,
|
|
|
d.fixed_scheme as fixedScheme, d.cost_escrow as costEscrow, d.employer_id as employerId,
|
|
|
oi.postal_address as address, u.email as mailbox, d.contacts, d.audit_status as auditStatus,
|
|
|
- d.tech_broker_id as techBrokerId,
|
|
|
+ d.tech_broker_id as techBrokerId,d.remark
|
|
|
d.employer_address as employerAddress, d.employer_contacts_mobile as employerContactsMobile,
|
|
|
d.employer_contacts_mailbox as employerContactsMailbox, d.employer_name as employerName,
|
|
|
d.boutique,ifnull(mm.effective,0) as hot,mm.cover_img as coverImg
|