|
@@ -5,6 +5,7 @@ import com.fdkankan.manage.common.ResultData;
|
|
|
import com.fdkankan.manage.entity.JyPlatform;
|
|
|
import com.fdkankan.manage.entity.JyUser;
|
|
|
import com.fdkankan.manage.service.IJyPlatformService;
|
|
|
+import com.fdkankan.manage.service.IJyPlatformUserWaitService;
|
|
|
import com.fdkankan.manage.service.IJyUserService;
|
|
|
import com.fdkankan.manage.vo.request.JyPlatformParam;
|
|
|
import com.fdkankan.manage.vo.request.UserParam;
|
|
@@ -27,23 +28,12 @@ public class IndexController {
|
|
|
|
|
|
@Autowired
|
|
|
IJyPlatformService jyPlatformService;
|
|
|
- @Autowired
|
|
|
- IJyUserService jyUserService;
|
|
|
|
|
|
@GetMapping("/addressKey/{address}")
|
|
|
public ResultData getByAddress(@PathVariable String address){
|
|
|
return ResultData.ok(jyPlatformService.getByAddress(address));
|
|
|
}
|
|
|
|
|
|
- @GetMapping("test")
|
|
|
- public ResultData test(){
|
|
|
- UserParam userParam = new UserParam();
|
|
|
- userParam.setRyId("11");
|
|
|
- userParam.setRyNo("122");
|
|
|
- List<JyUser> jyUserList = jyUserService.getByAddParam(userParam);
|
|
|
-
|
|
|
- return ResultData.ok(jyUserList);
|
|
|
- }
|
|
|
|
|
|
}
|
|
|
|