|
@@ -0,0 +1,25 @@
|
|
|
|
+package com.ygj.yuemum.controller.admin;
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+import com.alibaba.fastjson.JSONObject;
|
|
|
|
+import com.ygj.yuemum.service.admin.JlServiceUserLogService;
|
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
|
+import org.springframework.web.bind.annotation.GetMapping;
|
|
|
|
+import org.springframework.web.bind.annotation.RequestParam;
|
|
|
|
+import org.springframework.web.bind.annotation.RestController;
|
|
|
|
+
|
|
|
|
+import java.util.Map;
|
|
|
|
+
|
|
|
|
+@RestController
|
|
|
|
+public class JlServiceUserLogController {
|
|
|
|
+
|
|
|
|
+ @Autowired
|
|
|
|
+ private JlServiceUserLogService jlServiceUserLogService;
|
|
|
|
+
|
|
|
|
+ @GetMapping("/getJlServiceUserLog")
|
|
|
|
+ public String getJlServiceUserLog(@RequestParam("page") Integer page,@RequestParam("limit") Integer limit,@RequestParam("js_sucode") Integer js_sucode) {
|
|
|
|
+ Map<String, Object> jlServiceUserLog= jlServiceUserLogService.getJlServiceUserLog(page,limit,js_sucode);
|
|
|
|
+ String jso = JSONObject.toJSONString(jlServiceUserLog);
|
|
|
|
+ return jso;
|
|
|
|
+ }
|
|
|
|
+}
|