OtherStationInfoService.java 249 B

123456789101112
  1. package com.jiayue.biz.service;
  2. import com.jiayue.biz.domain.OtherStationInfo;
  3. import java.util.List;
  4. public interface OtherStationInfoService {
  5. //查询全省其他场站基本信息
  6. List<OtherStationInfo> selectOtherStationInfo();
  7. }