Commit ab42ea92 by 徐高华

Merge branch 'feature/xgh/zq12' into 'master'

区间无销售线索

See merge request !2438
parents e6e1f083 8d043d7c
......@@ -61,7 +61,10 @@ public class PotentialCustomerController {
*/
@RequestMapping(path = "/list")
public RestResponse<Page<PotentialCustomerVO>> queryPotentialCustomerList(@RequestBody PotentialCustomerQO potentialCustomerQO) {
if(StringUtils.isBlank(potentialCustomerQO.getStoreId())) {
log.info("区经");
return RestResponse.successResult();
}
PotentialCustomerQDTO searchQDTO = new PotentialCustomerQDTO();
BeanUtils.copyProperties(potentialCustomerQO, searchQDTO);
ServiceResponse<Page<PotentialCustomerDTO>> serviceResponse =
......
......@@ -78,4 +78,6 @@ public class PotentialCustomerQO extends BasePageInfo {
*/
private Boolean withData;
private String storeId ;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment