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.

26 lines
537 B

2 years ago
using System;
namespace Win_in.Sfs.Wms.DataExchange.WMS.UnplannedIssueNote;
public class UnplannedIssueNoteExchangeDto
{
/// <summary>
/// 单据号
/// </summary>
public string Number { get; set; }
/// <summary>
/// 操作员
/// </summary>
public string Worker { get; set; }
/// <summary>
/// 创建人id
/// </summary>
public Guid? CreatorId { get; set; }
2 years ago
/// <summary>
/// 生效日期
/// </summary>
public DateTime ActiveDate { get; set; } = DateTime.Now.Date;
}