支付方式日志
This commit is contained in:
@@ -131,7 +131,6 @@ public class PaymentController extends BaseController {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@PreAuthorize("hasAuthority('sys:payment:list')")
|
@PreAuthorize("hasAuthority('sys:payment:list')")
|
||||||
@OperationLog
|
|
||||||
@ApiOperation("分页查询支付方式")
|
@ApiOperation("分页查询支付方式")
|
||||||
@GetMapping("/page")
|
@GetMapping("/page")
|
||||||
public ApiResult<PageResult<Payment>> page(PaymentParam param) {
|
public ApiResult<PageResult<Payment>> page(PaymentParam param) {
|
||||||
@@ -143,7 +142,6 @@ public class PaymentController extends BaseController {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@PreAuthorize("hasAuthority('sys:payment:list')")
|
@PreAuthorize("hasAuthority('sys:payment:list')")
|
||||||
@OperationLog
|
|
||||||
@ApiOperation("查询全部支付方式")
|
@ApiOperation("查询全部支付方式")
|
||||||
@GetMapping()
|
@GetMapping()
|
||||||
public ApiResult<List<Payment>> list(PaymentParam param) {
|
public ApiResult<List<Payment>> list(PaymentParam param) {
|
||||||
@@ -155,7 +153,6 @@ public class PaymentController extends BaseController {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@PreAuthorize("hasAuthority('sys:payment:list')")
|
@PreAuthorize("hasAuthority('sys:payment:list')")
|
||||||
@OperationLog
|
|
||||||
@ApiOperation("根据id查询支付方式")
|
@ApiOperation("根据id查询支付方式")
|
||||||
@GetMapping("/{id}")
|
@GetMapping("/{id}")
|
||||||
public ApiResult<Payment> get(@PathVariable("id") Integer id) {
|
public ApiResult<Payment> get(@PathVariable("id") Integer id) {
|
||||||
|
|||||||
Reference in New Issue
Block a user