wanshenmean
18 小时以前 84caf6b9b5fc521b90c88fd0662df9bd8a62d69b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using WIDESEA_Core.BaseRepository;
using WIDESEA_Core.BaseServices;
using WIDESEA_Model.Models;
 
namespace WIDESEA_IBasicService
{
    /// <summary>
    /// 仓库信息服务接口
    /// </summary>
    public interface IWarehouseService : IService<Dt_Warehouse>
    {
        /// <summary>
        /// 获取仓库信息仓储接口
        /// </summary>
        IRepository<Dt_Warehouse> Repository { get; }
    }
}