namespace WIDESEA_DTO
{
public class LocationChangeRecordDto
{
///
/// 货位编码
///
public string LocationCode { get; set; }
///
/// 货位ID
///
public int LocationId { get; set; }
///
/// 变更前状态
///
public int BeforeStatus { get; set; }
///
/// 变更后状态
///
public int AfterStatus { get; set; }
///
/// 变更类型
///
public int ChangeType { get; set; }
///
/// 货位编码
///
public int TaskNum { get; set; } = 0;
}
}