123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace NX.ERP.Model.Purchase
- {
- /// <summary>
- /// 到货明细
- /// </summary>
- public class ArrivalDetail
- {
- private int id;
- private string _MaterialCode;
- public int ArrivalDtlId { get => id; set => id = value; }
- public int ArrivalID { get => arrivalID; set => arrivalID = value; }
- public string MaterialCode { get => _MaterialCode; set => _MaterialCode = value; }
- public string BatchNo { get => batchNo; set => batchNo = value; }
- public string UnitCode { get => unitCode; set => unitCode = value; }
- public decimal Qty { get => quantity; set => quantity = value; }
- public decimal RealQuantity { get; set; }
- /// <summary>
- /// 审批状态2 说明已经审核过了
- /// </summary>
- private int arrivalID;
- private string batchNo;
- private string unitCode;
- private decimal quantity;
- private int iverifystateex;
- [Newtonsoft.Json.JsonIgnore]
- public int posId { get; set; }
- [Newtonsoft.Json.JsonIgnore]
- public string OrderCode { get; set; }
- [Newtonsoft.Json.JsonIgnore]
- public int PoId { get; set; }
- [Newtonsoft.Json.JsonIgnore]
- public double oricost { get; set; }
- [Newtonsoft.Json.JsonIgnore]
- public double oritaxcost { get; set; }
- [Newtonsoft.Json.JsonIgnore]
- public double orimoney { get; set; }
- [Newtonsoft.Json.JsonIgnore]
- public double oritaxprice { get; set; }
- [Newtonsoft.Json.JsonIgnore]
- public double orisum { get; set; }
- [Newtonsoft.Json.JsonIgnore]
- public int Iverifystateex { get => iverifystateex; set => iverifystateex = value; }
- [Newtonsoft.Json.JsonIgnore]
- public double cost { get; set; }
- // b.ioricost as oricost,b.ioritaxcost as oritaxcost ,b.iorimoney as orimoney,b.oritaxprice as oritaxprice,b.iorisum as orisum,
- }
- }
|