|
@@ -70,6 +70,18 @@ public class XcryController extends BaseRestController {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ @GetMapping("/listByCommon")
|
|
|
+ public Object listByCommon() {
|
|
|
+ try {
|
|
|
+ logger.info("/api/xcry/listByCommon 接口调用~~~");
|
|
|
+ return result(xcryService.listByCommon());
|
|
|
+ } catch (Exception ex) {
|
|
|
+ ex.printStackTrace();
|
|
|
+ logger.warn("/api/xcry/listByCommon 接口异常 -> " + ex.getMessage());
|
|
|
+ return error(ex.getMessage(), BaseRestController.ErrorCode.DEFAULT);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
@GetMapping("/delete")
|
|
|
public Object delete(@RequestParam("id") String id) {
|
|
|
try {
|