Commit 8d043d7c by 徐高华

区间无销售线索

parent f4e59cc5
......@@ -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