1
z8018
2025-06-10 2eb8c40c3bfeb1ac777b72e02aea485119e9d158
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
using WIDESEAWCS_Core.BaseRepository;
using WIDESEAWCS_Core.BaseServices;
using WIDESEAWCS_IWMSPart;
using WIDESEAWCS_Model.Models;
 
namespace WIDESEAWCS_WMSPart
{
    /// <summary>
    /// 库存明细历史信息业务接实现层
    /// </summary>
    public partial class StockInfoDetail_HtyService : ServiceBase<Dt_StockInfoDetail_Hty, IRepository<Dt_StockInfoDetail_Hty>>, IStockInfoDetail_HtyService
    {
        public StockInfoDetail_HtyService(IRepository<Dt_StockInfoDetail_Hty> BaseDal) : base(BaseDal)
        {
        }
        public IRepository<Dt_StockInfoDetail_Hty> Repository => BaseDal;
    }
}