wanshenmean
2026-03-30 e4f68445aabdbbbf38845ba1af6f15348b00af02
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; }
    }
}