|
@@ -196,7 +196,7 @@ public class TaPointsRecordsController extends BaseController {
|
196
|
196
|
@RequestMapping(value="/admin/taPointsRecords/{id}",method= RequestMethod.GET)
|
197
|
197
|
public ResponseBean CustomerPointsRecordsList(@RequestParam(value ="pageNum",defaultValue = "1") Integer pageNum,
|
198
|
198
|
@RequestParam(value ="pageSize",defaultValue = "10") Integer pageSize,
|
199
|
|
- String id){
|
|
199
|
+ @PathVariable(value = "id") String id){
|
200
|
200
|
ResponseBean responseBean = new ResponseBean();
|
201
|
201
|
try {
|
202
|
202
|
IPage<TaPointsRecords> pg = new Page<>(pageNum, pageSize);
|