Browse Source

无车自有车接口权限注解添加

mashengyi 2 years ago
parent
commit
603511878d

+ 11 - 11
src/main/java/com/jkcredit/invoice/controller/business/NoCarController.java

@@ -151,7 +151,7 @@ public class NoCarController {
      */
     @PostMapping("/findBillWay")
     @ApiOperation(value = "分页查询无车运单信息", notes = "分页查询无车运单信息")
-    @LoginRequired
+    @LoginRequired(role = AuthenticationInterceptor.AUTH_NOCAR)
     public RespR findBillWay(Page page, NoCarWayBill noCarWayBill, User user) {
         try {
             checkHasAuthRole.checkCustomerRole(user, noCarWayBill.getCustomerName());
@@ -181,7 +181,7 @@ public class NoCarController {
      */
     @PostMapping("/findBillWayCust")
     @ApiOperation(value = "分页查询无车运单信息", notes = "分页查询无车运单信息")
-    @LoginRequired
+    @LoginRequired(role = AuthenticationInterceptor.AUTH_NOCAR)
     public RespR findBillWayCust(Page page, NoCarWayBill noCarWayBill, User user) {
         try {
             checkHasAuthRole.checkCustomerRole(user, noCarWayBill.getCustomerName());
@@ -204,7 +204,7 @@ public class NoCarController {
      */
     @PostMapping("/findImportBillWay")
     @ApiOperation(value = "分页查询无车运单信息", notes = "分页查询无车运单信息")
-    @LoginRequired
+    @LoginRequired(role = AuthenticationInterceptor.AUTH_NOCAR)
     public RespR findImportBillWay(Page page, NoCarWayBill noCarWayBill, User user) {
         try {
             checkHasAuthRole.checkCustomerRole(user, noCarWayBill.getCustomerName());
@@ -274,7 +274,7 @@ public class NoCarController {
      */
     @PostMapping("/findNocarInvoices")
     @ApiOperation(value = "分页查询无车发票信息", notes = "分页查询无车发票信息")
-    @LoginRequired
+    @LoginRequired(role = AuthenticationInterceptor.AUTH_NOCAR)
     public RespR findNocarInvoices(Page page, BillInvoice billInvoice, User user) {
         try {
             checkHasAuthRole.checkCustomerRole(user, billInvoice.getCustomerName());
@@ -393,7 +393,7 @@ public class NoCarController {
      */
     @PostMapping("/findNocarInvoicesStatic")
     @ApiOperation(value = "分页查询无车发票统计信息", notes = "分页查询无车发票统计信息")
-    @LoginRequired
+    @LoginRequired(role = AuthenticationInterceptor.AUTH_NOCAR)
     public RespR findNocarInvoicesStatic(BillInvoice billInvoice, User user) {
         checkHasAuthRole.checkCustomerRole(user, billInvoice.getCustomerName());
         try {
@@ -423,7 +423,7 @@ public class NoCarController {
      */
     @PostMapping("/batchImprotBillWay")
     @ApiOperation(value = "批量运单导入", notes = "批量运单导入")
-    @LoginRequired
+    @LoginRequired(role = AuthenticationInterceptor.AUTH_NOCAR)
     public RespR batchImprotBillWay(@RequestParam("file") MultipartFile file, String customerName, User user) {
         try {
 
@@ -457,7 +457,7 @@ public class NoCarController {
      */
     @PostMapping("/batchImprotHistoryBillWay")
     @ApiOperation(value = "批量历史运单导入", notes = "批量历史运单导入")
-    @LoginRequired
+    @LoginRequired(role = AuthenticationInterceptor.AUTH_NOCAR)
     public RespR batchImprotHistoryBillWay(@RequestParam("file") MultipartFile file, String customerName, User user) {
         try {
 
@@ -492,7 +492,7 @@ public class NoCarController {
      */
     @PostMapping("/batchImprotEndBillWay")
     @ApiOperation(value = "批量运单结束", notes = "批量运单结束")
-    @LoginRequired
+    @LoginRequired(role = AuthenticationInterceptor.AUTH_NOCAR)
     public RespR batchImprotEndBillWay(@RequestParam("file") MultipartFile file, String customerName, User user) {
 
         if(null == file){
@@ -650,7 +650,7 @@ public class NoCarController {
      */
     @PostMapping("/findBatchList")
     @ApiOperation(value = "运单批次号查询", notes = "运单批次号查询")
-    @LoginRequired
+    @LoginRequired(role = AuthenticationInterceptor.AUTH_NOCAR)
     public RespR findBatchList(Page page, CustomerOper customerOper, User user) {
         try {
             checkHasAuthRole.checkCustomerRole(user, customerOper.getCustomerName());
@@ -670,7 +670,7 @@ public class NoCarController {
      */
     @PostMapping("/findNocarCalculateInfo")
     @ApiOperation(value = "分页查询无车计费信息", notes = "分页查询无车计费信息")
-    @LoginRequired
+    @LoginRequired(role = AuthenticationInterceptor.AUTH_NOCAR)
     public RespR findNocarCalculateInfo(Page page, NoCarCalculateInfor carCalculateInfor, User user) {
         try {
             checkHasAuthRole.checkCustomerRole(user, carCalculateInfor.getCustomId());
@@ -691,7 +691,7 @@ public class NoCarController {
      */
     @PostMapping("/findNocarCalculateInfoStatis")
     @ApiOperation(value = "分页查询无车计费统计信息", notes = "分页查询无车计费统计信息")
-    @LoginRequired
+    @LoginRequired(role = AuthenticationInterceptor.AUTH_NOCAR)
     public RespR findNocarCalculateInfoStatis(NoCarCalculateInfor carCalculateInfor, User user) {
         try {
             checkHasAuthRole.checkCustomerRole(user, carCalculateInfor.getCustomId());

+ 10 - 10
src/main/java/com/jkcredit/invoice/controller/business/SelfCarController.java

@@ -112,7 +112,7 @@ public class SelfCarController {
      */
     @PostMapping("/findTrades")
     @ApiOperation(value = "分页查询自有车交易信息", notes = "分页查询自有车交易信息")
-    @LoginRequired
+    @LoginRequired(role = AuthenticationInterceptor.AUTH_SELFCAR)
     public RespR findTrades(Page page, SelfCarTrade selfCarTrade, User user) {
         try {
             checkHasAuthRole.checkCustomerRole(user, selfCarTrade.getCustomId());
@@ -133,7 +133,7 @@ public class SelfCarController {
      */
     @PostMapping("/findTradesUpper")
     @ApiOperation(value = "分页查询自有车交易信息", notes = "分页查询自有车交易信息")
-    @LoginRequired
+    @LoginRequired(role = AuthenticationInterceptor.AUTH_SELFCAR)
     public RespR findTradesUpper(Page page, SelfCarTrade selfCarTrade, User user) {
         try {
             checkHasAuthRole.checkCustomerRole(user, selfCarTrade.getCustomId());
@@ -202,7 +202,7 @@ public class SelfCarController {
      */
     @PostMapping("/updateTrades")
     @ApiOperation(value = "更新交易id状态", notes = "更新交易id状态")
-    @LoginRequired
+    @LoginRequired(role = AuthenticationInterceptor.AUTH_SELFCAR)
     public void updateTrades(String selfCarTradesStr, String companyName, User user) {
         try {
             if(!checkHasAuthRole.checkMessage(selfCarTradesStr,companyName)){
@@ -268,7 +268,7 @@ public class SelfCarController {
      */
     @PostMapping("/findSelfCarInvoices")
     @ApiOperation(value = "分页查询自有车发票信息", notes = "分页查询自有车发票信息")
-    @LoginRequired
+    @LoginRequired(role = AuthenticationInterceptor.AUTH_SELFCAR)
     public RespR findSelfCarInvoices(Page page, SelfCarInvoice selfCarInvoice, User user) {
         try {
             checkHasAuthRole.checkCustomerRole(user, selfCarInvoice.getCustomerName());
@@ -316,7 +316,7 @@ public class SelfCarController {
      */
     @PostMapping("/findSelfcarCalculateInfo")
     @ApiOperation(value = "分页查询自有车计费信息", notes = "分页查询自有车计费信息")
-    @LoginRequired
+    @LoginRequired(role = AuthenticationInterceptor.AUTH_SELFCAR)
     public RespR findSelfcarCalculateInfo(Page page, SelfCarCalculateInfor carCalculateInfor, User user) {
         try {
             checkHasAuthRole.checkCustomerRole(user, carCalculateInfor.getCustomId());
@@ -341,7 +341,7 @@ public class SelfCarController {
      */
     @PostMapping("/findSelfcarAppls")
     @ApiOperation(value = "分页查询自有车申请信息", notes = "分页查询自有车申请信息")
-    @LoginRequired
+    @LoginRequired(role = AuthenticationInterceptor.AUTH_SELFCAR)
     public RespR findSelfcarAppls(Page page, SelfCarAppl selfCarAppl, User user) {
         try {
             checkHasAuthRole.checkCustomerRole(user, selfCarAppl.getCustomId());
@@ -361,7 +361,7 @@ public class SelfCarController {
      */
     @PostMapping("/findSelfcarCalculateInfoSta")
     @ApiOperation(value = "自有车计费统计信息", notes = "自有车计费统计信息")
-    @LoginRequired
+    @LoginRequired(role = AuthenticationInterceptor.AUTH_SELFCAR)
     public RespR findSelfcarCalculateInfoSta(SelfCarCalculateInfor carCalculateInfor, User user) {
         try {
             checkHasAuthRole.checkCustomerRole(user, carCalculateInfor.getCustomId());
@@ -384,7 +384,7 @@ public class SelfCarController {
      */
     @PostMapping("/getTradeList")
     @ApiOperation(value = "获取需要开票的交易Id列表", notes = "获取需要开票的交易Id列表")
-    @LoginRequired
+    @LoginRequired(role = AuthenticationInterceptor.AUTH_SELFCAR)
     public RespR getTradeList(@RequestBody TradeRequestCarNumVo tradeRequestCarNumVo, User user) {
 
         if(!checkHasAuthRole.checkMessage(tradeRequestCarNumVo.getCarNum())){
@@ -422,7 +422,7 @@ public class SelfCarController {
      */
     @PostMapping("/applTradeList")
     @ApiOperation(value = "根据车牌号进行开票操作", notes = "根据车牌号进行开票操作")
-    @LoginRequired
+    @LoginRequired(role = AuthenticationInterceptor.AUTH_SELFCAR)
     public RespR applTradeList(@RequestBody TradeRequestCarNumVo tradeRequestCarNumVo, User user) {
 
         if(!checkHasAuthRole.checkMessage(tradeRequestCarNumVo.getCarIdStr())){
@@ -472,7 +472,7 @@ public class SelfCarController {
      */
     @PostMapping("/findSelfcarInvoiceByTime")
     @ApiOperation(value = "通过时间,车牌号查询开票信息", notes = "通过时间,车牌号查询开票信息")
-    @LoginRequired
+    @LoginRequired(role = AuthenticationInterceptor.AUTH_SELFCAR)
     public RespR findSelfcarInvoiceByTime(@RequestBody SelfcarInvoiceByTimeVo selfcarInvoiceByTimeVo, User user) {
         try {