| | |
| | | /** |
| | | * 查询工厂管理列表 |
| | | */ |
| | | @RequiresPermissions("plant:list") |
| | | //@RequiresPermissions("plant:list") |
| | | @GetMapping("/list") |
| | | public TableDataInfo list(ApsPlant apsPlant) |
| | | { |
| | | startPage(); |
| | | List<ApsPlant> list = apsPlantService.selectApsPlantList(apsPlant); |
| | | return getDataTable(list); |
| | | //startPage(); |
| | | //List<ApsPlant> list = apsPlantService.selectApsPlantList(apsPlant); |
| | | List<ApsPlant> list1 = apsPlantService.list(); |
| | | return getDataTable(list1); |
| | | } |
| | | |
| | | /** |
| | |
| | | { |
| | | return toAjax(apsPlantService.deleteApsPlantByIds(ids)); |
| | | } |
| | | |
| | | /** |
| | | * 查询工厂管理列表 |
| | | */ |
| | | // @RequiresPermissions("plant:list") |
| | | @GetMapping("/listAll") |
| | | public AjaxResult listAll(ApsPlant apsPlant) |
| | | { |
| | | List<ApsPlant> list = apsPlantService.selectApsPlantList(apsPlant); |
| | | return AjaxResult.success(list); |
| | | } |
| | | } |