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