wanshenmean
2026-03-30 b430ac7952d637b6eb9021cc37277402233c9c01
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using WIDESEA_Core;
 
namespace WIDESEA_IRecordService
{
    /// <summary>
    /// 记录服务聚合接口
    /// </summary>
    public interface IRecordService : IDependency
    {
        /// <summary>
        /// 货位状态变更记录服务
        /// </summary>
        ILocationStatusChangeRecordService LocationStatusChangeRecordService { get; }
 
        /// <summary>
        /// 库存数量变更记录服务
        /// </summary>
        IStockQuantityChangeRecordService StockQuantityChangeRecordService { get; }
    }
}