Browse Source

Merge remote-tracking branch 'origin/test' into patch

anderx 7 years ago
parent
commit
1758be7ea5

+ 4 - 2
src/main/java/com/goafanti/common/dao/UserBusinessMapper.java

@@ -76,11 +76,13 @@ public interface UserBusinessMapper {
 	 */
 	int updateByPrimaryKey(UserBusiness record);
 
-	List<BusinessListBo> findBusinessGlossory();
+	List<BusinessListBo> selectBusinessGlossory();
 
 	int judgeBusiness(@Param("uid")String uid,@Param("businessProjectId")String businessProjectId,@Param("aid")String aid);
 
-	List<BusinessListBo> findBusinessByUAid(@Param("uid")String uid, @Param("aid")String aid);
+	List<BusinessListBo> selectBusinessByUAid(@Param("uid")String uid, @Param("aid")String aid);
+	
+	List<BusinessListBo> selectLockedBusinessByUAid(@Param("uid")String uid, @Param("aid")String aid);
 
 	BussinessFollowBo findBusinessDetail(@Param("businessId")String businessId);
 

+ 36 - 5
src/main/java/com/goafanti/common/mapper/UserBusinessMapper.xml

@@ -349,7 +349,7 @@
     where id = #{id,jdbcType=VARCHAR}
   </update>
   
-  <select id="findBusinessGlossory" resultType="com.goafanti.customer.bo.BusinessListBo">
+  <select id="selectBusinessGlossory" resultType="com.goafanti.customer.bo.BusinessListBo">
   	select id as businessGlossoryId,name as businessName from business_glossory
   </select>
   
@@ -364,7 +364,7 @@
   	 </if>
   </select>
  
-  <select id="findBusinessByUAid" parameterType="java.lang.String" resultType="com.goafanti.customer.bo.BusinessListBo">
+  <select id="selectBusinessByUAid" parameterType="java.lang.String" resultType="com.goafanti.customer.bo.BusinessListBo">
 	select 
 		a.id as businessId,
 		a.uid,
@@ -377,7 +377,38 @@
 	from user_business a
 	left join business_project b on a.business_project_id = b.id
 	left join business_varieties c on b.cid = c.id
-	where  uid = #{uid,jdbcType=VARCHAR} and aid = #{aid,jdbcType=VARCHAR} and  customer_status != 6
+	where  a.uid = #{uid,jdbcType=VARCHAR} and a.aid = #{aid,jdbcType=VARCHAR} and  a.customer_status != 6
+  </select>
+  
+  <select id="selectLockedBusinessByUAid" parameterType="java.lang.String" resultType="com.goafanti.customer.bo.BusinessListBo">
+	select 
+		x.id as businessId,
+		x.uid,
+		x.follow_situation as followSituation,
+		x.customer_status as customerStatus,
+		y.business_project_id as businessProjectId,
+		y.bname as businessProjectName,
+		y.cname as businessvarietiesName
+	from(
+		select 
+			id,
+			uid,
+			business_project_id,
+			follow_situation,
+			customer_status,
+			remarks
+		from user_business
+		where uid = #{uid} and aid = #{aid} and customer_status != 6
+	)x right join(
+		select 
+			a.business_project_id,
+			b.bname,
+			c.cname
+		from user_lock_release a
+		left join business_project b on a.business_project_id = b.id
+		left join business_varieties c on b.cid = c.id
+		where a.uid = #{uid} and a.aid = #{aid} and a.type = 1 and a.status = 0	
+	)y on x.business_project_id = y.business_project_id
   </select>
   
   <select id="selectFollowCountByUAid" parameterType="java.lang.String" resultType="java.lang.Integer">
@@ -389,7 +420,7 @@
 	select
 		a.id as businessId,
 		a.uid,
-		a.business_glossory_id as businessGlossoryId,
+		a.business_project_id as businessProjectId,
 		a.create_time as createTime,
 		a.follow_situation as followSituation,
 		a.customer_status as customerStatus,
@@ -408,7 +439,7 @@
 		a.customer_status as customerStatus,
 		a.follow_situation as followSituation,
 		a.remarks,
-		a.business_glossory_id as businessGlossoryId,
+		a.business_project_id as businessProjectId,
 		b.id as followId,
 		b.create_time as createTime,
 		b.result,

+ 26 - 43
src/main/java/com/goafanti/common/mapper/UserMapperExt.xml

@@ -103,9 +103,6 @@
 		left join district_glossory dg3 on b.area = dg3.id
 		left join industry_category c on b.industry = c.id
 		left join admin d on t0.aid = d.id where 1=1
-		<if test="aid != null and aid !=''">
-			and t0.aid = #{aid,jdbcType=VARCHAR}
-		</if>
 		<if test="name != null and name != ''">
 			and t0.identify_name like concat('%',#{name},'%')
 		</if>
@@ -134,9 +131,6 @@
 		from 
 			(select id,aid,type,share_type,transfer_time,identify_name,society_tag from user where aid = #{aid} and type = 0 and share_type = 0 and status != 1)t0
 		left join user_identity b on t0.id = b.uid where 1=1
-		<if test="aid != null and aid !=''">
-			and t0.aid = #{aid,jdbcType=VARCHAR}
-		</if>
 		<if test="name != null and name != ''">
 			and t0.identify_name like concat('%',#{name},'%')
 		</if>	
@@ -249,7 +243,7 @@
 			c.name as industry,
 			d.name as adminName
 		from
-			(select buyer_id,salesman_id,max(sign_time) as last_sign_time from t_order where salesman_id = #{aid} and delete_sign != 1 group by buyer_id)t0
+			(select buyer_id,salesman_id,max(sign_time) as last_sign_time from t_order where salesman_id = #{aid} and order_status = 3 and delete_sign != 1 group by buyer_id)t0
 			<!-- (select uid,max(lock_time) from user_lock_release where aid = #{aid} and type = 1 and status = 0 group by uid)t0 -->
 		left join 
 			(select uid,aid,max(create_time) as last_follow_time from user_follow where aid = #{aid} group by uid)t1
@@ -262,10 +256,7 @@
 		left join district_glossory dg2 on b.city = dg2.id
 		left join district_glossory dg3 on b.area = dg3.id
 		left join industry_category c on b.industry = c.id
-		left join admin d on t2.aid = d.id
-		<if test="aid != null and aid !=''">
-			and t2.aid = #{aid,jdbcType=VARCHAR}
-		</if>
+		left join admin d on t2.aid = d.id where 1 = 1
 		<if test="name != null and name != ''">
 			and t2.identify_name like concat('%',#{name},'%')
 		</if>
@@ -295,15 +286,12 @@
 		select 
 			count(0)
 		from
-			(select buyer_id,salesman_id,max(sign_time) as last_sign_time from t_order where salesman_id = #{aid} and delete_sign != 1 group by buyer_id)t0
+			(select buyer_id,salesman_id,max(sign_time) as last_sign_time from t_order where salesman_id = #{aid} and order_status = 3 and delete_sign != 1 group by buyer_id)t0
 			<!-- (select uid,max(lock_time) from user_lock_release where aid = #{aid} and type = 1 and status = 0 group by uid)t0 -->
 		inner join
 			(select id,aid,share_type,society_tag,identify_name,transfer_time from user where type = 0 and status != 1)t2
 		on t0.buyer_id = t2.id
-		left join user_identity b on t0.buyer_id = b.uid
-		<if test="aid != null and aid !=''">
-			and t2.aid = #{aid,jdbcType=VARCHAR}
-		</if>
+		left join user_identity b on t0.buyer_id = b.uid where 1 = 1
 		<if test="name != null and name != ''">
 			and t2.identify_name like concat('%',#{name},'%')
 		</if>
@@ -581,7 +569,7 @@
 			c.name as industry,
 			d.name as adminName
 		from
-			(select buyer_id,salesman_id,max(sign_time) as last_sign_time from t_order where salesman_id = #{aid} and delete_sign != 1 group by buyer_id)t0
+			(select buyer_id,salesman_id,max(sign_time) as last_sign_time from t_order where salesman_id = #{aid} and order_status = 3 and delete_sign != 1 group by buyer_id)t0
 		left join 
 			(select uid,aid,max(create_time) as last_follow_time from user_follow where aid = #{aid} group by uid)t1
 		on t0.buyer_id = t1.uid
@@ -593,10 +581,7 @@
 		left join district_glossory dg2 on b.location_city = dg2.id
 		left join district_glossory dg3 on b.location_area = dg3.id
 		left join industry_category c on b.industry = c.id
-		left join admin d on t2.aid = d.id where 1=1
-		<if test="aid != null and aid !=''">
-			and t2.aid = #{aid,jdbcType=VARCHAR}
-		</if>
+		left join admin d on t2.aid = d.id where 1 = 1
 		<if test="name != null and name != ''">
 			and t2.identify_name like concat('%',#{name},'%')
 		</if>
@@ -628,14 +613,11 @@
 		select 
 			count(0)
 		from
-			(select buyer_id,salesman_id,max(sign_time) as last_sign_time from t_order where salesman_id = #{aid} and delete_sign != 1 group by buyer_id)t0
+			(select buyer_id,salesman_id,max(sign_time) as last_sign_time from t_order where salesman_id = #{aid} and order_status = 3 and delete_sign != 1 group by buyer_id)t0
 		inner join
 			(select id,aid,share_type,society_tag,identify_name,transfer_time from user where type = 1)t2
 		on t0.buyer_id = t2.id
-		left join organization_identity b on t0.buyer_id = b.uid where 1=1
-		<if test="aid != null and aid !=''">
-			and t2.aid = #{aid,jdbcType=VARCHAR}
-		</if>
+		left join organization_identity b on t0.buyer_id = b.uid where 1 = 1
 		<if test="name != null and name != ''">
 			and t2.identify_name like concat('%',#{name},'%')
 		</if>
@@ -754,6 +736,7 @@
 	<select id="selectFollowHistoryList" resultType="com.goafanti.customer.bo.FollowListBo">
 		select 
 			a.id as followId,
+			a.aid,
 			a.create_time as followTime,
 			a.contact_type as contactType,
 			a.result, 
@@ -792,7 +775,7 @@
 		left join user b on a.uid = b.id 
 		left join organization_contact_book c on a.ocb_id = c.id
 		left join admin d on a.aid = d.id
-		<if test="businessGlossoryId != null and businessGlossoryId != ''"><!--  客户甲项目A所有的跟进记录 -->
+		<if test="businessProjectId != null and businessProjectId != ''"><!--  客户甲项目A所有的跟进记录 -->
 			inner join user_follow_business e on a.id = e.follow_id
 		</if>
 		where a.effective = 0
@@ -802,8 +785,8 @@
 		<if test="aid != null and aid != ''">
 			and a.aid = #{aid,jdbcType=VARCHAR}
 		</if>
-		<if test="businessGlossoryId != null and businessGlossoryId != ''"><!--  客户甲项目A所有的跟进记录 -->
-			and e.business_glossory_id = #{businessGlossoryId,jdbcType=VARCHAR}
+		<if test="businessProjectId != null and businessProjectId != ''"><!--  客户甲项目A所有的跟进记录 -->
+			and e.business_project_id = #{businessProjectId,jdbcType=VARCHAR}
 		</if>
 	</select>
 	
@@ -1063,7 +1046,7 @@
 	from
 		user_business a inner join user b on
 		a.uid = b.id left join business_glossory c on
-		a.business_glossory_id = c.id left join admin d on
+		a.business_project_id = c.id left join admin d on
 		a.aid = d.id
 	where 1 = 1
 	<if test="aid != null and aid != ''">
@@ -1072,8 +1055,8 @@
 	<if test="uid != null and uid !=''">
 		and a.uid = #{uid,jdbcType=VARCHAR}
 	</if>
-	<if test="businessGlossoryId !=null and businessGlossoryId != ''">
-		and a.business_glossory_id = #{businessGlossoryId,jdbcType=VARCHAR}
+	<if test="businessProjectId !=null and businessProjectId != ''">
+		and a.business_project_id = #{businessProjectId,jdbcType=VARCHAR}
 	</if>
 	<if test="identifyName != null and identifyName != ''">
 		and b.identify_name like concat('%', #{identifyName},'%')
@@ -1105,7 +1088,7 @@
   	from
 		user_business a inner join user b on
 		a.uid = b.id left join business_glossory c on
-		a.business_glossory_id = c.id left join admin d on
+		a.business_project_id = c.id left join admin d on
 		a.aid = d.id
 	where 1 = 1
 	<if test="aid != null and aid != ''">
@@ -1114,8 +1097,8 @@
 	<if test="uid != null and uid !=''">
 		and a.uid = #{uid,jdbcType=VARCHAR}
 	</if>
-	<if test="businessGlossoryId !=null and businessGlossoryId != ''">
-		and a.business_glossory_id = #{businessGlossoryId,jdbcType=VARCHAR}
+	<if test="businessProjectId !=null and businessProjectId != ''">
+		and a.business_project_id = #{businessProjectId,jdbcType=VARCHAR}
 	</if>
 	<if test="identifyName != null and identifyName != ''">
 		and b.identify_name like concat('%', #{identifyName},'%')
@@ -1150,9 +1133,9 @@
 	from
 		user_business a inner join user b on
 		a.uid = b.id left join business_glossory c on
-		a.business_glossory_id = c.id left join admin d on
+		a.business_project_id = c.id left join admin d on
 		a.aid = d.id
-		LEFT JOIN department_management dm on dm.id = d.department_id 	
+		left join department_management dm on dm.id = d.department_id 	
 	where 1 = 1
 	<if test="aid != null and aid != ''">
 		and (b.aid = #{aid,jdbcType=VARCHAR} or d.department_id=(select department_id from admin where id=#{aid,jdbcType=VARCHAR}))
@@ -1160,8 +1143,8 @@
 	<if test="uid != null and uid !=''">
 		and a.uid = #{uid,jdbcType=VARCHAR}
 	</if>
-	<if test="businessGlossoryId !=null and businessGlossoryId != ''">
-		and a.business_glossory_id = #{businessGlossoryId,jdbcType=VARCHAR}
+	<if test="businessProjectId !=null and businessProjectId != ''">
+		and a.business_project_id = #{businessProjectId,jdbcType=VARCHAR}
 	</if>
 	<if test="identifyName != null and identifyName != ''">
 		and b.identify_name like concat('%', #{identifyName},'%')
@@ -1193,9 +1176,9 @@
   	from
 		user_business a inner join user b on
 		a.uid = b.id left join business_glossory c on
-		a.business_glossory_id = c.id left join admin d on
+		a.business_project_id = c.id left join admin d on
 		a.aid = d.id
-		LEFT JOIN department_management dm on dm.id = d.department_id 	
+		left join department_management dm on dm.id = d.department_id 	
 	where 1 = 1
 	<if test="aid != null and aid != ''">
 		and (b.aid = #{aid,jdbcType=VARCHAR} or d.department_id=(select department_id from admin where id=#{aid,jdbcType=VARCHAR}))
@@ -1203,8 +1186,8 @@
 	<if test="uid != null and uid !=''">
 		and a.uid = #{uid,jdbcType=VARCHAR}
 	</if>
-	<if test="businessGlossoryId !=null and businessGlossoryId != ''">
-		and a.business_glossory_id = #{businessGlossoryId,jdbcType=VARCHAR}
+	<if test="businessProjectId !=null and businessProjectId != ''">
+		and a.business_project_id = #{businessProjectId,jdbcType=VARCHAR}
 	</if>
 	<if test="identifyName != null and identifyName != ''">
 		and b.identify_name like concat('%', #{identifyName},'%')

+ 17 - 0
src/main/java/com/goafanti/customer/bo/FollowListBo.java

@@ -4,6 +4,9 @@ public class FollowListBo {
 	/** 跟进记录ID **/
 	private String followId;
 	
+	/** 管理员ID **/
+	private String aid;
+	
 	/** 跟进时间  **/
 	private String followTime;
 	
@@ -34,12 +37,20 @@ public class FollowListBo {
 	/** 客户状态 **/
 	private String customerStatus;
 	
+	/** 是否拜访只读 **/
+	private Integer readOnly;
 	public String getFollowId() {
 		return followId;
 	}
 	public void setFollowId(String followId) {
 		this.followId = followId;
 	}
+	public String getAid() {
+		return aid;
+	}
+	public void setAid(String aid) {
+		this.aid = aid;
+	}
 	public String getFollowTime() {
 		return followTime;
 	}
@@ -100,4 +111,10 @@ public class FollowListBo {
 	public void setCustomerStatus(String customerStatus) {
 		this.customerStatus = customerStatus;
 	}
+	public Integer getReadOnly() {
+		return readOnly;
+	}
+	public void setReadOnly(Integer readOnly) {
+		this.readOnly = readOnly;
+	}
 }

+ 22 - 6
src/main/java/com/goafanti/customer/controller/AdminCustomerApiController.java

@@ -131,7 +131,6 @@ public class AdminCustomerApiController extends BaseApiController{
 	@RequestMapping(value = "/listAllManageOrganizationCustomer" , method = RequestMethod.POST)
 	public Result listAllManageOrganizationCustomer(CustomerListIn cli,Integer pageNo, Integer pageSize){
 		Result res = new Result();
-		cli.setAid(TokenManager.getAdminId());
 		res.setData(customerService.listAllManageOrganizationCustomer(cli, pageNo, pageSize));
 		return res;
 	}
@@ -140,7 +139,6 @@ public class AdminCustomerApiController extends BaseApiController{
 	@RequestMapping(value = "/listSignOrganizationCustomer", method = RequestMethod.POST)
 	public Result listSignOrganizationCustomer(CustomerListIn cli,Integer pageNo, Integer pageSize){
 		Result res = new Result();
-		cli.setAid(TokenManager.getAdminId());
 		res.setData(customerService.listSignOrganizationCustomer(cli, pageNo, pageSize));
 		return res;
 	}
@@ -149,7 +147,6 @@ public class AdminCustomerApiController extends BaseApiController{
 	@RequestMapping(value = "/listSignPersonalCustomer", method = RequestMethod.POST)
 	public Result listSignPersonalCustomer(CustomerListIn cli,Integer pageNo, Integer pageSize){
 		Result res = new Result();
-		cli.setAid(TokenManager.getAdminId());
 		res.setData(customerService.listSignPersonalCustomer(cli, pageNo, pageSize));
 		return res;
 	}
@@ -272,9 +269,9 @@ public class AdminCustomerApiController extends BaseApiController{
 		return res;
 	}
 	
-	/** 进入添加拜访记录 **/
-	@RequestMapping(value = "/toAddFollow", method = RequestMethod.GET)
-	public Result toAddFollow(String uid){
+	/** 针对已作拜访的业务作跟进 **/
+	@RequestMapping(value = "/toAddFollowOnHistory", method = RequestMethod.GET)
+	public Result toAddFollowOnHistory(String uid){
 		Result res =  new Result();
 		if(StringUtils.isBlank(uid)){
 			 res.getError().add(buildError(ErrorConstants.PARAM_EMPTY_ERROR,""));
@@ -291,6 +288,25 @@ public class AdminCustomerApiController extends BaseApiController{
 		return res;
 	}
 	
+	/** 针对已锁定的业务作跟进 **/
+	@RequestMapping(value = "/toAddFollowOnLock", method = RequestMethod.GET)
+	public Result toAddFollowOnLock(String uid){
+		Result res =  new Result();
+		if(StringUtils.isBlank(uid)){
+			 res.getError().add(buildError(ErrorConstants.PARAM_EMPTY_ERROR,""));
+			 return res;
+		}
+		User user = customerService.findUserAccountDetail(uid);
+		FollowBusinessBo fbb = new FollowBusinessBo();
+		SimpleDateFormat format = new SimpleDateFormat(AFTConstants.YYYYMMDDHHMMSS);
+		fbb.setFollowTime(format.format(new Date()));
+		fbb.setIdentifyName(user.getIdentifyName());
+		fbb.setUid(uid);
+		fbb.setUserBusinessList(customerService.findLockedBusinessByUAid(uid, TokenManager.getAdminId()));
+		res.setData(fbb);
+		return res;
+	}
+	
 	/** 添加拜访记录 
 	 * @throws ParseException 
 	 * @throws Exception **/

+ 8 - 0
src/main/java/com/goafanti/customer/service/CustomerService.java

@@ -336,6 +336,14 @@ public interface CustomerService {
 	 * @return
 	 */
 	List<BusinessListBo> findBusinessByUAid(String uid,String aid);
+	
+	/**
+	 * 查询锁定的业务列表
+	 * @param uid
+	 * @param aid
+	 * @return
+	 */
+	List<BusinessListBo> findLockedBusinessByUAid(String uid,String aid);
 
 	/**
 	 * 查看业务意向详情

+ 21 - 5
src/main/java/com/goafanti/customer/service/impl/CustomerServiceImpl.java

@@ -170,6 +170,7 @@ public class CustomerServiceImpl  extends BaseMybatisDao<UserMapper> implements
 	public Pagination<CustomerListOut> listAllManageOrganizationCustomer(CustomerListIn cli, Integer pageNo,Integer pageSize) {
 		cli.setType(AFTConstants.USER_TYPE_ORGANIZATION);
 		cli.setShareType(String.valueOf(AFTConstants.USER_SHARE_PRIVATE));
+		cli.setAid(TokenManager.getAdminId());
 		Map<String,Object> params = disposeParams(cli);
 		@SuppressWarnings("unchecked")
 		Pagination<CustomerListOut> list = (Pagination<CustomerListOut>) findPage("selectManageOrganizationCustomerList","selectManageOrganizationCustomerCount",params,pageNo,pageSize);
@@ -328,7 +329,17 @@ public class CustomerServiceImpl  extends BaseMybatisDao<UserMapper> implements
 		Map<String, Object> params = new HashMap<String, Object>();
 		if(StringUtils.isNotBlank(uid))params.put("uid", uid);
 		if(StringUtils.isNotBlank(businessProjectId)) params.put("businessProjectId", businessProjectId);
-		return (Pagination<FollowListBo>)findPage("selectFollowHistoryList","selectFollowHistoryCount",params, pageNo, pageSize);
+		Pagination<FollowListBo> page = (Pagination<FollowListBo>)findPage("selectFollowHistoryList","selectFollowHistoryCount",params, pageNo, pageSize);
+		List<FollowListBo> list = (List<FollowListBo>)page.getList();
+		for(FollowListBo bo : list){
+			if(bo.getAid().equals(TokenManager.getAdminId())){
+				bo.setReadOnly(AFTConstants.NO);
+			}else{
+				bo.setReadOnly(AFTConstants.YES);
+			} 
+		}
+		page.setList(list);
+		return page;
 	}
 
 	@Override
@@ -344,7 +355,6 @@ public class CustomerServiceImpl  extends BaseMybatisDao<UserMapper> implements
 
 	@Override
 	public List<OrganizationContactBook> findCustomerContacts(String uid) {
-		
 		return userMapper.findCustomerContacts(uid,TokenManager.getAdminId());
 	}
 
@@ -819,7 +829,7 @@ public class CustomerServiceImpl  extends BaseMybatisDao<UserMapper> implements
 
 	@Override
 	public List<BusinessListBo> findBusinessGlossory() {
-		return userBusinessMapper.findBusinessGlossory();
+		return userBusinessMapper.selectBusinessGlossory();
 	}
 
 	@Override
@@ -870,8 +880,12 @@ public class CustomerServiceImpl  extends BaseMybatisDao<UserMapper> implements
 
 	@Override
 	public List<BusinessListBo> findBusinessByUAid(String uid, String aid) {
-		
-		return userBusinessMapper.findBusinessByUAid(uid,aid);
+		return userBusinessMapper.selectBusinessByUAid(uid,aid);
+	}
+
+	@Override
+	public List<BusinessListBo> findLockedBusinessByUAid(String uid, String aid) {
+		return userBusinessMapper.selectLockedBusinessByUAid(uid,aid);
 	}
 
 	@Override
@@ -1083,6 +1097,7 @@ public class CustomerServiceImpl  extends BaseMybatisDao<UserMapper> implements
 	@Override
 	public Pagination<CustomerListOut> listSignOrganizationCustomer(CustomerListIn cli, Integer pageNo,
 			Integer pageSize) {
+		cli.setAid(TokenManager.getAdminId());
 		Map<String,Object> params = disposeParams(cli);
 		Pagination<CustomerListOut> list = (Pagination<CustomerListOut>) findPage("selectSignOrganizationCustomerList","selectSignOrganizationCustomerCount",params,pageNo,pageSize);
 		return list;
@@ -1092,6 +1107,7 @@ public class CustomerServiceImpl  extends BaseMybatisDao<UserMapper> implements
 	@Override
 	public Pagination<CustomerListOut> listSignPersonalCustomer(CustomerListIn cli, Integer pageNo,
 			Integer pageSize) {
+		cli.setAid(TokenManager.getAdminId());
 		Map<String,Object> params = disposeParams(cli);
 		Pagination<CustomerListOut> list = (Pagination<CustomerListOut>) findPage("selectSignPersonalCustomerList","selectSignPersonalCustomerCount",params,pageNo,pageSize);
 		return list;