wanshenmean
8 天以前 bbd5f9e91680d013fb7cfdb313139c4bd83890eb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
using WIDESEA_Common.LocationEnum;
using WIDESEA_Core.BaseRepository;
using WIDESEA_Core.BaseServices;
using WIDESEA_Model.Models;
 
namespace WIDESEA_IRecordService
{
    /// <summary>
    /// 货位状态变更记录服务接口
    /// </summary>
    public interface ILocationStatusChangeRecordService : IService<Dt_LocationStatusChangeRecord>
    {
        /// <summary>
        /// 获取货位状态变更记录仓储接口
        /// </summary>
        IRepository<Dt_LocationStatusChangeRecord> Repository { get; }
 
        /// <summary>
        /// 记录货位状态变更。
        /// </summary>
        Task<bool> AddChangeRecordAsync(
            Dt_LocationInfo beforeLocation,
            Dt_LocationInfo afterLocation,
            LocationChangeType changeType,
            int? taskNum = null,
            string? orderNo = null,
            int? orderId = null,
            string? remark = null);
    }
}