dengjunjie
2026-03-06 b834b2c0977af30a5040c9b8416d930608fc845d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WIDESEAWCS_Core.BaseRepository;
using WIDESEAWCS_Core.BaseServices;
using WIDESEAWCS_Model.Models;
 
namespace WIDESEAWCS_IBasicInfoService
{
    public interface IStationMangerService : IService<Dt_StationManger>
    {
        public IRepository<Dt_StationManger> Repository { get; }
        /// <summary>
        /// 获取站台信息
        /// </summary>
        /// <param name="fromLocationCode"></param>
        /// <returns></returns>
        Dt_StationManger GetStationInfo(string fromLocationCode);
        /// <summary>
        /// 获取入库站台
        /// </summary>
        /// <param name="fromLocationCode"></param>
        /// <returns></returns>
        Dt_StationManger GetInStationInfo(string fromLocationCode);
        /// <summary>
        /// 获取出库站台
        /// </summary>
        /// <param name="fromLocationCode"></param>
        /// <returns></returns>
        Dt_StationManger GetOutStationInfo(string fromLocationCode);
    }
}