12345678910111213141516171819202122232425262728 |
- package com.jiayue.biz.service.impl;
- import com.jiayue.biz.domain.OtherStationInfo;
- import com.jiayue.biz.service.OtherStationInfoService;
- import lombok.AllArgsConstructor;
- import org.springframework.data.mongodb.core.MongoTemplate;
- import org.springframework.data.mongodb.core.query.Query;
- import org.springframework.stereotype.Service;
- import java.util.List;
- @Service
- @AllArgsConstructor
- public class OtherStationInfoServiceImpl implements OtherStationInfoService {
- private final MongoTemplate mongoTemplate;
- //查询全省其他场站基本信息
- public List<OtherStationInfo> selectOtherStationInfo(){
- return mongoTemplate.find(new Query(),OtherStationInfo.class,"other_station_info");
- }
- }
|