|
|
@@ -199,6 +199,9 @@ public class SupplyServiceImpl implements ISupplyService {
|
|
|
*/
|
|
|
@Override
|
|
|
public TrendStatisticsRes trendStatistics(String landType) {
|
|
|
+ if(StringUtils.isBlank(landType) || landType.matches("[0]+")){
|
|
|
+ landType = null;
|
|
|
+ }
|
|
|
//这里合并两部分数据
|
|
|
List<TdgyStatisticsRes> completeList = new ArrayList<>();
|
|
|
List<TdgyStatisticsRes> completeBusinessStatusList = dgyMapper.getListByYear(null, landType, null, null);
|