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.
 
 
 
 
 
 

32 lines
789 B

using System;
using System.ComponentModel.DataAnnotations;
namespace Win_in.Sfs.Wms.DataExchange.WMS.PutawayNote;
public class PutawayNoteExchangeDto
{
/// <summary>
/// 上架单号
/// </summary>
[Display(Name = "上架单号")]
public string Number { get; set; }
/// <summary>
/// 截止日期
/// </summary>
[Display(Name = "截止日期")]
public DateTime DueDate { get; set; }
/// <summary>
/// 生效日期
/// </summary>
[Display(Name = "生效日期")]
public DateTime ActiveDate { get; set; } = DateTime.Now.Date;
/// <summary>
/// 操作员
/// </summary>
[Display(Name = "操作员")]
public string Worker { get; set; }
public PutawayNoteDetailExchangeDto Detail { get; set; } = new();
}