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.

22 lines
443 B

2 years ago
using System;
namespace Win_in.Sfs.Wms.DataExchange.WMS.UnplannedReceiptNote;
public class UnplannedReceiptNoteExchangeDto
{
/// <summary>
/// 单据号
/// </summary>
public string Number { get; set; }
/// <summary>
/// 操作员
/// </summary>
public string Worker { get; set; }
/// <summary>
/// 生效日期
/// </summary>
public DateTime ActiveDate { get; set; } = DateTime.Now.Date;
}