|
|
@@ -44,7 +44,7 @@ public class PassengerEquipmentController {
|
|
|
@Autowired
|
|
|
private OauthService oauthService;
|
|
|
|
|
|
- @Permission(value = "bz.base.hotel.find", tags = "查询酒店")
|
|
|
+ @Permission(value = "bz.base.hotel.find", tags = "查询人流采集设备")
|
|
|
@PostMapping("/findPage")
|
|
|
public Result findPage(@RequestBody QueryPassengerEquipmentParams params) {
|
|
|
|
|
|
@@ -76,7 +76,7 @@ public class PassengerEquipmentController {
|
|
|
return Result.instance(Result.Code.SUCCESS).setData(resultData);
|
|
|
}
|
|
|
|
|
|
- @Permission(value = "bz.base.hotel.add", tags = "保存酒店")
|
|
|
+ @Permission(value = "bz.base.hotel.add", tags = "保存人流采集设备")
|
|
|
@PostMapping("/save")
|
|
|
public Result save(@Valid @RequestBody SavePassengerEquipmentParams params) {
|
|
|
|
|
|
@@ -85,7 +85,7 @@ public class PassengerEquipmentController {
|
|
|
return Result.instance(Result.Code.MESSAGE_SUCCESS);
|
|
|
}
|
|
|
|
|
|
- @Permission(value = "bz.base.hotel.edit", tags = "编辑酒店")
|
|
|
+ @Permission(value = "bz.base.hotel.edit", tags = "编辑人流采集设备")
|
|
|
@PostMapping("/updateById")
|
|
|
public Result updateById(Long id, @Valid @RequestBody SavePassengerEquipmentParams params) {
|
|
|
|
|
|
@@ -112,7 +112,7 @@ public class PassengerEquipmentController {
|
|
|
return entity;
|
|
|
}
|
|
|
|
|
|
- @Permission(value = "bz.base.hotel.delete", tags = "删除酒店")
|
|
|
+ @Permission(value = "bz.base.hotel.delete", tags = "删除人流采集设备")
|
|
|
@PostMapping("/deleteByIds")
|
|
|
public Result deleteByIds(@RequestBody List<Long> ids) {
|
|
|
this.passengerEquipmentService.removeByIds(ids);
|