|
@@ -41,7 +41,6 @@ public class TInvoiceController extends BaseController {
|
|
/**
|
|
/**
|
|
* 查询财务数据主列表
|
|
* 查询财务数据主列表
|
|
*/
|
|
*/
|
|
- @PreAuthorize("@ss.hasPermi('finance:invoice:list')")
|
|
|
|
@DataScope(deptAlias = "d", userAlias = "u")
|
|
@DataScope(deptAlias = "d", userAlias = "u")
|
|
@GetMapping("/list")
|
|
@GetMapping("/list")
|
|
public TableDataInfo list(TFee tFee) {
|
|
public TableDataInfo list(TFee tFee) {
|
|
@@ -95,14 +94,12 @@ public class TInvoiceController extends BaseController {
|
|
/**
|
|
/**
|
|
* 删除财务数据主
|
|
* 删除财务数据主
|
|
*/
|
|
*/
|
|
- @PreAuthorize("@ss.hasPermi('finance:invoice:remove')")
|
|
|
|
@Log(title = "财务数据主", businessType = BusinessType.DELETE)
|
|
@Log(title = "财务数据主", businessType = BusinessType.DELETE)
|
|
@DeleteMapping("/{fIds}")
|
|
@DeleteMapping("/{fIds}")
|
|
public AjaxResult remove(@PathVariable Long[] fIds) {
|
|
public AjaxResult remove(@PathVariable Long[] fIds) {
|
|
return toAjax(tFeeService.deleteTFeeByIds(fIds));
|
|
return toAjax(tFeeService.deleteTFeeByIds(fIds));
|
|
}
|
|
}
|
|
|
|
|
|
- @PreAuthorize("@ss.hasPermi('finance:invoice:remove')")
|
|
|
|
@Log(title = "财务数据主", businessType = BusinessType.DELETE)
|
|
@Log(title = "财务数据主", businessType = BusinessType.DELETE)
|
|
@DeleteMapping("/queryRemove/{fId}")
|
|
@DeleteMapping("/queryRemove/{fId}")
|
|
public AjaxResult queryRemove(@PathVariable("fId") Long fId) {
|
|
public AjaxResult queryRemove(@PathVariable("fId") Long fId) {
|