management/guns-admin/src/main/java/com/stylefeng/guns/modular/system/controller/general/TAgentController.java
@@ -56,6 +56,9 @@ @Autowired private ITRegionService tRegionService; @Autowired private ITDriverService tDriverService; /** * 跳转到首页 @@ -195,6 +198,18 @@ tAgent.setStatus(1); } tAgentService.updateById(tAgent); // 冻结下面所有的司机 List<TDriver> list = tDriverService.selectList(new EntityWrapper<TDriver>() .eq("agentId", id)); for (TDriver tDriver : list) { if(1 == status){ tDriver.setStatus(2); } if(2 == status){ tDriver.setStatus(1); } } tDriverService.updateBatchById(list); return SUCCESS_TIP; }