|
|
@@ -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
|
* 查询速率列表
|