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.
|
|
|
using System;
|
|
|
|
using Win_in.Sfs.Shared.Domain.Shared.Enums.Store;
|
|
|
|
|
|
|
|
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; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 生效日期
|
|
|
|
/// </summary>
|
|
|
|
public DateTime ActiveDate { get; set; } = DateTime.Now.Date;
|
|
|
|
/// <summary>
|
|
|
|
/// 领料类别
|
|
|
|
/// </summary>
|
|
|
|
public EnumUnplannedIssueType UnplannedIssueType { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 计划外出库请求单号
|
|
|
|
/// </summary>
|
|
|
|
public string UnplannedIssueRequestNumber { get; set; }
|
|
|
|
}
|