You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.1 KiB
48 lines
1.1 KiB
1 year ago
|
using System;
|
||
|
using System.ComponentModel.DataAnnotations;
|
||
|
|
||
|
namespace Win_in.Sfs.Wms.DataExchange.WMS.MesNote;
|
||
|
public class MesNoteExchangeDto
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 上架单号
|
||
|
/// </summary>
|
||
|
[Display(Name = "移库单号")]
|
||
|
public string Number { get; set; }
|
||
|
/// <summary>
|
||
|
/// MES请求单号
|
||
|
/// </summary>
|
||
|
[Display(Name = "MES请求单号")]
|
||
|
public string MesRequestNumber { get; set; }
|
||
|
|
||
|
|
||
|
/// <summary>
|
||
|
/// 生效日期
|
||
|
/// </summary>
|
||
|
[Display(Name = "生效日期")]
|
||
|
public DateTime ActiveDate { get; set; } = DateTime.Now.Date;
|
||
|
|
||
|
/// <summary>
|
||
|
/// 操作员
|
||
|
/// </summary>
|
||
|
[Display(Name = "操作员")]
|
||
|
public string Worker { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 调拨类型
|
||
|
/// </summary>
|
||
|
[Display(Name = "调拨类型")]
|
||
|
public string Type { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 备注
|
||
|
/// </summary>
|
||
|
[Display(Name = "备注")]
|
||
|
public string Remark { get; set; }
|
||
|
/// <summary>
|
||
|
/// 明细列表
|
||
|
/// </summary>
|
||
|
[Display(Name = "明细列表")]
|
||
|
public MesNoteDetailExchangeDto Detail { get; set; } = new();
|
||
|
}
|