1
刘磊
2026-03-05 f45293a0c3c9838567d6ff01eae53157a9ed5284
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using WIDESEA_DTO;
 
namespace WIDESEA_IStorageBasicRepository;
 
public interface ILocationStatusChangeRecordRepository : IRepository<DtLocationStatusChangeRecord>
{
    /// <summary>
    /// 添加货位变动记录
    /// </summary>
    /// <param name="changeRecordDto">数据模型</param>
    /// <returns></returns>
    bool AddStatusChangeRecord(LocationChangeRecordDto changeRecordDto);
 
    void AddLocationStatusChangeRecord(DtLocationInfo locationInfo, int lastStatus, int changeType, int? taskNum);
 
    void AddLocationStatusChangeRecord(List<DtLocationInfo> locationInfos, int newStatus, int changeType, List<int>? taskNums);
}