|
@@ -20,6 +20,7 @@ import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
|
|
|
+import org.jeecg.modules.admin_aircraft_position.service.IAdminAircraftPositionService;
|
|
|
import org.jeecgframework.poi.excel.ExcelImportUtil;
|
|
|
import org.jeecgframework.poi.excel.def.NormalExcelConstants;
|
|
|
import org.jeecgframework.poi.excel.entity.ExportParams;
|
|
@@ -46,6 +47,9 @@ public class AdminPlatformController extends JeecgController<AdminPlatform, IAdm
|
|
|
@Autowired
|
|
|
private IAdminPlatformService adminPlatformService;
|
|
|
|
|
|
+ @Autowired
|
|
|
+ private IAdminAircraftPositionService adminAircraftPositionService;
|
|
|
+
|
|
|
@PostMapping(value = "/one")
|
|
|
public Result<AdminPlatform> queryPageList() {
|
|
|
List<AdminPlatform> list = adminPlatformService.list();
|
|
@@ -63,6 +67,12 @@ public class AdminPlatformController extends JeecgController<AdminPlatform, IAdm
|
|
|
@RequestMapping(value = "/edit", method = {RequestMethod.PUT,RequestMethod.POST})
|
|
|
public Result<String> edit(@RequestBody AdminPlatform PlatformParameter) {
|
|
|
adminPlatformService.updateById(PlatformParameter);
|
|
|
+ //同时更新机位到岗限制
|
|
|
+ Integer attendance = PlatformParameter.getAttendance();
|
|
|
+ if (attendance != null) {
|
|
|
+ boolean res = adminAircraftPositionService.updateIsAttendance(attendance);
|
|
|
+ log.info("到岗人数限制更新{}!", res ? "成功" : "失败");
|
|
|
+ }
|
|
|
return Result.OK("编辑成功!");
|
|
|
}
|
|
|
}
|