|
|
@ -25,6 +25,8 @@ |
|
|
<result column="yskt" jdbcType="INTEGER" property="yskt" /> |
|
|
<result column="yskt" jdbcType="INTEGER" property="yskt" /> |
|
|
<result column="jscgzh" jdbcType="INTEGER" property="jscgzh" /> |
|
|
<result column="jscgzh" jdbcType="INTEGER" property="jscgzh" /> |
|
|
<result column="xsjl" jdbcType="INTEGER" property="xsjl" /> |
|
|
<result column="xsjl" jdbcType="INTEGER" property="xsjl" /> |
|
|
|
|
|
<result column="contact_name" jdbcType="VARCHAR" property="contactName" /> |
|
|
|
|
|
<result column="contact_phone" jdbcType="VARCHAR" property="contactPhone" /> |
|
|
</resultMap> |
|
|
</resultMap> |
|
|
<resultMap extends="BaseResultMap" id="ResultMapWithBLOBs" type="com.research.system.domain.po.PrjProjOrg"> |
|
|
<resultMap extends="BaseResultMap" id="ResultMapWithBLOBs" type="com.research.system.domain.po.PrjProjOrg"> |
|
|
<result column="org_intro" jdbcType="LONGVARCHAR" property="orgIntro" /> |
|
|
<result column="org_intro" jdbcType="LONGVARCHAR" property="orgIntro" /> |
|
|
@ -90,7 +92,7 @@ |
|
|
<sql id="Base_Column_List"> |
|
|
<sql id="Base_Column_List"> |
|
|
id, proj_id, category, sort, org_name, org_leader, org_leader_phone, org_leader_email, |
|
|
id, proj_id, category, sort, org_name, org_leader, org_leader_phone, org_leader_email, |
|
|
proj_resp_intro, del_flag, create_by, create_time, update_by, update_time, remark, |
|
|
proj_resp_intro, del_flag, create_by, create_time, update_by, update_time, remark, |
|
|
xslw, zlsqysq, rjzzq, xszz, bzzd, yskt, jscgzh, xsjl |
|
|
xslw, zlsqysq, rjzzq, xszz, bzzd, yskt, jscgzh, xsjl, contact_name, contact_phone |
|
|
</sql> |
|
|
</sql> |
|
|
<sql id="Blob_Column_List"> |
|
|
<sql id="Blob_Column_List"> |
|
|
org_intro |
|
|
org_intro |
|
|
@ -145,7 +147,8 @@ |
|
|
update_by, update_time, remark, |
|
|
update_by, update_time, remark, |
|
|
xslw, zlsqysq, rjzzq, |
|
|
xslw, zlsqysq, rjzzq, |
|
|
xszz, bzzd, yskt, jscgzh, |
|
|
xszz, bzzd, yskt, jscgzh, |
|
|
xsjl, org_intro) |
|
|
xsjl, contact_name, contact_phone, |
|
|
|
|
|
org_intro) |
|
|
values (#{id,jdbcType=BIGINT}, #{projId,jdbcType=BIGINT}, #{category,jdbcType=TINYINT}, |
|
|
values (#{id,jdbcType=BIGINT}, #{projId,jdbcType=BIGINT}, #{category,jdbcType=TINYINT}, |
|
|
#{sort,jdbcType=INTEGER}, #{orgName,jdbcType=VARCHAR}, #{orgLeader,jdbcType=VARCHAR}, |
|
|
#{sort,jdbcType=INTEGER}, #{orgName,jdbcType=VARCHAR}, #{orgLeader,jdbcType=VARCHAR}, |
|
|
#{orgLeaderPhone,jdbcType=VARCHAR}, #{orgLeaderEmail,jdbcType=VARCHAR}, #{projRespIntro,jdbcType=VARCHAR}, |
|
|
#{orgLeaderPhone,jdbcType=VARCHAR}, #{orgLeaderEmail,jdbcType=VARCHAR}, #{projRespIntro,jdbcType=VARCHAR}, |
|
|
@ -153,7 +156,8 @@ |
|
|
#{updateBy,jdbcType=VARCHAR}, #{updateTime,jdbcType=TIMESTAMP}, #{remark,jdbcType=VARCHAR}, |
|
|
#{updateBy,jdbcType=VARCHAR}, #{updateTime,jdbcType=TIMESTAMP}, #{remark,jdbcType=VARCHAR}, |
|
|
#{xslw,jdbcType=INTEGER}, #{zlsqysq,jdbcType=INTEGER}, #{rjzzq,jdbcType=INTEGER}, |
|
|
#{xslw,jdbcType=INTEGER}, #{zlsqysq,jdbcType=INTEGER}, #{rjzzq,jdbcType=INTEGER}, |
|
|
#{xszz,jdbcType=INTEGER}, #{bzzd,jdbcType=INTEGER}, #{yskt,jdbcType=INTEGER}, #{jscgzh,jdbcType=INTEGER}, |
|
|
#{xszz,jdbcType=INTEGER}, #{bzzd,jdbcType=INTEGER}, #{yskt,jdbcType=INTEGER}, #{jscgzh,jdbcType=INTEGER}, |
|
|
#{xsjl,jdbcType=INTEGER}, #{orgIntro,jdbcType=LONGVARCHAR}) |
|
|
#{xsjl,jdbcType=INTEGER}, #{contactName,jdbcType=VARCHAR}, #{contactPhone,jdbcType=VARCHAR}, |
|
|
|
|
|
#{orgIntro,jdbcType=LONGVARCHAR}) |
|
|
</insert> |
|
|
</insert> |
|
|
<insert id="insertSelective" parameterType="com.research.system.domain.po.PrjProjOrg"> |
|
|
<insert id="insertSelective" parameterType="com.research.system.domain.po.PrjProjOrg"> |
|
|
insert into prj_proj_org |
|
|
insert into prj_proj_org |
|
|
@ -227,6 +231,12 @@ |
|
|
<if test="xsjl != null"> |
|
|
<if test="xsjl != null"> |
|
|
xsjl, |
|
|
xsjl, |
|
|
</if> |
|
|
</if> |
|
|
|
|
|
<if test="contactName != null"> |
|
|
|
|
|
contact_name, |
|
|
|
|
|
</if> |
|
|
|
|
|
<if test="contactPhone != null"> |
|
|
|
|
|
contact_phone, |
|
|
|
|
|
</if> |
|
|
<if test="orgIntro != null"> |
|
|
<if test="orgIntro != null"> |
|
|
org_intro, |
|
|
org_intro, |
|
|
</if> |
|
|
</if> |
|
|
@ -301,6 +311,12 @@ |
|
|
<if test="xsjl != null"> |
|
|
<if test="xsjl != null"> |
|
|
#{xsjl,jdbcType=INTEGER}, |
|
|
#{xsjl,jdbcType=INTEGER}, |
|
|
</if> |
|
|
</if> |
|
|
|
|
|
<if test="contactName != null"> |
|
|
|
|
|
#{contactName,jdbcType=VARCHAR}, |
|
|
|
|
|
</if> |
|
|
|
|
|
<if test="contactPhone != null"> |
|
|
|
|
|
#{contactPhone,jdbcType=VARCHAR}, |
|
|
|
|
|
</if> |
|
|
<if test="orgIntro != null"> |
|
|
<if test="orgIntro != null"> |
|
|
#{orgIntro,jdbcType=LONGVARCHAR}, |
|
|
#{orgIntro,jdbcType=LONGVARCHAR}, |
|
|
</if> |
|
|
</if> |
|
|
@ -384,6 +400,12 @@ |
|
|
<if test="record.xsjl != null"> |
|
|
<if test="record.xsjl != null"> |
|
|
xsjl = #{record.xsjl,jdbcType=INTEGER}, |
|
|
xsjl = #{record.xsjl,jdbcType=INTEGER}, |
|
|
</if> |
|
|
</if> |
|
|
|
|
|
<if test="record.contactName != null"> |
|
|
|
|
|
contact_name = #{record.contactName,jdbcType=VARCHAR}, |
|
|
|
|
|
</if> |
|
|
|
|
|
<if test="record.contactPhone != null"> |
|
|
|
|
|
contact_phone = #{record.contactPhone,jdbcType=VARCHAR}, |
|
|
|
|
|
</if> |
|
|
<if test="record.orgIntro != null"> |
|
|
<if test="record.orgIntro != null"> |
|
|
org_intro = #{record.orgIntro,jdbcType=LONGVARCHAR}, |
|
|
org_intro = #{record.orgIntro,jdbcType=LONGVARCHAR}, |
|
|
</if> |
|
|
</if> |
|
|
@ -417,6 +439,8 @@ |
|
|
yskt = #{record.yskt,jdbcType=INTEGER}, |
|
|
yskt = #{record.yskt,jdbcType=INTEGER}, |
|
|
jscgzh = #{record.jscgzh,jdbcType=INTEGER}, |
|
|
jscgzh = #{record.jscgzh,jdbcType=INTEGER}, |
|
|
xsjl = #{record.xsjl,jdbcType=INTEGER}, |
|
|
xsjl = #{record.xsjl,jdbcType=INTEGER}, |
|
|
|
|
|
contact_name = #{record.contactName,jdbcType=VARCHAR}, |
|
|
|
|
|
contact_phone = #{record.contactPhone,jdbcType=VARCHAR}, |
|
|
org_intro = #{record.orgIntro,jdbcType=LONGVARCHAR} |
|
|
org_intro = #{record.orgIntro,jdbcType=LONGVARCHAR} |
|
|
<if test="_parameter != null"> |
|
|
<if test="_parameter != null"> |
|
|
<include refid="Update_By_Example_Where_Clause" /> |
|
|
<include refid="Update_By_Example_Where_Clause" /> |
|
|
@ -446,7 +470,9 @@ |
|
|
bzzd = #{record.bzzd,jdbcType=INTEGER}, |
|
|
bzzd = #{record.bzzd,jdbcType=INTEGER}, |
|
|
yskt = #{record.yskt,jdbcType=INTEGER}, |
|
|
yskt = #{record.yskt,jdbcType=INTEGER}, |
|
|
jscgzh = #{record.jscgzh,jdbcType=INTEGER}, |
|
|
jscgzh = #{record.jscgzh,jdbcType=INTEGER}, |
|
|
xsjl = #{record.xsjl,jdbcType=INTEGER} |
|
|
xsjl = #{record.xsjl,jdbcType=INTEGER}, |
|
|
|
|
|
contact_name = #{record.contactName,jdbcType=VARCHAR}, |
|
|
|
|
|
contact_phone = #{record.contactPhone,jdbcType=VARCHAR} |
|
|
<if test="_parameter != null"> |
|
|
<if test="_parameter != null"> |
|
|
<include refid="Update_By_Example_Where_Clause" /> |
|
|
<include refid="Update_By_Example_Where_Clause" /> |
|
|
</if> |
|
|
</if> |
|
|
@ -520,6 +546,12 @@ |
|
|
<if test="xsjl != null"> |
|
|
<if test="xsjl != null"> |
|
|
xsjl = #{xsjl,jdbcType=INTEGER}, |
|
|
xsjl = #{xsjl,jdbcType=INTEGER}, |
|
|
</if> |
|
|
</if> |
|
|
|
|
|
<if test="contactName != null"> |
|
|
|
|
|
contact_name = #{contactName,jdbcType=VARCHAR}, |
|
|
|
|
|
</if> |
|
|
|
|
|
<if test="contactPhone != null"> |
|
|
|
|
|
contact_phone = #{contactPhone,jdbcType=VARCHAR}, |
|
|
|
|
|
</if> |
|
|
<if test="orgIntro != null"> |
|
|
<if test="orgIntro != null"> |
|
|
org_intro = #{orgIntro,jdbcType=LONGVARCHAR}, |
|
|
org_intro = #{orgIntro,jdbcType=LONGVARCHAR}, |
|
|
</if> |
|
|
</if> |
|
|
@ -550,6 +582,8 @@ |
|
|
yskt = #{yskt,jdbcType=INTEGER}, |
|
|
yskt = #{yskt,jdbcType=INTEGER}, |
|
|
jscgzh = #{jscgzh,jdbcType=INTEGER}, |
|
|
jscgzh = #{jscgzh,jdbcType=INTEGER}, |
|
|
xsjl = #{xsjl,jdbcType=INTEGER}, |
|
|
xsjl = #{xsjl,jdbcType=INTEGER}, |
|
|
|
|
|
contact_name = #{contactName,jdbcType=VARCHAR}, |
|
|
|
|
|
contact_phone = #{contactPhone,jdbcType=VARCHAR}, |
|
|
org_intro = #{orgIntro,jdbcType=LONGVARCHAR} |
|
|
org_intro = #{orgIntro,jdbcType=LONGVARCHAR} |
|
|
where id = #{id,jdbcType=BIGINT} |
|
|
where id = #{id,jdbcType=BIGINT} |
|
|
</update> |
|
|
</update> |
|
|
@ -576,7 +610,9 @@ |
|
|
bzzd = #{bzzd,jdbcType=INTEGER}, |
|
|
bzzd = #{bzzd,jdbcType=INTEGER}, |
|
|
yskt = #{yskt,jdbcType=INTEGER}, |
|
|
yskt = #{yskt,jdbcType=INTEGER}, |
|
|
jscgzh = #{jscgzh,jdbcType=INTEGER}, |
|
|
jscgzh = #{jscgzh,jdbcType=INTEGER}, |
|
|
xsjl = #{xsjl,jdbcType=INTEGER} |
|
|
xsjl = #{xsjl,jdbcType=INTEGER}, |
|
|
|
|
|
contact_name = #{contactName,jdbcType=VARCHAR}, |
|
|
|
|
|
contact_phone = #{contactPhone,jdbcType=VARCHAR} |
|
|
where id = #{id,jdbcType=BIGINT} |
|
|
where id = #{id,jdbcType=BIGINT} |
|
|
</update> |
|
|
</update> |
|
|
</mapper> |
|
|
</mapper> |