1
刘磊
2024-12-26 e5642daf4b6820d0706967e486b16e8d33a46d6d
Code Management/WMS/WIDESEA_WMSServer/WIDESEA_IStorageBasicRepository/Location/ILocationStatusChangeRecordRepository.cs
@@ -1,5 +1,13 @@
namespace WIDESEA_IStorageBasicRepository;
using WIDESEA_DTO;
namespace WIDESEA_IStorageBasicRepository;
public interface ILocationStatusChangeRecordRepository : IRepository<DtLocationStatusChangeRecord>
{
    /// <summary>
    /// 添加货位变动记录
    /// </summary>
    /// <param name="changeRecordDto">数据模型</param>
    /// <returns></returns>
    bool AddStatusChangeRecord(LocationChangeRecordDto changeRecordDto);
}