pblbackend/DOAN.Model/PBL/Dto/InventorylogDto.cs

49 lines
1.1 KiB
C#

namespace DOAN.Model.PBL.Dto
{
/// <summary>
/// 库存日志查询对象
/// </summary>
public class InventorylogQueryDto : PagerInfo
{
public string RackCode { get; set; }
public string Partnumber { get; set; }
public int? Operation { get; set; }
}
/// <summary>
/// 库存日志输入输出对象
/// </summary>
public class InventorylogDto
{
[Required(ErrorMessage = "雪花不能为空")]
public string Id { get; set; }
public string RackCode { get; set; }
public string Partnumber { get; set; }
public int? Operation { get; set; }
public int? PackageNum { get; set; }
public string CreatedBy { get; set; }
public DateTime? CreatedTime { get; set; }
public string UpdatedBy { get; set; }
public DateTime? UpdatedTime { get; set; }
}
/// <summary>
/// 库存日志查询对象
/// </summary>
public class InventorylogExportDto
{
public string StartTime { get; set; }
public string EndTime { get; set; }
}
}