Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
ry-crm
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
田光明
ry-crm
Commits
9f42d2b8
Commit
9f42d2b8
authored
Feb 21, 2025
by
EDY
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
解除权限
parent
6032ee08
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
48 additions
and
48 deletions
+48
-48
BaseContractAuditRecordController.java
...ontroller/business/BaseContractAuditRecordController.java
+6
-6
BaseContractInfoController.java
...i/web/controller/business/BaseContractInfoController.java
+6
-6
BaseContractPeriodsInfoController.java
...ontroller/business/BaseContractPeriodsInfoController.java
+6
-6
BaseCustomFollowRecordController.java
...controller/business/BaseCustomFollowRecordController.java
+6
-6
BaseCustomInfoController.java
...oyi/web/controller/business/BaseCustomInfoController.java
+6
-6
BaseInvoiceInfoController.java
...yi/web/controller/business/BaseInvoiceInfoController.java
+6
-6
BasePaymentCollectionInfoController.java
...troller/business/BasePaymentCollectionInfoController.java
+6
-6
BaseSubjectInfoController.java
...yi/web/controller/business/BaseSubjectInfoController.java
+6
-6
No files found.
ruoyi-admin/src/main/java/com/ruoyi/web/controller/business/BaseContractAuditRecordController.java
View file @
9f42d2b8
...
@@ -38,7 +38,7 @@ public class BaseContractAuditRecordController extends BaseController
...
@@ -38,7 +38,7 @@ public class BaseContractAuditRecordController extends BaseController
/**
/**
* 查询合同审核记录列表
* 查询合同审核记录列表
*/
*/
@PreAuthorize
(
"@ss.hasPermi('contractAudit:record:list')"
)
// //
@PreAuthorize("@ss.hasPermi('contractAudit:record:list')")
@GetMapping
(
"/list"
)
@GetMapping
(
"/list"
)
public
TableDataInfo
list
(
BaseContractAuditRecord
baseContractAuditRecord
)
public
TableDataInfo
list
(
BaseContractAuditRecord
baseContractAuditRecord
)
{
{
...
@@ -50,7 +50,7 @@ public class BaseContractAuditRecordController extends BaseController
...
@@ -50,7 +50,7 @@ public class BaseContractAuditRecordController extends BaseController
/**
/**
* 导出合同审核记录列表
* 导出合同审核记录列表
*/
*/
@PreAuthorize
(
"@ss.hasPermi('contractAudit:record:export')"
)
// //
@PreAuthorize("@ss.hasPermi('contractAudit:record:export')")
@Log
(
title
=
"合同审核记录"
,
businessType
=
BusinessType
.
EXPORT
)
@Log
(
title
=
"合同审核记录"
,
businessType
=
BusinessType
.
EXPORT
)
@PostMapping
(
"/export"
)
@PostMapping
(
"/export"
)
public
void
export
(
HttpServletResponse
response
,
BaseContractAuditRecord
baseContractAuditRecord
)
public
void
export
(
HttpServletResponse
response
,
BaseContractAuditRecord
baseContractAuditRecord
)
...
@@ -63,7 +63,7 @@ public class BaseContractAuditRecordController extends BaseController
...
@@ -63,7 +63,7 @@ public class BaseContractAuditRecordController extends BaseController
/**
/**
* 获取合同审核记录详细信息
* 获取合同审核记录详细信息
*/
*/
@PreAuthorize
(
"@ss.hasPermi('contractAudit:record:query')"
)
// //
@PreAuthorize("@ss.hasPermi('contractAudit:record:query')")
@GetMapping
(
value
=
"/{id}"
)
@GetMapping
(
value
=
"/{id}"
)
public
AjaxResult
getInfo
(
@PathVariable
(
"id"
)
Long
id
)
public
AjaxResult
getInfo
(
@PathVariable
(
"id"
)
Long
id
)
{
{
...
@@ -73,7 +73,7 @@ public class BaseContractAuditRecordController extends BaseController
...
@@ -73,7 +73,7 @@ public class BaseContractAuditRecordController extends BaseController
/**
/**
* 新增合同审核记录
* 新增合同审核记录
*/
*/
@PreAuthorize
(
"@ss.hasPermi('contractAudit:record:add')"
)
// //
@PreAuthorize("@ss.hasPermi('contractAudit:record:add')")
@Log
(
title
=
"合同审核记录"
,
businessType
=
BusinessType
.
INSERT
)
@Log
(
title
=
"合同审核记录"
,
businessType
=
BusinessType
.
INSERT
)
@PostMapping
@PostMapping
public
AjaxResult
add
(
@RequestBody
BaseContractAuditRecord
baseContractAuditRecord
)
public
AjaxResult
add
(
@RequestBody
BaseContractAuditRecord
baseContractAuditRecord
)
...
@@ -84,7 +84,7 @@ public class BaseContractAuditRecordController extends BaseController
...
@@ -84,7 +84,7 @@ public class BaseContractAuditRecordController extends BaseController
/**
/**
* 修改合同审核记录
* 修改合同审核记录
*/
*/
@PreAuthorize
(
"@ss.hasPermi('contractAudit:record:edit')"
)
// //
@PreAuthorize("@ss.hasPermi('contractAudit:record:edit')")
@Log
(
title
=
"合同审核记录"
,
businessType
=
BusinessType
.
UPDATE
)
@Log
(
title
=
"合同审核记录"
,
businessType
=
BusinessType
.
UPDATE
)
@PutMapping
@PutMapping
public
AjaxResult
edit
(
@RequestBody
BaseContractAuditRecord
baseContractAuditRecord
)
public
AjaxResult
edit
(
@RequestBody
BaseContractAuditRecord
baseContractAuditRecord
)
...
@@ -95,7 +95,7 @@ public class BaseContractAuditRecordController extends BaseController
...
@@ -95,7 +95,7 @@ public class BaseContractAuditRecordController extends BaseController
/**
/**
* 删除合同审核记录
* 删除合同审核记录
*/
*/
@PreAuthorize
(
"@ss.hasPermi('contractAudit:record:remove')"
)
// //
@PreAuthorize("@ss.hasPermi('contractAudit:record:remove')")
@Log
(
title
=
"合同审核记录"
,
businessType
=
BusinessType
.
DELETE
)
@Log
(
title
=
"合同审核记录"
,
businessType
=
BusinessType
.
DELETE
)
@DeleteMapping
(
"/{ids}"
)
@DeleteMapping
(
"/{ids}"
)
public
AjaxResult
remove
(
@PathVariable
Long
[]
ids
)
public
AjaxResult
remove
(
@PathVariable
Long
[]
ids
)
...
...
ruoyi-admin/src/main/java/com/ruoyi/web/controller/business/BaseContractInfoController.java
View file @
9f42d2b8
...
@@ -65,7 +65,7 @@ public class BaseContractInfoController extends BaseController {
...
@@ -65,7 +65,7 @@ public class BaseContractInfoController extends BaseController {
/**
/**
* 查询合同信息列表
* 查询合同信息列表
*/
*/
@PreAuthorize
(
"@ss.hasPermi('contract:info:list')"
)
// //
@PreAuthorize("@ss.hasPermi('contract:info:list')")
@GetMapping
(
"/list"
)
@GetMapping
(
"/list"
)
public
TableDataInfo
list
(
BaseContractInfo
baseContractInfo
)
{
public
TableDataInfo
list
(
BaseContractInfo
baseContractInfo
)
{
startPage
();
startPage
();
...
@@ -76,7 +76,7 @@ public class BaseContractInfoController extends BaseController {
...
@@ -76,7 +76,7 @@ public class BaseContractInfoController extends BaseController {
/**
/**
* 导出合同信息列表
* 导出合同信息列表
*/
*/
@PreAuthorize
(
"@ss.hasPermi('contract:info:export')"
)
// //
@PreAuthorize("@ss.hasPermi('contract:info:export')")
@Log
(
title
=
"合同信息"
,
businessType
=
BusinessType
.
EXPORT
)
@Log
(
title
=
"合同信息"
,
businessType
=
BusinessType
.
EXPORT
)
@PostMapping
(
"/export"
)
@PostMapping
(
"/export"
)
public
void
export
(
HttpServletResponse
response
,
BaseContractInfo
baseContractInfo
)
{
public
void
export
(
HttpServletResponse
response
,
BaseContractInfo
baseContractInfo
)
{
...
@@ -88,7 +88,7 @@ public class BaseContractInfoController extends BaseController {
...
@@ -88,7 +88,7 @@ public class BaseContractInfoController extends BaseController {
/**
/**
* 获取合同信息详细信息
* 获取合同信息详细信息
*/
*/
@PreAuthorize
(
"@ss.hasPermi('contract:info:query')"
)
// //
@PreAuthorize("@ss.hasPermi('contract:info:query')")
@GetMapping
(
value
=
"/{id}"
)
@GetMapping
(
value
=
"/{id}"
)
public
AjaxResult
getInfo
(
@PathVariable
(
"id"
)
Long
id
)
{
public
AjaxResult
getInfo
(
@PathVariable
(
"id"
)
Long
id
)
{
return
success
(
baseContractInfoService
.
selectBaseContractInfoById
(
id
));
return
success
(
baseContractInfoService
.
selectBaseContractInfoById
(
id
));
...
@@ -97,7 +97,7 @@ public class BaseContractInfoController extends BaseController {
...
@@ -97,7 +97,7 @@ public class BaseContractInfoController extends BaseController {
/**
/**
* 新增合同信息
* 新增合同信息
*/
*/
@PreAuthorize
(
"@ss.hasPermi('contract:info:add')"
)
// //
@PreAuthorize("@ss.hasPermi('contract:info:add')")
@Log
(
title
=
"合同信息"
,
businessType
=
BusinessType
.
INSERT
)
@Log
(
title
=
"合同信息"
,
businessType
=
BusinessType
.
INSERT
)
@PostMapping
@PostMapping
public
AjaxResult
add
(
@RequestBody
BaseContractInfo
baseContractInfo
)
{
public
AjaxResult
add
(
@RequestBody
BaseContractInfo
baseContractInfo
)
{
...
@@ -108,7 +108,7 @@ public class BaseContractInfoController extends BaseController {
...
@@ -108,7 +108,7 @@ public class BaseContractInfoController extends BaseController {
/**
/**
* 修改合同信息
* 修改合同信息
*/
*/
@PreAuthorize
(
"@ss.hasPermi('contract:info:edit')"
)
// //
@PreAuthorize("@ss.hasPermi('contract:info:edit')")
@Log
(
title
=
"合同信息"
,
businessType
=
BusinessType
.
UPDATE
)
@Log
(
title
=
"合同信息"
,
businessType
=
BusinessType
.
UPDATE
)
@PutMapping
@PutMapping
public
AjaxResult
edit
(
@RequestBody
BaseContractInfo
baseContractInfo
)
{
public
AjaxResult
edit
(
@RequestBody
BaseContractInfo
baseContractInfo
)
{
...
@@ -118,7 +118,7 @@ public class BaseContractInfoController extends BaseController {
...
@@ -118,7 +118,7 @@ public class BaseContractInfoController extends BaseController {
/**
/**
* 删除合同信息
* 删除合同信息
*/
*/
@PreAuthorize
(
"@ss.hasPermi('contract:info:remove')"
)
// //
@PreAuthorize("@ss.hasPermi('contract:info:remove')")
@Log
(
title
=
"合同信息"
,
businessType
=
BusinessType
.
DELETE
)
@Log
(
title
=
"合同信息"
,
businessType
=
BusinessType
.
DELETE
)
@DeleteMapping
(
"/{ids}"
)
@DeleteMapping
(
"/{ids}"
)
public
AjaxResult
remove
(
@PathVariable
Long
[]
ids
)
{
public
AjaxResult
remove
(
@PathVariable
Long
[]
ids
)
{
...
...
ruoyi-admin/src/main/java/com/ruoyi/web/controller/business/BaseContractPeriodsInfoController.java
View file @
9f42d2b8
...
@@ -38,7 +38,7 @@ public class BaseContractPeriodsInfoController extends BaseController
...
@@ -38,7 +38,7 @@ public class BaseContractPeriodsInfoController extends BaseController
/**
/**
* 查询合同期限列表
* 查询合同期限列表
*/
*/
@PreAuthorize
(
"@ss.hasPermi('contractPeriods:info:list')"
)
//
@PreAuthorize("@ss.hasPermi('contractPeriods:info:list')")
@GetMapping
(
"/list"
)
@GetMapping
(
"/list"
)
public
TableDataInfo
list
(
BaseContractPeriodsInfo
baseContractPeriodsInfo
)
public
TableDataInfo
list
(
BaseContractPeriodsInfo
baseContractPeriodsInfo
)
{
{
...
@@ -50,7 +50,7 @@ public class BaseContractPeriodsInfoController extends BaseController
...
@@ -50,7 +50,7 @@ public class BaseContractPeriodsInfoController extends BaseController
/**
/**
* 导出合同期限列表
* 导出合同期限列表
*/
*/
@PreAuthorize
(
"@ss.hasPermi('contractPeriods:info:export')"
)
//
@PreAuthorize("@ss.hasPermi('contractPeriods:info:export')")
@Log
(
title
=
"合同期限"
,
businessType
=
BusinessType
.
EXPORT
)
@Log
(
title
=
"合同期限"
,
businessType
=
BusinessType
.
EXPORT
)
@PostMapping
(
"/export"
)
@PostMapping
(
"/export"
)
public
void
export
(
HttpServletResponse
response
,
BaseContractPeriodsInfo
baseContractPeriodsInfo
)
public
void
export
(
HttpServletResponse
response
,
BaseContractPeriodsInfo
baseContractPeriodsInfo
)
...
@@ -63,7 +63,7 @@ public class BaseContractPeriodsInfoController extends BaseController
...
@@ -63,7 +63,7 @@ public class BaseContractPeriodsInfoController extends BaseController
/**
/**
* 获取合同期限详细信息
* 获取合同期限详细信息
*/
*/
@PreAuthorize
(
"@ss.hasPermi('contractPeriods:info:query')"
)
//
@PreAuthorize("@ss.hasPermi('contractPeriods:info:query')")
@GetMapping
(
value
=
"/{id}"
)
@GetMapping
(
value
=
"/{id}"
)
public
AjaxResult
getInfo
(
@PathVariable
(
"id"
)
Long
id
)
public
AjaxResult
getInfo
(
@PathVariable
(
"id"
)
Long
id
)
{
{
...
@@ -73,7 +73,7 @@ public class BaseContractPeriodsInfoController extends BaseController
...
@@ -73,7 +73,7 @@ public class BaseContractPeriodsInfoController extends BaseController
/**
/**
* 新增合同期限
* 新增合同期限
*/
*/
@PreAuthorize
(
"@ss.hasPermi('contractPeriods:info:add')"
)
//
@PreAuthorize("@ss.hasPermi('contractPeriods:info:add')")
@Log
(
title
=
"合同期限"
,
businessType
=
BusinessType
.
INSERT
)
@Log
(
title
=
"合同期限"
,
businessType
=
BusinessType
.
INSERT
)
@PostMapping
@PostMapping
public
AjaxResult
add
(
@RequestBody
BaseContractPeriodsInfo
baseContractPeriodsInfo
)
public
AjaxResult
add
(
@RequestBody
BaseContractPeriodsInfo
baseContractPeriodsInfo
)
...
@@ -84,7 +84,7 @@ public class BaseContractPeriodsInfoController extends BaseController
...
@@ -84,7 +84,7 @@ public class BaseContractPeriodsInfoController extends BaseController
/**
/**
* 修改合同期限
* 修改合同期限
*/
*/
@PreAuthorize
(
"@ss.hasPermi('contractPeriods:info:edit')"
)
//
@PreAuthorize("@ss.hasPermi('contractPeriods:info:edit')")
@Log
(
title
=
"合同期限"
,
businessType
=
BusinessType
.
UPDATE
)
@Log
(
title
=
"合同期限"
,
businessType
=
BusinessType
.
UPDATE
)
@PutMapping
@PutMapping
public
AjaxResult
edit
(
@RequestBody
BaseContractPeriodsInfo
baseContractPeriodsInfo
)
public
AjaxResult
edit
(
@RequestBody
BaseContractPeriodsInfo
baseContractPeriodsInfo
)
...
@@ -95,7 +95,7 @@ public class BaseContractPeriodsInfoController extends BaseController
...
@@ -95,7 +95,7 @@ public class BaseContractPeriodsInfoController extends BaseController
/**
/**
* 删除合同期限
* 删除合同期限
*/
*/
@PreAuthorize
(
"@ss.hasPermi('contractPeriods:info:remove')"
)
//
@PreAuthorize("@ss.hasPermi('contractPeriods:info:remove')")
@Log
(
title
=
"合同期限"
,
businessType
=
BusinessType
.
DELETE
)
@Log
(
title
=
"合同期限"
,
businessType
=
BusinessType
.
DELETE
)
@DeleteMapping
(
"/{ids}"
)
@DeleteMapping
(
"/{ids}"
)
public
AjaxResult
remove
(
@PathVariable
Long
[]
ids
)
public
AjaxResult
remove
(
@PathVariable
Long
[]
ids
)
...
...
ruoyi-admin/src/main/java/com/ruoyi/web/controller/business/BaseCustomFollowRecordController.java
View file @
9f42d2b8
...
@@ -38,7 +38,7 @@ public class BaseCustomFollowRecordController extends BaseController
...
@@ -38,7 +38,7 @@ public class BaseCustomFollowRecordController extends BaseController
/**
/**
* 查询客户跟踪记录列表
* 查询客户跟踪记录列表
*/
*/
@PreAuthorize
(
"@ss.hasPermi('customFollow:record:list')"
)
//
@PreAuthorize("@ss.hasPermi('customFollow:record:list')")
@GetMapping
(
"/list"
)
@GetMapping
(
"/list"
)
public
TableDataInfo
list
(
BaseCustomFollowRecord
baseCustomFollowRecord
)
public
TableDataInfo
list
(
BaseCustomFollowRecord
baseCustomFollowRecord
)
{
{
...
@@ -50,7 +50,7 @@ public class BaseCustomFollowRecordController extends BaseController
...
@@ -50,7 +50,7 @@ public class BaseCustomFollowRecordController extends BaseController
/**
/**
* 导出客户跟踪记录列表
* 导出客户跟踪记录列表
*/
*/
@PreAuthorize
(
"@ss.hasPermi('customFollow:record:export')"
)
//
@PreAuthorize("@ss.hasPermi('customFollow:record:export')")
@Log
(
title
=
"客户跟踪记录"
,
businessType
=
BusinessType
.
EXPORT
)
@Log
(
title
=
"客户跟踪记录"
,
businessType
=
BusinessType
.
EXPORT
)
@PostMapping
(
"/export"
)
@PostMapping
(
"/export"
)
public
void
export
(
HttpServletResponse
response
,
BaseCustomFollowRecord
baseCustomFollowRecord
)
public
void
export
(
HttpServletResponse
response
,
BaseCustomFollowRecord
baseCustomFollowRecord
)
...
@@ -63,7 +63,7 @@ public class BaseCustomFollowRecordController extends BaseController
...
@@ -63,7 +63,7 @@ public class BaseCustomFollowRecordController extends BaseController
/**
/**
* 获取客户跟踪记录详细信息
* 获取客户跟踪记录详细信息
*/
*/
@PreAuthorize
(
"@ss.hasPermi('customFollow:record:query')"
)
//
@PreAuthorize("@ss.hasPermi('customFollow:record:query')")
@GetMapping
(
value
=
"/{id}"
)
@GetMapping
(
value
=
"/{id}"
)
public
AjaxResult
getInfo
(
@PathVariable
(
"id"
)
Long
id
)
public
AjaxResult
getInfo
(
@PathVariable
(
"id"
)
Long
id
)
{
{
...
@@ -73,7 +73,7 @@ public class BaseCustomFollowRecordController extends BaseController
...
@@ -73,7 +73,7 @@ public class BaseCustomFollowRecordController extends BaseController
/**
/**
* 新增客户跟踪记录
* 新增客户跟踪记录
*/
*/
@PreAuthorize
(
"@ss.hasPermi('customFollow:record:add')"
)
//
@PreAuthorize("@ss.hasPermi('customFollow:record:add')")
@Log
(
title
=
"客户跟踪记录"
,
businessType
=
BusinessType
.
INSERT
)
@Log
(
title
=
"客户跟踪记录"
,
businessType
=
BusinessType
.
INSERT
)
@PostMapping
@PostMapping
public
AjaxResult
add
(
@RequestBody
BaseCustomFollowRecord
baseCustomFollowRecord
)
public
AjaxResult
add
(
@RequestBody
BaseCustomFollowRecord
baseCustomFollowRecord
)
...
@@ -85,7 +85,7 @@ public class BaseCustomFollowRecordController extends BaseController
...
@@ -85,7 +85,7 @@ public class BaseCustomFollowRecordController extends BaseController
/**
/**
* 修改客户跟踪记录
* 修改客户跟踪记录
*/
*/
@PreAuthorize
(
"@ss.hasPermi('customFollow:record:edit')"
)
//
@PreAuthorize("@ss.hasPermi('customFollow:record:edit')")
@Log
(
title
=
"客户跟踪记录"
,
businessType
=
BusinessType
.
UPDATE
)
@Log
(
title
=
"客户跟踪记录"
,
businessType
=
BusinessType
.
UPDATE
)
@PutMapping
@PutMapping
public
AjaxResult
edit
(
@RequestBody
BaseCustomFollowRecord
baseCustomFollowRecord
)
public
AjaxResult
edit
(
@RequestBody
BaseCustomFollowRecord
baseCustomFollowRecord
)
...
@@ -96,7 +96,7 @@ public class BaseCustomFollowRecordController extends BaseController
...
@@ -96,7 +96,7 @@ public class BaseCustomFollowRecordController extends BaseController
/**
/**
* 删除客户跟踪记录
* 删除客户跟踪记录
*/
*/
@PreAuthorize
(
"@ss.hasPermi('customFollow:record:remove')"
)
//
@PreAuthorize("@ss.hasPermi('customFollow:record:remove')")
@Log
(
title
=
"客户跟踪记录"
,
businessType
=
BusinessType
.
DELETE
)
@Log
(
title
=
"客户跟踪记录"
,
businessType
=
BusinessType
.
DELETE
)
@DeleteMapping
(
"/{ids}"
)
@DeleteMapping
(
"/{ids}"
)
public
AjaxResult
remove
(
@PathVariable
Long
[]
ids
)
public
AjaxResult
remove
(
@PathVariable
Long
[]
ids
)
...
...
ruoyi-admin/src/main/java/com/ruoyi/web/controller/business/BaseCustomInfoController.java
View file @
9f42d2b8
...
@@ -38,7 +38,7 @@ public class BaseCustomInfoController extends BaseController
...
@@ -38,7 +38,7 @@ public class BaseCustomInfoController extends BaseController
/**
/**
* 查询客户信息列表
* 查询客户信息列表
*/
*/
@PreAuthorize
(
"@ss.hasPermi('custom:info:list')"
)
//
@PreAuthorize("@ss.hasPermi('custom:info:list')")
@GetMapping
(
"/list"
)
@GetMapping
(
"/list"
)
public
TableDataInfo
list
(
BaseCustomInfo
baseCustomInfo
)
public
TableDataInfo
list
(
BaseCustomInfo
baseCustomInfo
)
{
{
...
@@ -50,7 +50,7 @@ public class BaseCustomInfoController extends BaseController
...
@@ -50,7 +50,7 @@ public class BaseCustomInfoController extends BaseController
/**
/**
* 导出客户信息列表
* 导出客户信息列表
*/
*/
@PreAuthorize
(
"@ss.hasPermi('custom:info:export')"
)
//
@PreAuthorize("@ss.hasPermi('custom:info:export')")
@Log
(
title
=
"客户信息"
,
businessType
=
BusinessType
.
EXPORT
)
@Log
(
title
=
"客户信息"
,
businessType
=
BusinessType
.
EXPORT
)
@PostMapping
(
"/export"
)
@PostMapping
(
"/export"
)
public
void
export
(
HttpServletResponse
response
,
BaseCustomInfo
baseCustomInfo
)
public
void
export
(
HttpServletResponse
response
,
BaseCustomInfo
baseCustomInfo
)
...
@@ -63,7 +63,7 @@ public class BaseCustomInfoController extends BaseController
...
@@ -63,7 +63,7 @@ public class BaseCustomInfoController extends BaseController
/**
/**
* 获取客户信息详细信息
* 获取客户信息详细信息
*/
*/
@PreAuthorize
(
"@ss.hasPermi('custom:info:query')"
)
//
@PreAuthorize("@ss.hasPermi('custom:info:query')")
@GetMapping
(
value
=
"/{id}"
)
@GetMapping
(
value
=
"/{id}"
)
public
AjaxResult
getInfo
(
@PathVariable
(
"id"
)
Long
id
)
public
AjaxResult
getInfo
(
@PathVariable
(
"id"
)
Long
id
)
{
{
...
@@ -73,7 +73,7 @@ public class BaseCustomInfoController extends BaseController
...
@@ -73,7 +73,7 @@ public class BaseCustomInfoController extends BaseController
/**
/**
* 新增客户信息
* 新增客户信息
*/
*/
@PreAuthorize
(
"@ss.hasPermi('custom:info:add')"
)
//
@PreAuthorize("@ss.hasPermi('custom:info:add')")
@Log
(
title
=
"客户信息"
,
businessType
=
BusinessType
.
INSERT
)
@Log
(
title
=
"客户信息"
,
businessType
=
BusinessType
.
INSERT
)
@PostMapping
@PostMapping
public
AjaxResult
add
(
@RequestBody
BaseCustomInfo
baseCustomInfo
)
public
AjaxResult
add
(
@RequestBody
BaseCustomInfo
baseCustomInfo
)
...
@@ -84,7 +84,7 @@ public class BaseCustomInfoController extends BaseController
...
@@ -84,7 +84,7 @@ public class BaseCustomInfoController extends BaseController
/**
/**
* 修改客户信息
* 修改客户信息
*/
*/
@PreAuthorize
(
"@ss.hasPermi('custom:info:edit')"
)
//
@PreAuthorize("@ss.hasPermi('custom:info:edit')")
@Log
(
title
=
"客户信息"
,
businessType
=
BusinessType
.
UPDATE
)
@Log
(
title
=
"客户信息"
,
businessType
=
BusinessType
.
UPDATE
)
@PutMapping
@PutMapping
public
AjaxResult
edit
(
@RequestBody
BaseCustomInfo
baseCustomInfo
)
public
AjaxResult
edit
(
@RequestBody
BaseCustomInfo
baseCustomInfo
)
...
@@ -95,7 +95,7 @@ public class BaseCustomInfoController extends BaseController
...
@@ -95,7 +95,7 @@ public class BaseCustomInfoController extends BaseController
/**
/**
* 删除客户信息
* 删除客户信息
*/
*/
@PreAuthorize
(
"@ss.hasPermi('custom:info:remove')"
)
//
@PreAuthorize("@ss.hasPermi('custom:info:remove')")
@Log
(
title
=
"客户信息"
,
businessType
=
BusinessType
.
DELETE
)
@Log
(
title
=
"客户信息"
,
businessType
=
BusinessType
.
DELETE
)
@DeleteMapping
(
"/{ids}"
)
@DeleteMapping
(
"/{ids}"
)
public
AjaxResult
remove
(
@PathVariable
Long
[]
ids
)
public
AjaxResult
remove
(
@PathVariable
Long
[]
ids
)
...
...
ruoyi-admin/src/main/java/com/ruoyi/web/controller/business/BaseInvoiceInfoController.java
View file @
9f42d2b8
...
@@ -38,7 +38,7 @@ public class BaseInvoiceInfoController extends BaseController
...
@@ -38,7 +38,7 @@ public class BaseInvoiceInfoController extends BaseController
/**
/**
* 查询开票信息列表
* 查询开票信息列表
*/
*/
@PreAuthorize
(
"@ss.hasPermi('invoice:info:list')"
)
//
@PreAuthorize("@ss.hasPermi('invoice:info:list')")
@GetMapping
(
"/list"
)
@GetMapping
(
"/list"
)
public
TableDataInfo
list
(
BaseInvoiceInfo
baseInvoiceInfo
)
public
TableDataInfo
list
(
BaseInvoiceInfo
baseInvoiceInfo
)
{
{
...
@@ -50,7 +50,7 @@ public class BaseInvoiceInfoController extends BaseController
...
@@ -50,7 +50,7 @@ public class BaseInvoiceInfoController extends BaseController
/**
/**
* 导出开票信息列表
* 导出开票信息列表
*/
*/
@PreAuthorize
(
"@ss.hasPermi('invoice:info:export')"
)
//
@PreAuthorize("@ss.hasPermi('invoice:info:export')")
@Log
(
title
=
"开票信息"
,
businessType
=
BusinessType
.
EXPORT
)
@Log
(
title
=
"开票信息"
,
businessType
=
BusinessType
.
EXPORT
)
@PostMapping
(
"/export"
)
@PostMapping
(
"/export"
)
public
void
export
(
HttpServletResponse
response
,
BaseInvoiceInfo
baseInvoiceInfo
)
public
void
export
(
HttpServletResponse
response
,
BaseInvoiceInfo
baseInvoiceInfo
)
...
@@ -63,7 +63,7 @@ public class BaseInvoiceInfoController extends BaseController
...
@@ -63,7 +63,7 @@ public class BaseInvoiceInfoController extends BaseController
/**
/**
* 获取开票信息详细信息
* 获取开票信息详细信息
*/
*/
@PreAuthorize
(
"@ss.hasPermi('invoice:info:query')"
)
//
@PreAuthorize("@ss.hasPermi('invoice:info:query')")
@GetMapping
(
value
=
"/{id}"
)
@GetMapping
(
value
=
"/{id}"
)
public
AjaxResult
getInfo
(
@PathVariable
(
"id"
)
Long
id
)
public
AjaxResult
getInfo
(
@PathVariable
(
"id"
)
Long
id
)
{
{
...
@@ -73,7 +73,7 @@ public class BaseInvoiceInfoController extends BaseController
...
@@ -73,7 +73,7 @@ public class BaseInvoiceInfoController extends BaseController
/**
/**
* 新增开票信息
* 新增开票信息
*/
*/
@PreAuthorize
(
"@ss.hasPermi('invoice:info:add')"
)
//
@PreAuthorize("@ss.hasPermi('invoice:info:add')")
@Log
(
title
=
"开票信息"
,
businessType
=
BusinessType
.
INSERT
)
@Log
(
title
=
"开票信息"
,
businessType
=
BusinessType
.
INSERT
)
@PostMapping
@PostMapping
public
AjaxResult
add
(
@RequestBody
BaseInvoiceInfo
baseInvoiceInfo
)
public
AjaxResult
add
(
@RequestBody
BaseInvoiceInfo
baseInvoiceInfo
)
...
@@ -84,7 +84,7 @@ public class BaseInvoiceInfoController extends BaseController
...
@@ -84,7 +84,7 @@ public class BaseInvoiceInfoController extends BaseController
/**
/**
* 修改开票信息
* 修改开票信息
*/
*/
@PreAuthorize
(
"@ss.hasPermi('invoice:info:edit')"
)
//
@PreAuthorize("@ss.hasPermi('invoice:info:edit')")
@Log
(
title
=
"开票信息"
,
businessType
=
BusinessType
.
UPDATE
)
@Log
(
title
=
"开票信息"
,
businessType
=
BusinessType
.
UPDATE
)
@PutMapping
@PutMapping
public
AjaxResult
edit
(
@RequestBody
BaseInvoiceInfo
baseInvoiceInfo
)
public
AjaxResult
edit
(
@RequestBody
BaseInvoiceInfo
baseInvoiceInfo
)
...
@@ -95,7 +95,7 @@ public class BaseInvoiceInfoController extends BaseController
...
@@ -95,7 +95,7 @@ public class BaseInvoiceInfoController extends BaseController
/**
/**
* 删除开票信息
* 删除开票信息
*/
*/
@PreAuthorize
(
"@ss.hasPermi('invoice:info:remove')"
)
//
@PreAuthorize("@ss.hasPermi('invoice:info:remove')")
@Log
(
title
=
"开票信息"
,
businessType
=
BusinessType
.
DELETE
)
@Log
(
title
=
"开票信息"
,
businessType
=
BusinessType
.
DELETE
)
@DeleteMapping
(
"/{ids}"
)
@DeleteMapping
(
"/{ids}"
)
public
AjaxResult
remove
(
@PathVariable
Long
[]
ids
)
public
AjaxResult
remove
(
@PathVariable
Long
[]
ids
)
...
...
ruoyi-admin/src/main/java/com/ruoyi/web/controller/business/BasePaymentCollectionInfoController.java
View file @
9f42d2b8
...
@@ -38,7 +38,7 @@ public class BasePaymentCollectionInfoController extends BaseController
...
@@ -38,7 +38,7 @@ public class BasePaymentCollectionInfoController extends BaseController
/**
/**
* 查询回款信息列表
* 查询回款信息列表
*/
*/
@PreAuthorize
(
"@ss.hasPermi('paymentCollection:info:list')"
)
//
@PreAuthorize("@ss.hasPermi('paymentCollection:info:list')")
@GetMapping
(
"/list"
)
@GetMapping
(
"/list"
)
public
TableDataInfo
list
(
BasePaymentCollectionInfo
basePaymentCollectionInfo
)
public
TableDataInfo
list
(
BasePaymentCollectionInfo
basePaymentCollectionInfo
)
{
{
...
@@ -50,7 +50,7 @@ public class BasePaymentCollectionInfoController extends BaseController
...
@@ -50,7 +50,7 @@ public class BasePaymentCollectionInfoController extends BaseController
/**
/**
* 导出回款信息列表
* 导出回款信息列表
*/
*/
@PreAuthorize
(
"@ss.hasPermi('paymentCollection:info:export')"
)
//
@PreAuthorize("@ss.hasPermi('paymentCollection:info:export')")
@Log
(
title
=
"回款信息"
,
businessType
=
BusinessType
.
EXPORT
)
@Log
(
title
=
"回款信息"
,
businessType
=
BusinessType
.
EXPORT
)
@PostMapping
(
"/export"
)
@PostMapping
(
"/export"
)
public
void
export
(
HttpServletResponse
response
,
BasePaymentCollectionInfo
basePaymentCollectionInfo
)
public
void
export
(
HttpServletResponse
response
,
BasePaymentCollectionInfo
basePaymentCollectionInfo
)
...
@@ -63,7 +63,7 @@ public class BasePaymentCollectionInfoController extends BaseController
...
@@ -63,7 +63,7 @@ public class BasePaymentCollectionInfoController extends BaseController
/**
/**
* 获取回款信息详细信息
* 获取回款信息详细信息
*/
*/
@PreAuthorize
(
"@ss.hasPermi('paymentCollection:info:query')"
)
//
@PreAuthorize("@ss.hasPermi('paymentCollection:info:query')")
@GetMapping
(
value
=
"/{id}"
)
@GetMapping
(
value
=
"/{id}"
)
public
AjaxResult
getInfo
(
@PathVariable
(
"id"
)
Long
id
)
public
AjaxResult
getInfo
(
@PathVariable
(
"id"
)
Long
id
)
{
{
...
@@ -73,7 +73,7 @@ public class BasePaymentCollectionInfoController extends BaseController
...
@@ -73,7 +73,7 @@ public class BasePaymentCollectionInfoController extends BaseController
/**
/**
* 新增回款信息
* 新增回款信息
*/
*/
@PreAuthorize
(
"@ss.hasPermi('paymentCollection:info:add')"
)
//
@PreAuthorize("@ss.hasPermi('paymentCollection:info:add')")
@Log
(
title
=
"回款信息"
,
businessType
=
BusinessType
.
INSERT
)
@Log
(
title
=
"回款信息"
,
businessType
=
BusinessType
.
INSERT
)
@PostMapping
@PostMapping
public
AjaxResult
add
(
@RequestBody
BasePaymentCollectionInfo
basePaymentCollectionInfo
)
public
AjaxResult
add
(
@RequestBody
BasePaymentCollectionInfo
basePaymentCollectionInfo
)
...
@@ -84,7 +84,7 @@ public class BasePaymentCollectionInfoController extends BaseController
...
@@ -84,7 +84,7 @@ public class BasePaymentCollectionInfoController extends BaseController
/**
/**
* 修改回款信息
* 修改回款信息
*/
*/
@PreAuthorize
(
"@ss.hasPermi('paymentCollection:info:edit')"
)
//
@PreAuthorize("@ss.hasPermi('paymentCollection:info:edit')")
@Log
(
title
=
"回款信息"
,
businessType
=
BusinessType
.
UPDATE
)
@Log
(
title
=
"回款信息"
,
businessType
=
BusinessType
.
UPDATE
)
@PutMapping
@PutMapping
public
AjaxResult
edit
(
@RequestBody
BasePaymentCollectionInfo
basePaymentCollectionInfo
)
public
AjaxResult
edit
(
@RequestBody
BasePaymentCollectionInfo
basePaymentCollectionInfo
)
...
@@ -95,7 +95,7 @@ public class BasePaymentCollectionInfoController extends BaseController
...
@@ -95,7 +95,7 @@ public class BasePaymentCollectionInfoController extends BaseController
/**
/**
* 删除回款信息
* 删除回款信息
*/
*/
@PreAuthorize
(
"@ss.hasPermi('paymentCollection:info:remove')"
)
//
@PreAuthorize("@ss.hasPermi('paymentCollection:info:remove')")
@Log
(
title
=
"回款信息"
,
businessType
=
BusinessType
.
DELETE
)
@Log
(
title
=
"回款信息"
,
businessType
=
BusinessType
.
DELETE
)
@DeleteMapping
(
"/{ids}"
)
@DeleteMapping
(
"/{ids}"
)
public
AjaxResult
remove
(
@PathVariable
Long
[]
ids
)
public
AjaxResult
remove
(
@PathVariable
Long
[]
ids
)
...
...
ruoyi-admin/src/main/java/com/ruoyi/web/controller/business/BaseSubjectInfoController.java
View file @
9f42d2b8
...
@@ -38,7 +38,7 @@ public class BaseSubjectInfoController extends BaseController
...
@@ -38,7 +38,7 @@ public class BaseSubjectInfoController extends BaseController
/**
/**
* 查询主体信息列表
* 查询主体信息列表
*/
*/
@PreAuthorize
(
"@ss.hasPermi('subject:info:list')"
)
//
@PreAuthorize("@ss.hasPermi('subject:info:list')")
@GetMapping
(
"/list"
)
@GetMapping
(
"/list"
)
public
TableDataInfo
list
(
BaseSubjectInfo
baseSubjectInfo
)
public
TableDataInfo
list
(
BaseSubjectInfo
baseSubjectInfo
)
{
{
...
@@ -50,7 +50,7 @@ public class BaseSubjectInfoController extends BaseController
...
@@ -50,7 +50,7 @@ public class BaseSubjectInfoController extends BaseController
/**
/**
* 导出主体信息列表
* 导出主体信息列表
*/
*/
@PreAuthorize
(
"@ss.hasPermi('subject:info:export')"
)
//
@PreAuthorize("@ss.hasPermi('subject:info:export')")
@Log
(
title
=
"主体信息"
,
businessType
=
BusinessType
.
EXPORT
)
@Log
(
title
=
"主体信息"
,
businessType
=
BusinessType
.
EXPORT
)
@PostMapping
(
"/export"
)
@PostMapping
(
"/export"
)
public
void
export
(
HttpServletResponse
response
,
BaseSubjectInfo
baseSubjectInfo
)
public
void
export
(
HttpServletResponse
response
,
BaseSubjectInfo
baseSubjectInfo
)
...
@@ -63,7 +63,7 @@ public class BaseSubjectInfoController extends BaseController
...
@@ -63,7 +63,7 @@ public class BaseSubjectInfoController extends BaseController
/**
/**
* 获取主体信息详细信息
* 获取主体信息详细信息
*/
*/
@PreAuthorize
(
"@ss.hasPermi('subject:info:query')"
)
//
@PreAuthorize("@ss.hasPermi('subject:info:query')")
@GetMapping
(
value
=
"/{id}"
)
@GetMapping
(
value
=
"/{id}"
)
public
AjaxResult
getInfo
(
@PathVariable
(
"id"
)
Long
id
)
public
AjaxResult
getInfo
(
@PathVariable
(
"id"
)
Long
id
)
{
{
...
@@ -73,7 +73,7 @@ public class BaseSubjectInfoController extends BaseController
...
@@ -73,7 +73,7 @@ public class BaseSubjectInfoController extends BaseController
/**
/**
* 新增主体信息
* 新增主体信息
*/
*/
@PreAuthorize
(
"@ss.hasPermi('subject:info:add')"
)
//
@PreAuthorize("@ss.hasPermi('subject:info:add')")
@Log
(
title
=
"主体信息"
,
businessType
=
BusinessType
.
INSERT
)
@Log
(
title
=
"主体信息"
,
businessType
=
BusinessType
.
INSERT
)
@PostMapping
@PostMapping
public
AjaxResult
add
(
@RequestBody
BaseSubjectInfo
baseSubjectInfo
)
public
AjaxResult
add
(
@RequestBody
BaseSubjectInfo
baseSubjectInfo
)
...
@@ -84,7 +84,7 @@ public class BaseSubjectInfoController extends BaseController
...
@@ -84,7 +84,7 @@ public class BaseSubjectInfoController extends BaseController
/**
/**
* 修改主体信息
* 修改主体信息
*/
*/
@PreAuthorize
(
"@ss.hasPermi('subject:info:edit')"
)
//
@PreAuthorize("@ss.hasPermi('subject:info:edit')")
@Log
(
title
=
"主体信息"
,
businessType
=
BusinessType
.
UPDATE
)
@Log
(
title
=
"主体信息"
,
businessType
=
BusinessType
.
UPDATE
)
@PutMapping
@PutMapping
public
AjaxResult
edit
(
@RequestBody
BaseSubjectInfo
baseSubjectInfo
)
public
AjaxResult
edit
(
@RequestBody
BaseSubjectInfo
baseSubjectInfo
)
...
@@ -95,7 +95,7 @@ public class BaseSubjectInfoController extends BaseController
...
@@ -95,7 +95,7 @@ public class BaseSubjectInfoController extends BaseController
/**
/**
* 删除主体信息
* 删除主体信息
*/
*/
@PreAuthorize
(
"@ss.hasPermi('subject:info:remove')"
)
//
@PreAuthorize("@ss.hasPermi('subject:info:remove')")
@Log
(
title
=
"主体信息"
,
businessType
=
BusinessType
.
DELETE
)
@Log
(
title
=
"主体信息"
,
businessType
=
BusinessType
.
DELETE
)
@DeleteMapping
(
"/{ids}"
)
@DeleteMapping
(
"/{ids}"
)
public
AjaxResult
remove
(
@PathVariable
Long
[]
ids
)
public
AjaxResult
remove
(
@PathVariable
Long
[]
ids
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment