소스 검색

速率表

chenshudong 3 일 전
부모
커밋
f6ba3a3583

+ 2 - 3
airport-admin/src/main/java/com/sundot/airport/web/controller/blocked/BlockedRateController.java

@@ -7,7 +7,6 @@ import org.springframework.security.access.prepost.PreAuthorize;
7 7
 import org.springframework.beans.factory.annotation.Autowired;
8 8
 import org.springframework.web.bind.annotation.GetMapping;
9 9
 import org.springframework.web.bind.annotation.PostMapping;
10
-import org.springframework.web.bind.annotation.PutMapping;
11 10
 import org.springframework.web.bind.annotation.DeleteMapping;
12 11
 import org.springframework.web.bind.annotation.PathVariable;
13 12
 import org.springframework.web.bind.annotation.RequestBody;
@@ -18,7 +17,7 @@ import com.sundot.airport.common.core.controller.BaseController;
18 17
 import com.sundot.airport.common.core.domain.AjaxResult;
19 18
 import com.sundot.airport.common.enums.BusinessType;
20 19
 import com.sundot.airport.blocked.domain.BlockedRate;
21
-import com.sundot.airport.blocked.service.BlockedRateService;
20
+import com.sundot.airport.blocked.service.IBlockedRateService;
22 21
 import com.sundot.airport.common.utils.poi.ExcelUtil;
23 22
 import com.sundot.airport.common.core.page.TableDataInfo;
24 23
 import org.springframework.web.multipart.MultipartFile;
@@ -33,7 +32,7 @@ import org.springframework.web.multipart.MultipartFile;
33 32
 @RequestMapping("/blocked/rate")
34 33
 public class BlockedRateController extends BaseController {
35 34
     @Autowired
36
-    private BlockedRateService blockedRateService;
35
+    private IBlockedRateService blockedRateService;
37 36
 
38 37
     /**
39 38
      * 查询速率列表

+ 1 - 1
airport-blocked/src/main/java/com/sundot/airport/blocked/service/BlockedRateService.java

@@ -11,7 +11,7 @@ import com.sundot.airport.blocked.domain.BlockedRate;
11 11
  * @author ruoyi
12 12
  * @date 2026-04-13
13 13
  */
14
-public interface BlockedRateService extends IService<BlockedRate> {
14
+public interface IBlockedRateService extends IService<BlockedRate> {
15 15
     /**
16 16
      * 查询速率
17 17
      *

+ 2 - 2
airport-blocked/src/main/java/com/sundot/airport/blocked/service/impl/BlockedRateServiceImpl.java

@@ -17,7 +17,7 @@ import org.springframework.beans.factory.annotation.Autowired;
17 17
 import org.springframework.stereotype.Service;
18 18
 import com.sundot.airport.blocked.mapper.BlockedRateMapper;
19 19
 import com.sundot.airport.blocked.domain.BlockedRate;
20
-import com.sundot.airport.blocked.service.BlockedRateService;
20
+import com.sundot.airport.blocked.service.IBlockedRateService;
21 21
 import org.springframework.transaction.annotation.Transactional;
22 22
 
23 23
 /**
@@ -27,7 +27,7 @@ import org.springframework.transaction.annotation.Transactional;
27 27
  * @date 2026-04-13
28 28
  */
29 29
 @Service
30
-public class BlockedRateServiceImpl extends ServiceImpl<BlockedRateMapper, BlockedRate> implements BlockedRateService {
30
+public class BlockedRateServiceImpl extends ServiceImpl<BlockedRateMapper, BlockedRate> implements IBlockedRateService {
31 31
     @Autowired
32 32
     private BlockedRateMapper blockedRateMapper;
33 33
     @Autowired