|
@@ -51,8 +51,8 @@ public class AirInstallController extends BaseController {
|
|
|
* 查询装机信息列表All
|
|
|
*/
|
|
|
@SaCheckPermission("als:airInstall:list")
|
|
|
- @GetMapping("/listAll")
|
|
|
- public CommonResult<List<AirInstallVo>> listAll(AirInstallBo airInstallBo) {
|
|
|
+ @PostMapping("/listAll")
|
|
|
+ public CommonResult<List<AirInstallVo>> listAll(@RequestBody AirInstallBo airInstallBo) {
|
|
|
return CommonResult.success(airInstallService.selectList(airInstallBo));
|
|
|
}
|
|
|
|