yanjinhui
2026-03-05 2a849d2f6220733dea112d09eb1f0bfb8fa2e28f
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
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 GetInStationInfo(string fromLocationCode);
        /// <summary>
        /// 获取出库站台
        /// </summary>
        /// <param name="fromLocationCode"></param>
        /// <returns></returns>
        Dt_StationManger GetOutStationInfo(string fromLocationCode);
    }
}