shgx_tz_mom/ZR.Model/MES/wms/Dto/WmPolishInventoryDto.cs

66 lines
1.4 KiB
C#

using System.ComponentModel.DataAnnotations;
namespace ZR.Model.MES.wms.Dto
{
/// <summary>
/// 工艺路线-抛光 库存表查询对象
/// </summary>
public class WmPolishInventoryQueryDto : PagerInfo
{
public string BlankNum { get; set; }
public string Partnumber { get; set; }
public string Description { get; set; }
public int? Type { get; set; }
public int? Status { get; set; }
}
/// <summary>
/// 工艺路线-抛光 库存表输入输出对象
/// </summary>
public class WmPolishInventoryDto
{
public string Id { get; set; }
public string BlankNum { get; set; }
public string Partnumber { get; set; }
public string Color { get; set; }
public string Specification { get; set; }
public string Description { get; set; }
public int? Quantity { get; set; }
public int? MaxNum { get; set; }
public int? MinNum { get; set; }
public int? WarnNum { get; set; }
public int? Type { get; set; }
public int? Status { get; set; }
public string Remark { get; set; }
public DateTime? ActionTime { get; set; }
public string CreatedBy { get; set; }
public DateTime? CreatedTime { get; set; }
public string UpdatedBy { get; set; }
public DateTime? UpdatedTime { get; set; }
}
}