StationServiceImpl.java 596 Bytes
package com.huaheng.pc.general.station.service;

import com.huaheng.pc.general.station.domain.Station;
import com.huaheng.pc.general.station.mapper.StationMapper;
import org.springframework.stereotype.Service;

import javax.annotation.Resource;
import java.util.List;

/**
 * @author ricard
 * @time 2019/5/5
 * 站台实现层
 */
@Service
public class StationServiceImpl implements IStationService {
    @Resource
    private StationMapper stationMapper;

    @Override
    public List<Station> selectlist(String warehouseCode) {
        return stationMapper.selectlist(warehouseCode);
    }
}