|
@@ -239,6 +239,7 @@ public class GOrderController extends BaseController {
|
|
|
* @param bo
|
|
|
* @return
|
|
|
*/
|
|
|
+ @PreAuthorize("@ss.hasPermi('gas:anjian:query')")
|
|
|
@GetMapping("/getListAnJian")
|
|
|
public TableDataInfo<GOrderVo> getListAnJian(@Validated(QueryGroup.class) GOrderBo bo) {
|
|
|
return iGOrderService.getListAnJian(bo);
|
|
@@ -248,7 +249,7 @@ public class GOrderController extends BaseController {
|
|
|
* 安检导出
|
|
|
*/
|
|
|
@ApiOperation("安检导出")
|
|
|
- @PreAuthorize("@ss.hasPermi('gas:order:getListAnJianExport')")
|
|
|
+ @PreAuthorize("@ss.hasPermi('gas:anjian:getListAnJianExport')")
|
|
|
@Log(title = "安检导出", businessType = BusinessType.EXPORT)
|
|
|
@GetMapping("/getListAnJianExport")
|
|
|
public void getListAnJianExport(@Validated GOrderBo bo, HttpServletResponse response) {
|
|
@@ -261,6 +262,7 @@ public class GOrderController extends BaseController {
|
|
|
* @param bo
|
|
|
* @return
|
|
|
*/
|
|
|
+ @PreAuthorize("@ss.hasPermi('gas:weixiu:query')")
|
|
|
@GetMapping("/getListWeiXiu")
|
|
|
public TableDataInfo<GOrderVo> getListWeiXiu(@Validated(QueryGroup.class) GOrderBo bo) {
|
|
|
return iGOrderService.getListWeiXiu(bo);
|
|
@@ -270,7 +272,7 @@ public class GOrderController extends BaseController {
|
|
|
* 维修导出
|
|
|
*/
|
|
|
@ApiOperation("维修导出")
|
|
|
- @PreAuthorize("@ss.hasPermi('gas:order:getListWeiXiuExport')")
|
|
|
+ @PreAuthorize("@ss.hasPermi('gas:weixiu:getListWeiXiuExport')")
|
|
|
@Log(title = "维修导出", businessType = BusinessType.EXPORT)
|
|
|
@GetMapping("/getListWeiXiuExport")
|
|
|
public void getListWeiXiuExport(@Validated GOrderBo bo, HttpServletResponse response) {
|
|
@@ -283,6 +285,7 @@ public class GOrderController extends BaseController {
|
|
|
* @param bo
|
|
|
* @return
|
|
|
*/
|
|
|
+ @PreAuthorize("@ss.hasPermi('gas:kaisuan:query')")
|
|
|
@GetMapping("/getListKaiShuan")
|
|
|
public TableDataInfo<GOrderVo> getListKaiShuan(@Validated(QueryGroup.class) GOrderBo bo) {
|
|
|
return iGOrderService.getListKaiShuan(bo);
|