IStationService.java 300 Bytes
package com.huaheng.pc.general.station.service;

import com.huaheng.pc.general.station.domain.Station;

import java.util.List;

/**
 * @author ricard
 * @time 2019/5/5
 * 站台服务层
 */
public interface IStationService {

    //查找站台
    List<Station> selectlist(String warehouseCode);
}