using WIDESEA_DTO; namespace WIDESEA_IStorageBasicRepository; public interface ILocationStatusChangeRecordRepository : IRepository { /// /// 添加货位变动记录 /// /// 数据模型 /// bool AddStatusChangeRecord(LocationChangeRecordDto changeRecordDto); void AddLocationStatusChangeRecord(DtLocationInfo locationInfo, int lastStatus, int changeType, int? taskNum); void AddLocationStatusChangeRecord(List locationInfos, int newStatus, int changeType, List? taskNums); }