|
|
|
@ -21,14 +21,14 @@ public class CustomerImpressionController {
|
|
|
|
|
|
|
|
|
|
@RequestMapping(value = "/list", method = RequestMethod.GET)
|
|
|
|
|
@ResponseBody
|
|
|
|
|
public JSONObject checkPointsAfterPay(CustomerImpressionQuery customerImpressionQuery) {
|
|
|
|
|
public JSONObject list(CustomerImpressionQuery customerImpressionQuery) {
|
|
|
|
|
return customerImpression.listPageble(customerImpressionQuery);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@RequestMapping(value = "/{client_id}/{customer_id}", method = RequestMethod.GET)
|
|
|
|
|
@ResponseBody
|
|
|
|
|
public JSONObject checkPointsAfterPay(@PathVariable int client_id,@PathVariable String customer_id) {
|
|
|
|
|
public JSONObject find(@PathVariable int client_id,@PathVariable String customer_id) {
|
|
|
|
|
return customerImpression.findOne(client_id,customer_id);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|