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.
80 lines
1.8 KiB
80 lines
1.8 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ICSSoft.ERPWMS.Entity
|
|
{
|
|
public class CreateASNEntity
|
|
{
|
|
//表头ID
|
|
public string ID { get; set; }
|
|
|
|
//送货单号
|
|
public string ASNCode { get; set; }
|
|
|
|
//供应商编码
|
|
public string VenCode { get; set; }
|
|
|
|
//状态(0:开立;1:审核中;2:已审核;);默认2
|
|
public string Status { get; set; }
|
|
|
|
//操作人编码
|
|
public string MUSER { get; set; }
|
|
|
|
//操作人名称
|
|
public string MUSERName { get; set; }
|
|
|
|
//站点
|
|
public string WorkPoint { get; set; }
|
|
|
|
//操作时间
|
|
public DateTime? MTIME { get; set; }
|
|
|
|
//自定义字段
|
|
public string EATTRIBUTE1 { get; set; }
|
|
|
|
//表体对象数组
|
|
public List<CreateASNDetailEntity> list { get; set; }
|
|
}
|
|
|
|
public class CreateASNDetailEntity
|
|
{
|
|
//表体ID
|
|
public string ID { get; set; }
|
|
|
|
//送货单号
|
|
public string ASNCode { get; set; }
|
|
|
|
//行号
|
|
public string Sequence { get; set; }
|
|
|
|
//条码
|
|
public string LotNo { get; set; }
|
|
|
|
//数量
|
|
public decimal? Quantity { get; set; }
|
|
|
|
//辅计量数量
|
|
public decimal Amount { get; set; }
|
|
|
|
//实际到货数量
|
|
public decimal DNQuantity { get; set; }
|
|
|
|
//实际到货辅计量数量
|
|
public decimal DNAmount { get; set; }
|
|
|
|
//操作人编码
|
|
public string MUSER { get; set; }
|
|
|
|
//操作人名称
|
|
public string MUSERName { get; set; }
|
|
|
|
//站点
|
|
public string WorkPoint { get; set; }
|
|
|
|
//操作时间
|
|
public DateTime? MTIME { get; set; }
|
|
}
|
|
}
|