1
xiazhengtongxue
10 小时以前 8120089e80f4873fb3f67ecb8405a460f3a1afbb
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_IStockService
{
    /// <summary>
    /// 库存明细服务接口
    /// </summary>
    public interface IStockInfoDetailService : IService<Dt_StockInfoDetail>
    {
        /// <summary>
        /// 获取库存明细仓储接口
        /// </summary>
        IRepository<Dt_StockInfoDetail> Repository { get; }
    }
}