|
@@ -32,11 +32,15 @@
|
|
<result column="creator_id" property="creatorId" />
|
|
<result column="creator_id" property="creatorId" />
|
|
<result column="custom_desc" property="customDesc" />
|
|
<result column="custom_desc" property="customDesc" />
|
|
<result column="is_delete" property="isDelete" />
|
|
<result column="is_delete" property="isDelete" />
|
|
|
|
+ <result column="company_phone" property="companyPhone" />
|
|
|
|
+ <result column="incharger_id" property="inchargerId" />
|
|
|
|
+ <result column="address" property="address" />
|
|
|
|
+ <result column="close_deal" property="closeDeal" />
|
|
</resultMap>
|
|
</resultMap>
|
|
|
|
|
|
<!-- 通用查询结果列 -->
|
|
<!-- 通用查询结果列 -->
|
|
<sql id="Base_Column_List">
|
|
<sql id="Base_Column_List">
|
|
- id, company_id, custom_name, custom_source_id, customer_industry_id, customer_level_id, email, owner_id, custom_code, tel_phone, fax, country_billing, province_billing, city_billing, street_billing, country_delivery, province_delivery, city_delivery, street_delivery, create_time, plate1, plate2, plate3, plate4, plate5, creator_id, custom_desc, is_delete
|
|
|
|
|
|
+ id, company_id, custom_name, custom_source_id, customer_industry_id, customer_level_id, email, owner_id, custom_code, tel_phone, fax, country_billing, province_billing, city_billing, street_billing, country_delivery, province_delivery, city_delivery, street_delivery, create_time, plate1, plate2, plate3, plate4, plate5, creator_id, custom_desc, is_delete, company_phone, incharger_id, address, close_deal
|
|
</sql>
|
|
</sql>
|
|
<select id="getList" resultType="com.management.platform.entity.Custom">
|
|
<select id="getList" resultType="com.management.platform.entity.Custom">
|
|
select id,
|
|
select id,
|
|
@@ -299,7 +303,7 @@
|
|
<if test="list!=null and list.size()>0">
|
|
<if test="list!=null and list.size()>0">
|
|
and incharger_id in
|
|
and incharger_id in
|
|
<foreach collection="list" separator="," open="(" close=")" item="item">
|
|
<foreach collection="list" separator="," open="(" close=")" item="item">
|
|
- item
|
|
|
|
|
|
+ #{item}
|
|
</foreach>
|
|
</foreach>
|
|
</if>
|
|
</if>
|
|
</select>
|
|
</select>
|