|
@@ -47,7 +47,7 @@ public class DetailsOfTheRefuelingPlanController extends BaseController {
|
|
|
/**
|
|
|
* 查询加弹计划详细信息列表
|
|
|
*/
|
|
|
- @PreAuthorize("@ss.hasPermi('system:plan:list')")
|
|
|
+// @PreAuthorize("@ss.hasPermi('system:plan:list')")
|
|
|
@GetMapping("/list")
|
|
|
@ApiOperation(value = "查询加弹计划详细信息列表")
|
|
|
public TableDataInfo list(DetailsOfTheRefuelingPlan detailsOfTheRefuelingPlan) {
|
|
@@ -59,7 +59,7 @@ public class DetailsOfTheRefuelingPlanController extends BaseController {
|
|
|
/**
|
|
|
* 查询加弹计划详细信息列表
|
|
|
*/
|
|
|
- @PreAuthorize("@ss.hasPermi('system:plan:list')")
|
|
|
+// @PreAuthorize("@ss.hasPermi('system:plan:list')")
|
|
|
@GetMapping("/listStatus/{id}")
|
|
|
@ApiOperation(value = "查询加弹计划详细信息列表")
|
|
|
public AjaxResult listStatus(@PathVariable ("id") String id) {
|
|
@@ -84,7 +84,7 @@ public class DetailsOfTheRefuelingPlanController extends BaseController {
|
|
|
return AjaxResult.success(listArray);
|
|
|
}
|
|
|
|
|
|
- @PreAuthorize("@ss.hasPermi('system:plan:list')")
|
|
|
+// @PreAuthorize("@ss.hasPermi('system:plan:list')")
|
|
|
@PostMapping("/updateLineStates/{id}/{mids}")
|
|
|
@ApiOperation(value = "查询加弹计划详细信息列表")
|
|
|
public AjaxResult updateLineStates(@PathVariable("id") String id,@PathVariable("mids") String ids) {
|
|
@@ -169,7 +169,7 @@ public class DetailsOfTheRefuelingPlanController extends BaseController {
|
|
|
/**
|
|
|
* 导出加弹计划详细信息列表
|
|
|
*/
|
|
|
- @PreAuthorize("@ss.hasPermi('system:plan:export')")
|
|
|
+// @PreAuthorize("@ss.hasPermi('system:plan:export')")
|
|
|
@Log(title = "加弹计划详细信息", businessType = BusinessType.EXPORT)
|
|
|
@PostMapping("/export")
|
|
|
@ApiOperation(value = "导出加弹计划详细信息列表")
|
|
@@ -182,7 +182,7 @@ public class DetailsOfTheRefuelingPlanController extends BaseController {
|
|
|
/**
|
|
|
* 获取加弹计划详细信息详细信息
|
|
|
*/
|
|
|
- @PreAuthorize("@ss.hasPermi('system:plan:query')")
|
|
|
+// @PreAuthorize("@ss.hasPermi('system:plan:query')")
|
|
|
@GetMapping(value = "/{id}")
|
|
|
@ApiOperation(value = "获取加弹计划详细信息详细信息")
|
|
|
public AjaxResult getInfo(@PathVariable("id") Long id) {
|
|
@@ -192,7 +192,7 @@ public class DetailsOfTheRefuelingPlanController extends BaseController {
|
|
|
/**
|
|
|
* 新增加弹计划详细信息
|
|
|
*/
|
|
|
- @PreAuthorize("@ss.hasPermi('system:plan:add')")
|
|
|
+// @PreAuthorize("@ss.hasPermi('system:plan:add')")
|
|
|
@Log(title = "加弹计划详细信息", businessType = BusinessType.INSERT)
|
|
|
@PostMapping
|
|
|
@ApiOperation(value = "新增加弹计划详细信息")
|
|
@@ -203,7 +203,7 @@ public class DetailsOfTheRefuelingPlanController extends BaseController {
|
|
|
/**
|
|
|
* 修改加弹计划详细信息
|
|
|
*/
|
|
|
- @PreAuthorize("@ss.hasPermi('system:plan:edit')")
|
|
|
+// @PreAuthorize("@ss.hasPermi('system:plan:edit')")
|
|
|
@Log(title = "加弹计划详细信息", businessType = BusinessType.UPDATE)
|
|
|
@PutMapping
|
|
|
@ApiOperation(value = "修改加弹计划详细信息")
|
|
@@ -214,7 +214,7 @@ public class DetailsOfTheRefuelingPlanController extends BaseController {
|
|
|
/**
|
|
|
* 删除加弹计划详细信息
|
|
|
*/
|
|
|
- @PreAuthorize("@ss.hasPermi('system:plan:remove')")
|
|
|
+// @PreAuthorize("@ss.hasPermi('system:plan:remove')")
|
|
|
@Log(title = "加弹计划详细信息", businessType = BusinessType.DELETE)
|
|
|
@DeleteMapping("/{ids}")
|
|
|
@ApiOperation(value = "删除加弹计划详细信息")
|
|
@@ -225,7 +225,7 @@ public class DetailsOfTheRefuelingPlanController extends BaseController {
|
|
|
/**
|
|
|
* 删除加弹计划详细信息
|
|
|
*/
|
|
|
- @PreAuthorize("@ss.hasPermi('system:plan:remove')")
|
|
|
+// @PreAuthorize("@ss.hasPermi('system:plan:remove')")
|
|
|
@Log(title = "加弹计划详细信息", businessType = BusinessType.DELETE)
|
|
|
@DeleteMapping("/remove/{id}")
|
|
|
@ApiOperation(value = "删除加弹计划详细信息")
|