using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ICSSoft.Entity.PU_ArrivalVouch { public class PU_ArrivalVouchs { /// /// 到货单表体主键ID /// public string AutoID { get; set; } /// /// 主计量数量 /// public decimal iQuantity { get; set; } /// /// 辅计量数量 /// public decimal iNum { get; set; } /// /// 批次 /// public string cBatch { get; set; } /// /// 物料编号 /// public string cInvCode { get; set; } } }