|
@@ -28,7 +28,7 @@ import cn.ezhizao.framework.web.page.TableDataInfo;
|
|
|
* @date 2024-11-12
|
|
|
*/
|
|
|
@RestController
|
|
|
-@RequestMapping("/business:invoice/invoiceRecord")
|
|
|
+@RequestMapping("/business/invoice/invoiceRecord")
|
|
|
public class BizInvoiceRecordController extends BaseController
|
|
|
{
|
|
|
@Resource
|
|
@@ -37,7 +37,6 @@ public class BizInvoiceRecordController extends BaseController
|
|
|
/**
|
|
|
* 查询发票操作记录列表
|
|
|
*/
|
|
|
- @PreAuthorize("@ss.hasPermi('business:invoice:invoiceRecord:list')")
|
|
|
@GetMapping("/list")
|
|
|
public TableDataInfo list(BizInvoiceRecord bizInvoiceRecord) throws NoSuchFieldException, IllegalAccessException
|
|
|
{
|
|
@@ -50,7 +49,6 @@ public class BizInvoiceRecordController extends BaseController
|
|
|
/**
|
|
|
* 导出发票操作记录列表
|
|
|
*/
|
|
|
- @PreAuthorize("@ss.hasPermi('business:invoice:invoiceRecord:export')")
|
|
|
@Log(title = "发票操作记录", businessType = BusinessType.EXPORT)
|
|
|
@PostMapping("/export")
|
|
|
public void export(HttpServletResponse response, BizInvoiceRecord bizInvoiceRecord) throws NoSuchFieldException, IllegalAccessException
|
|
@@ -64,7 +62,6 @@ public class BizInvoiceRecordController extends BaseController
|
|
|
/**
|
|
|
* 获取发票操作记录详细信息
|
|
|
*/
|
|
|
- @PreAuthorize("@ss.hasPermi('business:invoice:invoiceRecord:query')")
|
|
|
@GetMapping(value = "/{id}")
|
|
|
public AjaxResult getInfo(@PathVariable("id") Long id)
|
|
|
{
|
|
@@ -74,7 +71,6 @@ public class BizInvoiceRecordController extends BaseController
|
|
|
/**
|
|
|
* 新增发票操作记录
|
|
|
*/
|
|
|
- @PreAuthorize("@ss.hasPermi('business:invoice:invoiceRecord:add')")
|
|
|
@Log(title = "发票操作记录", businessType = BusinessType.INSERT)
|
|
|
@PostMapping
|
|
|
public AjaxResult add(@RequestBody BizInvoiceRecord bizInvoiceRecord) throws NoSuchFieldException, IllegalAccessException
|