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.
40 lines
988 B
40 lines
988 B
using System;
|
|
using IdentityServer4.Models;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Xml.Linq;
|
|
using Win_in.Sfs.Shared.Domain;
|
|
using Win_in.Sfs.Shared.Domain.Shared.Enums.Store;
|
|
|
|
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>
|
|
/// 创建人id
|
|
/// </summary>
|
|
|
|
public Guid? CreatorId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 生效日期
|
|
/// </summary>
|
|
public DateTime ActiveDate { get; set; } = DateTime.Now.Date;
|
|
/// <summary>
|
|
/// 退料类别
|
|
/// </summary>
|
|
public EnumUnplannedReceiptType UnplannedReceiptType { get; set; }
|
|
/// <summary>
|
|
/// 计划外入库请求单号
|
|
/// </summary>
|
|
public string UnplannedReceiptRequestNumber { get; set; }
|
|
|
|
}
|
|
|