|
@@ -1,5 +1,6 @@
|
|
|
package com.onemap.analyse.service.impl;
|
|
|
|
|
|
+import com.onemap.analyse.domain.vo.RawTableLengthVo;
|
|
|
import com.onemap.analyse.domain.vo.RawTableVo;
|
|
|
import com.onemap.analyse.domain.vo.TargetTableVo;
|
|
|
import com.onemap.analyse.mapper.vector.TableDataMapper;
|
|
@@ -7,6 +8,7 @@ import com.onemap.analyse.service.ITableDateService;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
|
|
import javax.annotation.Resource;
|
|
|
+import java.util.Collections;
|
|
|
import java.util.List;
|
|
|
import java.util.Map;
|
|
|
|
|
@@ -21,6 +23,11 @@ public class TableDateServiceImpl implements ITableDateService {
|
|
|
return list;
|
|
|
}
|
|
|
|
|
|
+ @Override
|
|
|
+ public List<Map<String, Object>> getRawTableLength(RawTableLengthVo rawTableLengthVo) {
|
|
|
+ return tableDataMapper.getRawTableLength(rawTableLengthVo);
|
|
|
+ }
|
|
|
+
|
|
|
@Override
|
|
|
public List<Map<String, Object>> getTargetTable(TargetTableVo targetTableVo) {
|
|
|
List<Map<String, Object>> list = tableDataMapper.getTargetTable(targetTableVo);
|