| | |
| | | import java.util.concurrent.CountDownLatch; |
| | | import java.util.concurrent.atomic.AtomicInteger; |
| | | |
| | | import com.yssh.dao.QxshMapper; |
| | | import com.yssh.dao.*; |
| | | import com.yssh.entity.*; |
| | | import com.yssh.utils.*; |
| | | import org.slf4j.Logger; |
| | |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | import com.google.common.collect.Lists; |
| | | import com.yssh.dao.DictRecordMapper; |
| | | import com.yssh.dao.FeedbackMapper; |
| | | import com.yssh.dao.SuYuanMapper; |
| | | import com.yssh.service.IAsyncService; |
| | | import com.yssh.service.ICommonService; |
| | | import com.yssh.service.ISuYuanService; |
| | |
| | | |
| | | @Resource |
| | | private QxshMapper qxshMapper; |
| | | |
| | | @Resource |
| | | private LocationMapper locationMapper; |
| | | |
| | | //@Transactional |
| | | //@Override |
| | |
| | | |
| | | return suYuanMapper.selectSuYuan700ById(id, time); |
| | | } |
| | | |
| | | @Override |
| | | public String selectAddrByXY(double x, double y) { |
| | | List<Location> locations = locationMapper.selectByXY(x, y); |
| | | if (null != locations && locations.size() > 0) { |
| | | return locations.get(0).getName(); |
| | | } |
| | | |
| | | |
| | | return null; |
| | | } |
| | | } |