|
|
@@ -100,6 +100,7 @@ public class BottleStorageController extends BaseController {
|
|
|
* 查询领用气瓶列表(管理端)
|
|
|
*/
|
|
|
@GetMapping("/receivingGasList")
|
|
|
+ @PreAuthorize(hasPermi = PerPrefix.BOTTLE_BOTTLEUSEBYADMIN + PerFun.LIST)
|
|
|
@ApiOperation(value = "查询领用气瓶列表")
|
|
|
public TableDataInfo<BottleStorage> receivingGasList(BottleStorage bottleStorage) {
|
|
|
startPage();
|
|
|
@@ -112,6 +113,7 @@ public class BottleStorageController extends BaseController {
|
|
|
* 归还气瓶列表(管理端)
|
|
|
*/
|
|
|
@GetMapping("/returnGas")
|
|
|
+ @PreAuthorize(hasPermi = PerPrefix.BOTTLE_BOTTLEUSEBYADMIN + PerFun.LIST)
|
|
|
@ApiOperation(value = "归还气瓶列表")
|
|
|
public TableDataInfo<BottleStorage> returnGas(BottleStorageUseVo bottleStorageUseVo) {
|
|
|
startPage();
|
|
|
@@ -124,6 +126,7 @@ public class BottleStorageController extends BaseController {
|
|
|
* 查询领用气瓶列表(学生端)
|
|
|
*/
|
|
|
@GetMapping("/receivingGasListByStu")
|
|
|
+ @PreAuthorize(hasPermi = PerPrefix.BOTTLE_BOTTLEUSEBYUSER + PerFun.LIST)
|
|
|
@ApiOperation(value = "查询领用气瓶列表")
|
|
|
public TableDataInfo<BottleStorage> receivingGasListByStu(BottleStorage bottleStorage) {
|
|
|
startPage();
|
|
|
@@ -135,6 +138,7 @@ public class BottleStorageController extends BaseController {
|
|
|
* 归还气瓶列表(学生端)
|
|
|
*/
|
|
|
@GetMapping("/returnGasByStu")
|
|
|
+ @PreAuthorize(hasPermi = PerPrefix.BOTTLE_BOTTLEUSEBYUSER + PerFun.LIST)
|
|
|
@ApiOperation(value = "归还气瓶列表")
|
|
|
public TableDataInfo<BottleStorage> returnGasByStu(BottleStorageUseVo bottleStorageUseVo) {
|
|
|
startPage();
|