Commit 9f42d2b8 authored by EDY's avatar EDY

解除权限

parent 6032ee08
......@@ -38,7 +38,7 @@ public class BaseContractAuditRecordController extends BaseController
/**
* 查询合同审核记录列表
*/
@PreAuthorize("@ss.hasPermi('contractAudit:record:list')")
// // @PreAuthorize("@ss.hasPermi('contractAudit:record:list')")
@GetMapping("/list")
public TableDataInfo list(BaseContractAuditRecord baseContractAuditRecord)
{
......@@ -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)
@PostMapping("/export")
public void export(HttpServletResponse response, BaseContractAuditRecord baseContractAuditRecord)
......@@ -63,7 +63,7 @@ public class BaseContractAuditRecordController extends BaseController
/**
* 获取合同审核记录详细信息
*/
@PreAuthorize("@ss.hasPermi('contractAudit:record:query')")
// // @PreAuthorize("@ss.hasPermi('contractAudit:record:query')")
@GetMapping(value = "/{id}")
public AjaxResult getInfo(@PathVariable("id") Long id)
{
......@@ -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)
@PostMapping
public AjaxResult add(@RequestBody BaseContractAuditRecord baseContractAuditRecord)
......@@ -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)
@PutMapping
public AjaxResult edit(@RequestBody BaseContractAuditRecord baseContractAuditRecord)
......@@ -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)
@DeleteMapping("/{ids}")
public AjaxResult remove(@PathVariable Long[] ids)
......
......@@ -65,7 +65,7 @@ public class BaseContractInfoController extends BaseController {
/**
* 查询合同信息列表
*/
@PreAuthorize("@ss.hasPermi('contract:info:list')")
// // @PreAuthorize("@ss.hasPermi('contract:info:list')")
@GetMapping("/list")
public TableDataInfo list(BaseContractInfo baseContractInfo) {
startPage();
......@@ -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)
@PostMapping("/export")
public void export(HttpServletResponse response, BaseContractInfo baseContractInfo) {
......@@ -88,7 +88,7 @@ public class BaseContractInfoController extends BaseController {
/**
* 获取合同信息详细信息
*/
@PreAuthorize("@ss.hasPermi('contract:info:query')")
// // @PreAuthorize("@ss.hasPermi('contract:info:query')")
@GetMapping(value = "/{id}")
public AjaxResult getInfo(@PathVariable("id") Long id) {
return success(baseContractInfoService.selectBaseContractInfoById(id));
......@@ -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)
@PostMapping
public AjaxResult add(@RequestBody BaseContractInfo baseContractInfo) {
......@@ -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)
@PutMapping
public AjaxResult edit(@RequestBody BaseContractInfo baseContractInfo) {
......@@ -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)
@DeleteMapping("/{ids}")
public AjaxResult remove(@PathVariable Long[] ids) {
......
......@@ -38,7 +38,7 @@ public class BaseContractPeriodsInfoController extends BaseController
/**
* 查询合同期限列表
*/
@PreAuthorize("@ss.hasPermi('contractPeriods:info:list')")
// @PreAuthorize("@ss.hasPermi('contractPeriods:info:list')")
@GetMapping("/list")
public TableDataInfo list(BaseContractPeriodsInfo baseContractPeriodsInfo)
{
......@@ -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)
@PostMapping("/export")
public void export(HttpServletResponse response, BaseContractPeriodsInfo baseContractPeriodsInfo)
......@@ -63,7 +63,7 @@ public class BaseContractPeriodsInfoController extends BaseController
/**
* 获取合同期限详细信息
*/
@PreAuthorize("@ss.hasPermi('contractPeriods:info:query')")
// @PreAuthorize("@ss.hasPermi('contractPeriods:info:query')")
@GetMapping(value = "/{id}")
public AjaxResult getInfo(@PathVariable("id") Long id)
{
......@@ -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)
@PostMapping
public AjaxResult add(@RequestBody BaseContractPeriodsInfo baseContractPeriodsInfo)
......@@ -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)
@PutMapping
public AjaxResult edit(@RequestBody BaseContractPeriodsInfo baseContractPeriodsInfo)
......@@ -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)
@DeleteMapping("/{ids}")
public AjaxResult remove(@PathVariable Long[] ids)
......
......@@ -38,7 +38,7 @@ public class BaseCustomFollowRecordController extends BaseController
/**
* 查询客户跟踪记录列表
*/
@PreAuthorize("@ss.hasPermi('customFollow:record:list')")
// @PreAuthorize("@ss.hasPermi('customFollow:record:list')")
@GetMapping("/list")
public TableDataInfo list(BaseCustomFollowRecord baseCustomFollowRecord)
{
......@@ -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)
@PostMapping("/export")
public void export(HttpServletResponse response, BaseCustomFollowRecord baseCustomFollowRecord)
......@@ -63,7 +63,7 @@ public class BaseCustomFollowRecordController extends BaseController
/**
* 获取客户跟踪记录详细信息
*/
@PreAuthorize("@ss.hasPermi('customFollow:record:query')")
// @PreAuthorize("@ss.hasPermi('customFollow:record:query')")
@GetMapping(value = "/{id}")
public AjaxResult getInfo(@PathVariable("id") Long id)
{
......@@ -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)
@PostMapping
public AjaxResult add(@RequestBody BaseCustomFollowRecord baseCustomFollowRecord)
......@@ -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)
@PutMapping
public AjaxResult edit(@RequestBody BaseCustomFollowRecord baseCustomFollowRecord)
......@@ -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)
@DeleteMapping("/{ids}")
public AjaxResult remove(@PathVariable Long[] ids)
......
......@@ -38,7 +38,7 @@ public class BaseCustomInfoController extends BaseController
/**
* 查询客户信息列表
*/
@PreAuthorize("@ss.hasPermi('custom:info:list')")
// @PreAuthorize("@ss.hasPermi('custom:info:list')")
@GetMapping("/list")
public TableDataInfo list(BaseCustomInfo baseCustomInfo)
{
......@@ -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)
@PostMapping("/export")
public void export(HttpServletResponse response, BaseCustomInfo baseCustomInfo)
......@@ -63,7 +63,7 @@ public class BaseCustomInfoController extends BaseController
/**
* 获取客户信息详细信息
*/
@PreAuthorize("@ss.hasPermi('custom:info:query')")
// @PreAuthorize("@ss.hasPermi('custom:info:query')")
@GetMapping(value = "/{id}")
public AjaxResult getInfo(@PathVariable("id") Long id)
{
......@@ -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)
@PostMapping
public AjaxResult add(@RequestBody BaseCustomInfo baseCustomInfo)
......@@ -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)
@PutMapping
public AjaxResult edit(@RequestBody BaseCustomInfo baseCustomInfo)
......@@ -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)
@DeleteMapping("/{ids}")
public AjaxResult remove(@PathVariable Long[] ids)
......
......@@ -38,7 +38,7 @@ public class BaseInvoiceInfoController extends BaseController
/**
* 查询开票信息列表
*/
@PreAuthorize("@ss.hasPermi('invoice:info:list')")
// @PreAuthorize("@ss.hasPermi('invoice:info:list')")
@GetMapping("/list")
public TableDataInfo list(BaseInvoiceInfo baseInvoiceInfo)
{
......@@ -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)
@PostMapping("/export")
public void export(HttpServletResponse response, BaseInvoiceInfo baseInvoiceInfo)
......@@ -63,7 +63,7 @@ public class BaseInvoiceInfoController extends BaseController
/**
* 获取开票信息详细信息
*/
@PreAuthorize("@ss.hasPermi('invoice:info:query')")
// @PreAuthorize("@ss.hasPermi('invoice:info:query')")
@GetMapping(value = "/{id}")
public AjaxResult getInfo(@PathVariable("id") Long id)
{
......@@ -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)
@PostMapping
public AjaxResult add(@RequestBody BaseInvoiceInfo baseInvoiceInfo)
......@@ -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)
@PutMapping
public AjaxResult edit(@RequestBody BaseInvoiceInfo baseInvoiceInfo)
......@@ -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)
@DeleteMapping("/{ids}")
public AjaxResult remove(@PathVariable Long[] ids)
......
......@@ -38,7 +38,7 @@ public class BasePaymentCollectionInfoController extends BaseController
/**
* 查询回款信息列表
*/
@PreAuthorize("@ss.hasPermi('paymentCollection:info:list')")
// @PreAuthorize("@ss.hasPermi('paymentCollection:info:list')")
@GetMapping("/list")
public TableDataInfo list(BasePaymentCollectionInfo basePaymentCollectionInfo)
{
......@@ -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)
@PostMapping("/export")
public void export(HttpServletResponse response, BasePaymentCollectionInfo basePaymentCollectionInfo)
......@@ -63,7 +63,7 @@ public class BasePaymentCollectionInfoController extends BaseController
/**
* 获取回款信息详细信息
*/
@PreAuthorize("@ss.hasPermi('paymentCollection:info:query')")
// @PreAuthorize("@ss.hasPermi('paymentCollection:info:query')")
@GetMapping(value = "/{id}")
public AjaxResult getInfo(@PathVariable("id") Long id)
{
......@@ -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)
@PostMapping
public AjaxResult add(@RequestBody BasePaymentCollectionInfo basePaymentCollectionInfo)
......@@ -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)
@PutMapping
public AjaxResult edit(@RequestBody BasePaymentCollectionInfo basePaymentCollectionInfo)
......@@ -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)
@DeleteMapping("/{ids}")
public AjaxResult remove(@PathVariable Long[] ids)
......
......@@ -38,7 +38,7 @@ public class BaseSubjectInfoController extends BaseController
/**
* 查询主体信息列表
*/
@PreAuthorize("@ss.hasPermi('subject:info:list')")
// @PreAuthorize("@ss.hasPermi('subject:info:list')")
@GetMapping("/list")
public TableDataInfo list(BaseSubjectInfo baseSubjectInfo)
{
......@@ -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)
@PostMapping("/export")
public void export(HttpServletResponse response, BaseSubjectInfo baseSubjectInfo)
......@@ -63,7 +63,7 @@ public class BaseSubjectInfoController extends BaseController
/**
* 获取主体信息详细信息
*/
@PreAuthorize("@ss.hasPermi('subject:info:query')")
// @PreAuthorize("@ss.hasPermi('subject:info:query')")
@GetMapping(value = "/{id}")
public AjaxResult getInfo(@PathVariable("id") Long id)
{
......@@ -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)
@PostMapping
public AjaxResult add(@RequestBody BaseSubjectInfo baseSubjectInfo)
......@@ -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)
@PutMapping
public AjaxResult edit(@RequestBody BaseSubjectInfo baseSubjectInfo)
......@@ -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)
@DeleteMapping("/{ids}")
public AjaxResult remove(@PathVariable Long[] ids)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment