|
|
@@ -34,7 +34,7 @@ public class PricePolicyManagementController {
|
|
|
*/
|
|
|
@Operation(summary = "分页查询价格策略列表")
|
|
|
@PostMapping("/page")
|
|
|
- @Log(value = "分页查询价格策略列表", module = LogModuleEnum.PARKING_CALL, params = true, result = true)
|
|
|
+ @Log(value = "分页查询价格策略列表", module = LogModuleEnum.ADMIN_ACTIONS, params = true, result = true)
|
|
|
public Result<Page<PricePolicyPageVO>> queryPricePolicyPage(@RequestBody PricePolicyPageQuery query) {
|
|
|
return Result.success(pricePolicyManagementService.queryPricePolicyPage(query));
|
|
|
}
|
|
|
@@ -44,7 +44,7 @@ public class PricePolicyManagementController {
|
|
|
*/
|
|
|
@Operation(summary = "修改计费策略")
|
|
|
@PostMapping("/update")
|
|
|
- @Log(value = "修改计费策略", module = LogModuleEnum.PARKING_CALL, params = true, result = true)
|
|
|
+ @Log(value = "修改计费策略", module = LogModuleEnum.ADMIN_ACTIONS, params = true, result = true)
|
|
|
public Result<Boolean> updatePricePolicy(@RequestBody UpdatePricePolicyDTO dto) {
|
|
|
return Result.success(pricePolicyManagementService.updatePricePolicy(dto));
|
|
|
}
|