ArrivalDetail.cs 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace NX.ERP.Model.Purchase
  6. {
  7. /// <summary>
  8. /// 到货明细
  9. /// </summary>
  10. public class ArrivalDetail
  11. {
  12. private int id;
  13. private string _MaterialCode;
  14. public int ArrivalDtlId { get => id; set => id = value; }
  15. public int ArrivalID { get => arrivalID; set => arrivalID = value; }
  16. public string MaterialCode { get => _MaterialCode; set => _MaterialCode = value; }
  17. public string BatchNo { get => batchNo; set => batchNo = value; }
  18. public string UnitCode { get => unitCode; set => unitCode = value; }
  19. public decimal Qty { get => quantity; set => quantity = value; }
  20. public decimal RealQuantity { get; set; }
  21. /// <summary>
  22. /// 审批状态2 说明已经审核过了
  23. /// </summary>
  24. private int arrivalID;
  25. private string batchNo;
  26. private string unitCode;
  27. private decimal quantity;
  28. private int iverifystateex;
  29. [Newtonsoft.Json.JsonIgnore]
  30. public int posId { get; set; }
  31. [Newtonsoft.Json.JsonIgnore]
  32. public string OrderCode { get; set; }
  33. [Newtonsoft.Json.JsonIgnore]
  34. public int PoId { get; set; }
  35. [Newtonsoft.Json.JsonIgnore]
  36. public double oricost { get; set; }
  37. [Newtonsoft.Json.JsonIgnore]
  38. public double oritaxcost { get; set; }
  39. [Newtonsoft.Json.JsonIgnore]
  40. public double orimoney { get; set; }
  41. [Newtonsoft.Json.JsonIgnore]
  42. public double oritaxprice { get; set; }
  43. [Newtonsoft.Json.JsonIgnore]
  44. public double orisum { get; set; }
  45. [Newtonsoft.Json.JsonIgnore]
  46. public int Iverifystateex { get => iverifystateex; set => iverifystateex = value; }
  47. [Newtonsoft.Json.JsonIgnore]
  48. public double cost { get; set; }
  49. // b.ioricost as oricost,b.ioritaxcost as oritaxcost ,b.iorimoney as orimoney,b.oritaxprice as oritaxprice,b.iorisum as orisum,
  50. }
  51. }