37 lines
939 B
C#
37 lines
939 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace DOAN.Model.MES.mm.Dto
|
|
{
|
|
/// <summary>
|
|
/// 线边库出入库日志查询对象
|
|
/// </summary>
|
|
public class MmLinesidebarInventoryOutboundAndInboundQueryDto : PagerInfo
|
|
{}
|
|
|
|
/// <summary>
|
|
/// 线边库出入库日志输入输出对象
|
|
/// </summary>
|
|
public class MmLinesidebarInventoryOutboundAndInboundDto
|
|
{
|
|
[Required(ErrorMessage = "雪花不能为空")]
|
|
public string Id { get; set; }
|
|
|
|
public string LineCode { get; set; }
|
|
|
|
public string MaterialCode { get; set; }
|
|
|
|
public string MaterialName { get; set; }
|
|
|
|
public int? Action { get; set; }
|
|
|
|
public decimal Quantity { get; set; }
|
|
|
|
public string CreatedBy { get; set; }
|
|
|
|
public DateTime? CreatedTime { get; set; }
|
|
|
|
public string UpdatedBy { get; set; }
|
|
|
|
public DateTime? UpdatedTime { get; set; }
|
|
}
|
|
} |