| | |
| | | private LightPoleHeelingMapper lightPoleHeelingMapper; |
| | | |
| | | /** |
| | | * 查询全部灯杆倾侧告警 |
| | | */ |
| | | public List<LightPoleHeeling> listLightPoleHeeling() { |
| | | LambdaQueryWrapper<LightPoleHeeling> wrapper = Wrappers.lambdaQuery(LightPoleHeeling.class); |
| | | List<LightPoleHeeling> list = list(wrapper); |
| | | |
| | | return list; |
| | | } |
| | | |
| | | /** |
| | | * 模糊查询 |
| | | */ |
| | | public List<LightPoleHeeling> listLightPoleHeelingByKeyword(BaseConditionVO baseConditionVO, LightPoleHeelingListParam lightPoleHeelingListParam) { |
| | |
| | | lightPoleHeelingListParam = new LightPoleHeelingListParam(); |
| | | } |
| | | List<LightPoleHeeling> lightPoleHeelings |
| | | = lightPoleHeelingMapper.listLightPoleHeeling(lightPoleHeelingListParam.getKeyword(), lightPoleHeelingListParam.getProcessingState()); |
| | | = lightPoleHeelingMapper.listLightPoleHeeling(lightPoleHeelingListParam.getKeyword().trim(), lightPoleHeelingListParam.getProcessingState()); |
| | | return lightPoleHeelings; |
| | | } |
| | | |