|
@@ -13,6 +13,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<result property="channelBlurb" column="channel_blurb" />
|
|
<result property="channelBlurb" column="channel_blurb" />
|
|
|
<result property="contacts" column="contacts" />
|
|
<result property="contacts" column="contacts" />
|
|
|
<result property="telephone" column="telephone" />
|
|
<result property="telephone" column="telephone" />
|
|
|
|
|
+ <result property="channelCity" column="channel_city" />
|
|
|
<result property="address" column="address" />
|
|
<result property="address" column="address" />
|
|
|
<result property="channelHead" column="channel_head" />
|
|
<result property="channelHead" column="channel_head" />
|
|
|
<result property="status" column="status" />
|
|
<result property="status" column="status" />
|
|
@@ -25,7 +26,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
</resultMap>
|
|
</resultMap>
|
|
|
|
|
|
|
|
<sql id="selectTProjectChannelVo">
|
|
<sql id="selectTProjectChannelVo">
|
|
|
- select id, channel_name, channel_code, channel_type, channel_group, channel_blurb, contacts, telephone, address, channel_head, status, mark, del_flag, create_by, create_time, update_by, update_time from t_project_channel
|
|
|
|
|
|
|
+ select id, channel_name, channel_code, channel_type, channel_group, channel_blurb, contacts, telephone, channel_city,address, channel_head, status, mark, del_flag, create_by, create_time, update_by, update_time from t_project_channel
|
|
|
</sql>
|
|
</sql>
|
|
|
|
|
|
|
|
<select id="selectTProjectChannelList" parameterType="TProjectChannel" resultMap="TProjectChannelResult">
|
|
<select id="selectTProjectChannelList" parameterType="TProjectChannel" resultMap="TProjectChannelResult">
|
|
@@ -60,6 +61,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="channelBlurb != null">channel_blurb,</if>
|
|
<if test="channelBlurb != null">channel_blurb,</if>
|
|
|
<if test="contacts != null">contacts,</if>
|
|
<if test="contacts != null">contacts,</if>
|
|
|
<if test="telephone != null">telephone,</if>
|
|
<if test="telephone != null">telephone,</if>
|
|
|
|
|
+ <if test="channelCity != null">channel_city,</if>
|
|
|
<if test="address != null">address,</if>
|
|
<if test="address != null">address,</if>
|
|
|
<if test="channelHead != null">channel_head,</if>
|
|
<if test="channelHead != null">channel_head,</if>
|
|
|
<if test="status != null">status,</if>
|
|
<if test="status != null">status,</if>
|
|
@@ -79,6 +81,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="channelBlurb != null">#{channelBlurb},</if>
|
|
<if test="channelBlurb != null">#{channelBlurb},</if>
|
|
|
<if test="contacts != null">#{contacts},</if>
|
|
<if test="contacts != null">#{contacts},</if>
|
|
|
<if test="telephone != null">#{telephone},</if>
|
|
<if test="telephone != null">#{telephone},</if>
|
|
|
|
|
+ <if test="channelCity != null">#{channelCity},</if>
|
|
|
<if test="address != null">#{address},</if>
|
|
<if test="address != null">#{address},</if>
|
|
|
<if test="channelHead != null">#{channelHead},</if>
|
|
<if test="channelHead != null">#{channelHead},</if>
|
|
|
<if test="status != null">#{status},</if>
|
|
<if test="status != null">#{status},</if>
|
|
@@ -101,6 +104,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="channelBlurb != null">channel_blurb = #{channelBlurb},</if>
|
|
<if test="channelBlurb != null">channel_blurb = #{channelBlurb},</if>
|
|
|
<if test="contacts != null">contacts = #{contacts},</if>
|
|
<if test="contacts != null">contacts = #{contacts},</if>
|
|
|
<if test="telephone != null">telephone = #{telephone},</if>
|
|
<if test="telephone != null">telephone = #{telephone},</if>
|
|
|
|
|
+ <if test="channelCity != null">channel_city = #{channelCity},</if>
|
|
|
<if test="address != null">address = #{address},</if>
|
|
<if test="address != null">address = #{address},</if>
|
|
|
<if test="channelHead != null">channel_head = #{channelHead},</if>
|
|
<if test="channelHead != null">channel_head = #{channelHead},</if>
|
|
|
<if test="status != null">status = #{status},</if>
|
|
<if test="status != null">status = #{status},</if>
|