新增获取场站列表
This commit is contained in:
parent
75ec043ebd
commit
133c95d793
@ -71,7 +71,7 @@ public class WorkStationController extends BaseController {
|
||||
|
||||
|
||||
@GetMapping("/getStationPage")
|
||||
public TableDataInfo getStationList(String tenantId) {
|
||||
public TableDataInfo getStationPage(String tenantId) {
|
||||
|
||||
startPage();
|
||||
Map<String, Object> params = new HashMap<>();
|
||||
@ -82,6 +82,17 @@ public class WorkStationController extends BaseController {
|
||||
}
|
||||
|
||||
|
||||
@GetMapping("/getStationList")
|
||||
public R getStationList(HttpServletRequest request) {
|
||||
LoginUser logUser = logUserUtils.getLogUser(request);
|
||||
Map<String, Object> params = new HashMap<>();
|
||||
params.put("tenantId", logUser.getTenantId());
|
||||
params.put("delFlag", 0);
|
||||
|
||||
return R.ok(stationService.getStationList(params));
|
||||
}
|
||||
|
||||
|
||||
@GetMapping("/getTree")
|
||||
public TableDataInfo getTree(
|
||||
HttpServletRequest request,
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user