z8018
2025-06-10 f17b9af381df693428022d915dc51f670aef64a7
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;
    }
}