fix:充值订单和业务订单bug修复
This commit is contained in:
parent
8fcdb74507
commit
e1a574d99e
|
|
@ -33,7 +33,7 @@ public class AiOrderController extends BaseController
|
|||
/**
|
||||
* 查询订单管理列表
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('/ai/video/order/')")
|
||||
@PreAuthorize("@ss.hasPermi('ai:order:list')")
|
||||
@GetMapping({"", "/", "/list"})
|
||||
public TableDataInfo list(AiOrder aiOrder)
|
||||
{
|
||||
|
|
@ -45,7 +45,7 @@ public class AiOrderController extends BaseController
|
|||
/**
|
||||
* 查询当前用户所属部门的订单列表
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('/ai/video/order/group/')")
|
||||
@PreAuthorize("@ss.hasPermi('ai:order:group:list')")
|
||||
@GetMapping({"/group", "/group/", "/group/list"})
|
||||
public TableDataInfo groupList(AiOrder aiOrder)
|
||||
{
|
||||
|
|
@ -58,7 +58,7 @@ public class AiOrderController extends BaseController
|
|||
/**
|
||||
* 导出订单管理列表
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('/ai/video/order/')")
|
||||
@PreAuthorize("@ss.hasPermi('ai:order:export')")
|
||||
@Log(title = "订单管理", businessType = BusinessType.EXPORT)
|
||||
@PostMapping("/export")
|
||||
public void export(HttpServletResponse response, AiOrder aiOrder)
|
||||
|
|
|
|||
Loading…
Reference in New Issue