| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
- <mapper namespace="com.management.platform.mapper.ClueMapper">
- <!-- 通用查询映射结果 -->
- <resultMap id="BaseResultMap" type="com.management.platform.entity.Clue">
- <id column="id" property="id" />
- <result column="company_id" property="companyId" />
- <result column="clue_name" property="clueName" />
- <result column="clue_source_id" property="clueSourceId" />
- <result column="phone" property="phone" />
- <result column="email" property="email" />
- <result column="customer_industry_id" property="customerIndustryId" />
- <result column="customer_level_id" property="customerLevelId" />
- <result column="address" property="address" />
- <result column="incharger_id" property="inchargerId" />
- <result column="remark" property="remark" />
- <result column="is_delete" property="isDelete" />
- <result column="plate1" property="plate1" />
- <result column="plate2" property="plate2" />
- <result column="plate3" property="plate3" />
- <result column="plate4" property="plate4" />
- <result column="plate5" property="plate5" />
- <result column="company_name" property="companyName" />
- <result column="create_time" property="createTime" />
- <result column="create_id" property="createId" />
- </resultMap>
- <!-- 通用查询结果列 -->
- <sql id="Base_Column_List">
- id, company_id, clue_name, clue_source_id, phone , email, customer_industry_id, customer_level_id, address, incharger_id, remark, is_delete, plate1, plate2, plate3, plate4, plate5,create_time,createId
- </sql>
- <select id="list" resultType="com.management.platform.entity.Clue">
- select c.id,
- c.company_id,
- c.clue_name,
- c.clue_source_id,
- c.phone,
- c.email,
- c.customer_industry_id,
- c.customer_level_id,
- c.address,
- c.incharger_id,
- c.remark,
- c.is_delete,
- c.plate1,
- c.plate2,
- c.plate3,
- c.plate4,
- c.plate5,
- c.create_time,
- c.create_id,
- (select company_name from company where c.company_id = id) companyName,
- (select name from `user` where id = c.incharger_id) inchargerName,
- (select name from `user` where id = c.create_id) createName,
- (select name from sys_dict where c.clue_source_id = id and code = 'ClueSources') clueSourceValue,
- (select name from sys_dict where c.customer_industry_id = id and code = 'CustomIndustry') customerIndustryValue,
- (select name from sys_dict where c.customer_level_id = id and code = 'CustomLevel') customerLevelValue
- from clue c
- left join sys_dict sd on c.customer_level_id = sd.id
- where
- c.company_id = #{companyId} and is_delete = #{isDelete} and c.is_bo = 0
- <if test="inchargerId != null and inchargerId != '' ">
- and c.incharger_id =#{inchargerId}
- </if>
- <if test="startTime != null and endTime != null ">
- and c.create_time BETWEEN #{startTime} and #{endTime}
- </if>
- <if test="clueName != null and clueName != '' ">
- and c.clue_name LIKE CONCAT('%', #{clueName}, '%')
- </if>
- <if test="phone != null and phone != '' ">
- and c.phone LIKE CONCAT('%', #{phone}, '%')
- </if>
- <if test="customerLevelId != null and customerLevelId != '' ">
- and c.customer_level_id = #{customerLevelId}
- </if>
- <if test="email != null and email != '' ">
- and c.email LIKE CONCAT('%', #{email}, '%')
- </if>
- <if test="clueSourceId != null">
- and c.clue_source_id = #{clueSourceId}
- </if>
- <if test="customerIndustryId != null">
- and c.customer_industry_id = #{customerIndustryId}
- </if>
- ORDER BY
- <choose>
- <when test="isDesc == null ">
- c.id DESC
- </when>
- <when test="isDesc == 0">
- sd.seq ASC, c.id DESC
- </when>
- <when test="isDesc == 1">
- sd.seq DESC, c.id DESC
- </when>
- <otherwise>
- c.id DESC
- </otherwise>
- </choose>
- limit #{pageIndex},#{pageFrom}
- </select>
- <select id="list1" resultType="com.management.platform.entity.Clue">
- select c.id,
- c.company_id,
- (select company_name from company where company_id = c.id) companyName,
- c.clue_name,
- c.clue_source_id,
- c.phone,
- c.email,
- c.customer_industry_id,
- c.customer_level_id,
- c.address,
- c.incharger_id,
- c.remark,
- c.is_delete,
- c.plate1,
- c.plate2,
- c.plate3,
- c.plate4,
- c.plate5,
- c.create_time,
- c.create_id,
- (select name from `user` where id = c.incharger_id) inchargerName,
- (select name from `user` where id = c.create_id) createName,
- (select name from sys_dict where c.clue_source_id = id and code = 'ClueSources') clueSourceValue,
- (select name from sys_dict where c.customer_industry_id = id and code = 'CustomIndustry') customerIndustryValue,
- (select name from sys_dict where c.customer_level_id = id and code = 'CustomLevel') customerLevelValue
- from clue c
- left join sys_dict sd on c.customer_level_id = sd.id
- where
- c.company_id = #{clue.companyId} and c.is_delete = #{clue.isDelete} and c.is_bo = 0
- and (c.incharger_id in
- (SELECT id from `user` WHERE department_id = (SELECT department_id from `user` WHERe id = #{userId}))
- or c.incharger_id is null)
- <if test="clue.inchargerId != null and clue.inchargerId != '' ">
- and c.incharger_id =#{clue.inchargerId}
- </if>
- <if test="clue.startTime != null and clue.endTime != null ">
- and c.create_time BETWEEN #{clue.startTime} and #{clue.endTime}
- </if>
- <if test="clue.clueName != null and clue.clueName != '' ">
- and c.clue_name LIKE CONCAT('%', #{clue.clueName}, '%')
- </if>
- <if test="clue.clueSourceId != null">
- and c.clue_source_id = #{clue.clueSourceId}
- </if>
- <if test="clue.phone != null and clue.phone != '' ">
- and c.phone LIKE CONCAT('%', #{clue.phone}, '%')
- </if>
- <if test="clue.customerLevelId != null and clue.customerLevelId != '' ">
- and c.customer_level_id = #{clue.customerLevelId}
- </if>
- <if test="clue.email != null and clue.email != '' ">
- and c.email LIKE CONCAT('%', #{clue.email}, '%')
- </if>
- <if test="clue.customerIndustryId != null">
- and c.customer_industry_id = #{clue.customerIndustryId}
- </if>
- ORDER BY
- <choose>
- <when test="isDesc == null">
- c.id DESC
- </when>
- <when test="isDesc == 0">
- sd.seq ASC, c.id DESC
- </when>
- <when test="isDesc == 1">
- sd.seq DESC, c.id DESC
- </when>
- <otherwise>
- c.id DESC
- </otherwise>
- </choose>
- limit #{clue.pageIndex},#{clue.pageFrom}
- </select>
- <select id="list2" resultType="com.management.platform.entity.Clue">
- select c.id,
- c.company_id,
- (select company_name from company where c.company_id = c.id) companyName,
- c.clue_name,
- c.clue_source_id,
- c.phone,
- c.email,
- c.customer_industry_id,
- c.customer_level_id,
- c.address,
- c.incharger_id,
- c.remark,
- c.is_delete,
- c.plate1,
- c.plate2,
- c.plate3,
- c.plate4,
- c.plate5,
- c.create_time,
- c.create_id,
- (select name from `user` where id = c.incharger_id) inchargerName,
- (select name from `user` where id = c.create_id) createName,
- (select name from sys_dict where c.clue_source_id = id and code = 'ClueSources') clueSourceValue,
- (select name from sys_dict where c.customer_industry_id = id and code = 'CustomIndustry') customerIndustryValue,
- (select name from sys_dict where c.customer_level_id = id and code = 'CustomLevel') customerLevelValue
- from clue c
- left join sys_dict sd on c.customer_level_id = sd.id
- where
- c.company_id = #{clue.companyId} and c.is_delete = #{clue.isDelete} and c.is_bo = 0
- and (c.incharger_id = #{userId} or c.incharger_id is null)
- <if test="clue.inchargerId != null and clue.inchargerId != '' ">
- and c.incharger_id =#{clue.inchargerId}
- </if>
- <if test="clue.startTime != null and clue.endTime != null ">
- and c.create_time BETWEEN #{clue.startTime} and #{clue.endTime}
- </if>
- <if test="clue.clueName != null and clue.clueName != '' ">
- and c.clue_name LIKE CONCAT('%', #{clue.clueName}, '%')
- </if>
- <if test="clue.phone != null and clue.phone != '' ">
- and c.phone LIKE CONCAT('%', #{clue.phone}, '%')
- </if>
- <if test="clue.customerLevelId != null and clue.customerLevelId != '' ">
- and c.customer_level_id = #{clue.customerLevelId}
- </if>
- <if test="clue.email != null and clue.email != '' ">
- and c.email LIKE CONCAT('%', #{clue.email}, '%')
- </if>
- <if test="clue.clueSourceId != null">
- and c.clue_source_id = #{clue.clueSourceId}
- </if>
- <if test="clue.customerIndustryId != null">
- and c.customer_industry_id = #{clue.customerIndustryId}
- </if>
- ORDER BY
- <choose>
- <when test="clue.isDesc == null ">
- c.id DESC
- </when>
- <when test="clue.isDesc == 0">
- sd.seq ASC, c.id DESC
- </when>
- <when test="clue.isDesc == 1">
- sd.seq DESC, c.id DESC
- </when>
- <otherwise>
- c.id DESC
- </otherwise>
- </choose>
- limit #{clue.pageIndex},#{clue.pageFrom}
- </select>
- <select id="getTotal" resultType="java.lang.Integer">
- select count(*)
- from clue c
- where
- company_id = #{companyId} and is_delete = #{isDelete} and is_bo = 0
- <if test="inchargerId != null and inchargerId != '' ">
- and incharger_id = #{inchargerId}
- </if>
- <if test="startTime != null and endTime != null ">
- and create_time BETWEEN #{startTime} and #{endTime}
- </if>
- <if test="clueName != null and clueName != '' ">
- and clue_name LIKE CONCAT('%', #{clueName}, '%')
- </if>
- <if test="phone != null and phone != '' ">
- and phone LIKE CONCAT('%', #{phone}, '%')
- </if>
- <if test="email != null and email != '' ">
- and email LIKE CONCAT('%', #{email}, '%')
- </if>
- <if test="customerLevelId != null and customerLevelId != '' ">
- and customer_level_id = #{customerLevelId}
- </if>
- <if test="clueSourceId != null">
- and clue_source_id = #{clueSourceId}
- </if>
- <if test="customerIndustryId != null">
- and customer_industry_id = #{customerIndustryId}
- </if>
- </select>
- <select id="getTotal1" resultType="java.lang.Integer">
- select
- COUNT(c.id)
- from clue c
- where
- c.company_id = #{clue.companyId} and c.is_delete = #{clue.isDelete} and c.is_bo = 0
- and c.incharger_id in
- (SELECT id from `user` WHERE department_id = (SELECT department_id from `user` WHERe id = #{userId}))
- and c.incharger_id is null
- <if test="clue.inchargerId != null and clue.inchargerId != '' ">
- and c.incharger_id =#{clue.inchargerId}
- </if>
- <if test="clue.startTime != null and clue.endTime != null ">
- and c.create_time BETWEEN #{clue.startTime} and #{clue.endTime}
- </if>
- <if test="clue.clueName != null and clue.clueName != '' ">
- and c.clue_name LIKE CONCAT('%', #{clue.clueName}, '%')
- </if>
- <if test="clue.phone != null and clue.phone != '' ">
- and c.phone LIKE CONCAT('%', #{clue.phone}, '%')
- </if>
- <if test="clue.email != null and clue.email != '' ">
- and c.email LIKE CONCAT('%', #{clue.email}, '%')
- </if>
- <if test="clue.clueSourceId != null">
- and c.clue_source_id = #{clue.clueSourceId}
- </if>
- <if test="clue.customerIndustryId != null">
- and c.customer_industry_id = #{clue.customerIndustryId}
- </if>
- <if test="clue.customerLevelId != null">
- and c.customerLevelId = #{clue.customerLevelId}
- </if>
- </select>
- <select id="getTotal2" resultType="java.lang.Integer">
- select
- count(c.id)
- from clue c
- where
- c.company_id = #{clue.companyId} and c.is_delete = #{clue.isDelete} and c.is_bo = 0
- and (c.incharger_id = #{userId} or c.incharger_id is null)
- <if test="clue.inchargerId != null and clue.inchargerId != '' ">
- and c.incharger_id =#{clue.inchargerId}
- </if>
- <if test="clue.startTime != null and clue.endTime != null ">
- and c.create_time BETWEEN #{clue.startTime} and #{clue.endTime}
- </if>
- <if test="clue.clueName != null and clue.clueName != '' ">
- and c.clue_name LIKE CONCAT('%', #{clue.clueName}, '%')
- </if>
- <if test="clue.phone != null and clue.phone != '' ">
- and c.phone LIKE CONCAT('%', #{clue.phone}, '%')
- </if>
- <if test="clue.customerLevelId != null and clue.customerLevelId != '' ">
- and c.customer_level_id = #{clue.customerLevelId}
- </if>
- <if test="clue.email != null and clue.email != '' ">
- and c.email LIKE CONCAT('%', #{clue.email}, '%')
- </if>
- <if test="clue.clueSourceId != null">
- and c.clue_source_id = #{clue.clueSourceId}
- </if>
- <if test="clue.customerIndustryId != null">
- and c.customer_industry_id = #{clue.customerIndustryId}
- </if>
- </select>
- <select id="getDataSummary" resultType="java.util.Map">
- SELECT COUNT(*) newNum,SUM(bo.clue_id is not null) as changeNum
- FROM clue c
- left join business_opportunity bo on c.id=bo.clue_id
- WHERE c.company_id=#{companyId} and c.is_delete=0
- <if test="startDate!=null and startDate!='' and endDate!=null and endDate!=''">
- and DATE_FORMAT(c.create_time,'%Y-%m-%d') BETWEEN #{startDate} AND #{endDate}
- </if>
- <if test="userId!=null and userId!=''">
- and c.incharger_id=#{userId}
- </if>
- <if test="list!=null and list.size()>0">
- and c.incharger_id in
- <foreach collection="list" separator="," open="(" close=")" item="item">
- #{item}
- </foreach>
- </if>
- </select>
- <select id="getAllList" resultType="com.management.platform.entity.Clue">
- select id,
- clue_name
- from clue
- where company_id =#{companyId}
- </select>
- <select id="getAlllist1" resultType="com.management.platform.entity.Clue">
- select id,
- clue_name
- from clue c
- left join sys_dict sd on c.customer_level_id = sd.id
- where
- c.company_id = #{companyId} and is_delete = #{isDelete}
- and (c.incharger_id in
- (SELECT id from `user` WHERE department_id = (SELECT department_id from `user` WHERe id = #{userId}))
- or c.incharger_id is null)
- </select>
- <select id="getAllList2" resultType="com.management.platform.entity.Clue">
- select c.id,
- c.clue_name
- from clue c
- left join sys_dict sd on c.customer_level_id = sd.id
- where
- c.company_id = #{companyId} and c.is_delete = #{isDelete}
- and (c.incharger_id = #{userId} or c.incharger_id is null)
- </select>
- <select id="listByPin" resultType="com.management.platform.entity.Clue">
- select c.id,
- c.company_id,
- c.clue_name,
- c.clue_source_id,
- c.phone,
- c.email,
- c.customer_industry_id,
- c.customer_level_id,
- c.address,
- c.incharger_id,
- c.remark,
- c.is_delete,
- c.plate1,
- c.plate2,
- c.plate3,
- c.plate4,
- c.plate5,
- c.create_time,
- c.create_id,
- (select company_name from company where c.company_id = id) companyName,
- (select name from `user` where id = c.incharger_id) inchargerName,
- (select name from `user` where id = c.create_id) createName,
- (select name from sys_dict where c.clue_source_id = id and code = 'ClueSources') clueSourceValue,
- (select name from sys_dict where c.customer_industry_id = id and code = 'CustomIndustry') customerIndustryValue,
- (select name from sys_dict where c.customer_level_id = id and code = 'CustomLevel') customerLevelValue
- from clue c
- left join sys_dict sd on c.customer_level_id = sd.id
- where
- c.company_id = #{companyId} and is_delete = #{isDelete} and c.is_bo = 0
- <if test="inchargerId != null and inchargerId != '' ">
- and c.incharger_id =#{inchargerId}
- </if>
- <if test="startTime != null and endTime != null ">
- and c.create_time BETWEEN #{startTime} and #{endTime}
- </if>
- <if test="clueName != null and clueName != '' ">
- and c.clue_name LIKE CONCAT('%', #{clueName}, '%')
- </if>
- <if test="phone != null and phone != '' ">
- and c.phone LIKE CONCAT('%', #{phone}, '%')
- </if>
- <if test="customerLevelId != null and customerLevelId != '' ">
- and c.customer_level_id = #{customerLevelId}
- </if>
- <if test="email != null and email != '' ">
- and c.email LIKE CONCAT('%', #{email}, '%')
- </if>
- <if test="clueSourceId != null">
- and c.clue_source_id = #{clueSourceId}
- </if>
- <if test="customerIndustryId != null">
- and c.customer_industry_id = #{customerIndustryId}
- </if>
- order by c.need_pin desc,c.pin_time desc
- <choose>
- <when test="isDesc == null ">
- ,c.id DESC
- </when>
- <when test="isDesc == 0">
- ,sd.seq ASC, c.id DESC
- </when>
- <when test="isDesc == 1">
- ,sd.seq DESC, c.id DESC
- </when>
- <otherwise>
- ,c.id DESC
- </otherwise>
- </choose>
- limit #{pageIndex},#{pageFrom}
- </select>
- <select id="list1ByPin" resultType="com.management.platform.entity.Clue">
- select c.id,
- c.company_id,
- (select company_name from company where company_id = c.id) companyName,
- c.clue_name,
- c.clue_source_id,
- c.phone,
- c.email,
- c.customer_industry_id,
- c.customer_level_id,
- c.address,
- c.incharger_id,
- c.remark,
- c.is_delete,
- c.plate1,
- c.plate2,
- c.plate3,
- c.plate4,
- c.plate5,
- c.create_time,
- c.create_id,
- (select name from `user` where id = c.incharger_id) inchargerName,
- (select name from `user` where id = c.create_id) createName,
- (select name from sys_dict where c.clue_source_id = id and code = 'ClueSources') clueSourceValue,
- (select name from sys_dict where c.customer_industry_id = id and code = 'CustomIndustry') customerIndustryValue,
- (select name from sys_dict where c.customer_level_id = id and code = 'CustomLevel') customerLevelValue
- from clue c
- left join sys_dict sd on c.customer_level_id = sd.id
- where
- c.company_id = #{clue.companyId} and c.is_delete = #{clue.isDelete} and c.is_bo = 0
- and (c.incharger_id in
- (SELECT id from `user` WHERE department_id = (SELECT department_id from `user` WHERe id = #{userId}))
- or c.incharger_id is null)
- <if test="clue.inchargerId != null and clue.inchargerId != '' ">
- and c.incharger_id =#{clue.inchargerId}
- </if>
- <if test="clue.startTime != null and clue.endTime != null ">
- and c.create_time BETWEEN #{clue.startTime} and #{clue.endTime}
- </if>
- <if test="clue.clueName != null and clue.clueName != '' ">
- and c.clue_name LIKE CONCAT('%', #{clue.clueName}, '%')
- </if>
- <if test="clue.clueSourceId != null">
- and c.clue_source_id = #{clue.clueSourceId}
- </if>
- <if test="clue.phone != null and clue.phone != '' ">
- and c.phone LIKE CONCAT('%', #{clue.phone}, '%')
- </if>
- <if test="clue.customerLevelId != null and clue.customerLevelId != '' ">
- and c.customer_level_id = #{clue.customerLevelId}
- </if>
- <if test="clue.email != null and clue.email != '' ">
- and c.email LIKE CONCAT('%', #{clue.email}, '%')
- </if>
- <if test="clue.customerIndustryId != null">
- and c.customer_industry_id = #{clue.customerIndustryId}
- </if>
- order by c.need_pin desc,c.pin_time desc
- <choose>
- <when test="isDesc == null">
- ,c.id DESC
- </when>
- <when test="isDesc == 0">
- ,sd.seq ASC, c.id DESC
- </when>
- <when test="isDesc == 1">
- ,sd.seq DESC, c.id DESC
- </when>
- <otherwise>
- ,c.id DESC
- </otherwise>
- </choose>
- limit #{clue.pageIndex},#{clue.pageFrom}
- </select>
- <select id="list2ByPin" resultType="com.management.platform.entity.Clue">
- select c.id,
- c.company_id,
- (select company_name from company where c.company_id = c.id) companyName,
- c.clue_name,
- c.clue_source_id,
- c.phone,
- c.email,
- c.customer_industry_id,
- c.customer_level_id,
- c.address,
- c.incharger_id,
- c.remark,
- c.is_delete,
- c.plate1,
- c.plate2,
- c.plate3,
- c.plate4,
- c.plate5,
- c.create_time,
- c.create_id,
- (select name from `user` where id = c.incharger_id) inchargerName,
- (select name from `user` where id = c.create_id) createName,
- (select name from sys_dict where c.clue_source_id = id and code = 'ClueSources') clueSourceValue,
- (select name from sys_dict where c.customer_industry_id = id and code = 'CustomIndustry') customerIndustryValue,
- (select name from sys_dict where c.customer_level_id = id and code = 'CustomLevel') customerLevelValue
- from clue c
- left join sys_dict sd on c.customer_level_id = sd.id
- where
- c.company_id = #{clue.companyId} and c.is_delete = #{clue.isDelete} and c.is_bo = 0
- and (c.incharger_id = #{userId} or c.incharger_id is null)
- <if test="clue.inchargerId != null and clue.inchargerId != '' ">
- and c.incharger_id =#{clue.inchargerId}
- </if>
- <if test="clue.startTime != null and clue.endTime != null ">
- and c.create_time BETWEEN #{clue.startTime} and #{clue.endTime}
- </if>
- <if test="clue.clueName != null and clue.clueName != '' ">
- and c.clue_name LIKE CONCAT('%', #{clue.clueName}, '%')
- </if>
- <if test="clue.phone != null and clue.phone != '' ">
- and c.phone LIKE CONCAT('%', #{clue.phone}, '%')
- </if>
- <if test="clue.customerLevelId != null and clue.customerLevelId != '' ">
- and c.customer_level_id = #{clue.customerLevelId}
- </if>
- <if test="clue.email != null and clue.email != '' ">
- and c.email LIKE CONCAT('%', #{clue.email}, '%')
- </if>
- <if test="clue.clueSourceId != null">
- and c.clue_source_id = #{clue.clueSourceId}
- </if>
- <if test="clue.customerIndustryId != null">
- and c.customer_industry_id = #{clue.customerIndustryId}
- </if>
- order by c.need_pin desc,c.pin_time desc
- <choose>
- <when test="clue.isDesc == null ">
- ,c.id DESC
- </when>
- <when test="clue.isDesc == 0">
- ,sd.seq ASC, c.id DESC
- </when>
- <when test="clue.isDesc == 1">
- ,sd.seq DESC, c.id DESC
- </when>
- <otherwise>
- ,c.id DESC
- </otherwise>
- </choose>
- limit #{clue.pageIndex},#{clue.pageFrom}
- </select>
- </mapper>
|