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.
27 lines
588 B
27 lines
588 B
using Volo.Abp.Domain.Entities;
|
|
|
|
namespace Win_in.Sfs.Wms.DataExchange.Domain.Fawtyg.PullTask;
|
|
|
|
public class PullTask : Entity<long>
|
|
{
|
|
/// <summary>
|
|
/// 单号
|
|
/// </summary>
|
|
public string no { get; set; }
|
|
/// <summary>
|
|
/// 物料
|
|
/// </summary>
|
|
public string Itemno { get; set; }
|
|
/// <summary>
|
|
/// 到货储位
|
|
/// </summary>
|
|
public string Plant { get; set; }
|
|
/// <summary>
|
|
/// 数量
|
|
/// </summary>
|
|
public string Planqty { get; set; }
|
|
/// <summary>
|
|
/// 单号
|
|
/// </summary>
|
|
public int Yl1 { get; set; }
|
|
}
|
|
|