|
@@ -69,7 +69,6 @@ public class StationClassStructureController extends BaseController
|
|
|
/**
|
|
|
* 查询班结管理列表
|
|
|
*/
|
|
|
- @PreAuthorize("@ss.hasPermi('station:structure:list')")
|
|
|
@GetMapping("/list")
|
|
|
public TableDataInfo list(StationClassStructure stationClassStructure)
|
|
|
{
|
|
@@ -82,8 +81,6 @@ public class StationClassStructureController extends BaseController
|
|
|
List<StationClassStructure> list = stationClassStructureService.selectStationClassStructureList(stationClassStructure);
|
|
|
return getDataTable(list);
|
|
|
}
|
|
|
-
|
|
|
- @PreAuthorize("@ss.hasPermi('station:structure:listPersonnelStructure')")
|
|
|
@GetMapping("/listPersonnelStructure")
|
|
|
public TableDataInfo listPersonnelStructure(StationClassStructure stationClassStructure)
|
|
|
{
|
|
@@ -94,7 +91,6 @@ public class StationClassStructureController extends BaseController
|
|
|
return getTable(list);
|
|
|
}
|
|
|
|
|
|
- @PreAuthorize("@ss.hasPermi('station:structure:listOilStructure')")
|
|
|
@GetMapping("/listOilStructure")
|
|
|
public TableDataInfo listOilStructure(StationClassStructure stationClassStructure)
|
|
|
{
|
|
@@ -104,7 +100,6 @@ public class StationClassStructureController extends BaseController
|
|
|
}
|
|
|
return getTable(list);
|
|
|
}
|
|
|
- @PreAuthorize("@ss.hasPermi('station:structure:listPersonnelPayStructure')")
|
|
|
@GetMapping("/listPersonnelPayStructure")
|
|
|
public TableDataInfo listPersonnelPayStructure(StationClassStructure stationClassStructure)
|
|
|
{
|
|
@@ -114,7 +109,7 @@ public class StationClassStructureController extends BaseController
|
|
|
}
|
|
|
return getTable(list);
|
|
|
}
|
|
|
- @PreAuthorize("@ss.hasPermi('station:structure:listClass')")
|
|
|
+
|
|
|
@GetMapping("/listClass")
|
|
|
public AjaxResult listClass(StationClassStructure stationClassStructure)
|
|
|
{
|
|
@@ -123,7 +118,7 @@ public class StationClassStructureController extends BaseController
|
|
|
/**
|
|
|
* 导出班结管理列表
|
|
|
*/
|
|
|
- @PreAuthorize("@ss.hasPermi('station:structure:export')")
|
|
|
+
|
|
|
@Log(title = "班结管理", businessType = BusinessType.EXPORT)
|
|
|
@GetMapping("/export")
|
|
|
public AjaxResult export(StationClassStructure stationClassStructure)
|
|
@@ -470,7 +465,6 @@ public class StationClassStructureController extends BaseController
|
|
|
/**
|
|
|
* 新增班结管理
|
|
|
*/
|
|
|
- @PreAuthorize("@ss.hasPermi('station:structure:add')")
|
|
|
@Log(title = "班结管理", businessType = BusinessType.INSERT)
|
|
|
@PostMapping
|
|
|
public AjaxResult add(@RequestBody StationClassStructure stationClassStructure) throws ParseException {
|
|
@@ -969,7 +963,7 @@ public class StationClassStructureController extends BaseController
|
|
|
/**
|
|
|
* 修改班结管理
|
|
|
*/
|
|
|
- @PreAuthorize("@ss.hasPermi('station:structure:edit')")
|
|
|
+
|
|
|
@Log(title = "班结管理", businessType = BusinessType.UPDATE)
|
|
|
@PutMapping
|
|
|
public AjaxResult edit(@RequestBody StationClassStructure stationClassStructure)
|
|
@@ -991,7 +985,6 @@ public class StationClassStructureController extends BaseController
|
|
|
/**
|
|
|
* 查询上次班结数据
|
|
|
*/
|
|
|
- @PreAuthorize("@ss.hasPermi('station:structure:getAgeClassStructure')")
|
|
|
@GetMapping("/getAgeClassStructure")
|
|
|
public AjaxResult getAgeClassStructure(StationClassStructure stationClassStructure)
|
|
|
{
|
|
@@ -1001,7 +994,6 @@ public class StationClassStructureController extends BaseController
|
|
|
return AjaxResult.success(stationClassStructureService.selectStationClassStructureMax(stationClassStructure));
|
|
|
}
|
|
|
//初始化数据 根据员工汇总
|
|
|
- @PreAuthorize("@ss.hasPermi('station:structure:selectPersonnelStructure')")
|
|
|
@GetMapping("/selectPersonnelStructure")
|
|
|
public TableDataInfo selectPersonnelStructure(StationClassStructure stationClassStructure)
|
|
|
{
|
|
@@ -1051,7 +1043,6 @@ public class StationClassStructureController extends BaseController
|
|
|
* @param stationClassStructure
|
|
|
* @return
|
|
|
*/
|
|
|
- @PreAuthorize("@ss.hasPermi('station:structure:selectOilStructure')")
|
|
|
@GetMapping("/selectOilStructure")
|
|
|
public TableDataInfo selectOilStructure(StationClassStructure stationClassStructure)
|
|
|
{
|
|
@@ -1101,7 +1092,6 @@ public class StationClassStructureController extends BaseController
|
|
|
* @param stationClassStructure
|
|
|
* @return
|
|
|
*/
|
|
|
- @PreAuthorize("@ss.hasPermi('station:structure:selectPersonnelPayStructure')")
|
|
|
@GetMapping("/selectPersonnelPayStructure")
|
|
|
public TableDataInfo selectPersonnelPayStructure(StationClassStructure stationClassStructure)
|
|
|
{
|