chenshudong před 3 dny
rodič
revize
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
 import org.springframework.beans.factory.annotation.Autowired;
7
 import org.springframework.beans.factory.annotation.Autowired;
8
 import org.springframework.web.bind.annotation.GetMapping;
8
 import org.springframework.web.bind.annotation.GetMapping;
9
 import org.springframework.web.bind.annotation.PostMapping;
9
 import org.springframework.web.bind.annotation.PostMapping;
10
-import org.springframework.web.bind.annotation.PutMapping;
11
 import org.springframework.web.bind.annotation.DeleteMapping;
10
 import org.springframework.web.bind.annotation.DeleteMapping;
12
 import org.springframework.web.bind.annotation.PathVariable;
11
 import org.springframework.web.bind.annotation.PathVariable;
13
 import org.springframework.web.bind.annotation.RequestBody;
12
 import org.springframework.web.bind.annotation.RequestBody;
@@ -18,7 +17,7 @@ import com.sundot.airport.common.core.controller.BaseController;
18
 import com.sundot.airport.common.core.domain.AjaxResult;
17
 import com.sundot.airport.common.core.domain.AjaxResult;
19
 import com.sundot.airport.common.enums.BusinessType;
18
 import com.sundot.airport.common.enums.BusinessType;
20
 import com.sundot.airport.blocked.domain.BlockedRate;
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
 import com.sundot.airport.common.utils.poi.ExcelUtil;
21
 import com.sundot.airport.common.utils.poi.ExcelUtil;
23
 import com.sundot.airport.common.core.page.TableDataInfo;
22
 import com.sundot.airport.common.core.page.TableDataInfo;
24
 import org.springframework.web.multipart.MultipartFile;
23
 import org.springframework.web.multipart.MultipartFile;
@@ -33,7 +32,7 @@ import org.springframework.web.multipart.MultipartFile;
33
 @RequestMapping("/blocked/rate")
32
 @RequestMapping("/blocked/rate")
34
 public class BlockedRateController extends BaseController {
33
 public class BlockedRateController extends BaseController {
35
     @Autowired
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
  * @author ruoyi
11
  * @author ruoyi
12
  * @date 2026-04-13
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
 import org.springframework.stereotype.Service;
17
 import org.springframework.stereotype.Service;
18
 import com.sundot.airport.blocked.mapper.BlockedRateMapper;
18
 import com.sundot.airport.blocked.mapper.BlockedRateMapper;
19
 import com.sundot.airport.blocked.domain.BlockedRate;
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
 import org.springframework.transaction.annotation.Transactional;
21
 import org.springframework.transaction.annotation.Transactional;
22
 
22
 
23
 /**
23
 /**
@@ -27,7 +27,7 @@ import org.springframework.transaction.annotation.Transactional;
27
  * @date 2026-04-13
27
  * @date 2026-04-13
28
  */
28
  */
29
 @Service
29
 @Service
30
-public class BlockedRateServiceImpl extends ServiceImpl<BlockedRateMapper, BlockedRate> implements BlockedRateService {
30
+public class BlockedRateServiceImpl extends ServiceImpl<BlockedRateMapper, BlockedRate> implements IBlockedRateService {
31
     @Autowired
31
     @Autowired
32
     private BlockedRateMapper blockedRateMapper;
32
     private BlockedRateMapper blockedRateMapper;
33
     @Autowired
33
     @Autowired