|
|
|
@ -29,8 +29,6 @@ public class CustomerImpressionController {
|
|
|
|
|
@RequestMapping(value = "/{client_id}/{customer_id}", method = RequestMethod.GET)
|
|
|
|
|
@ResponseBody
|
|
|
|
|
public JSONObject checkPointsAfterPay(@PathVariable int client_id,@PathVariable String customer_id) {
|
|
|
|
|
customerImpression.generate(9);
|
|
|
|
|
// return customerImpression.findOne(client_id,customer_id);
|
|
|
|
|
return null;
|
|
|
|
|
return customerImpression.findOne(client_id,customer_id);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|