PuStoreIn.cs 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace NX.ERP.Model.Store
  6. {
  7. /// <summary>
  8. /// 采购入库单
  9. /// </summary>
  10. public class PuStoreIn
  11. {
  12. private int id;
  13. private string code;
  14. private DateTime date;
  15. private string depcode;
  16. private string whcode;
  17. private IList<PuStoreInDetail> puStoreInDetails = new List<PuStoreInDetail>();
  18. private string _puCode;
  19. private string maker;
  20. private string personCode;
  21. public IList<PuStoreInDetail> Details { get => puStoreInDetails; set => puStoreInDetails = value; }
  22. public int Id { get => id; set => id = value; }
  23. public string Code { get => code; set => code = value; }
  24. public DateTime Date { get => date; set => date = value; }
  25. public string Depcode { get => depcode; set => depcode = value; }
  26. public string Whcode { get => whcode; set => whcode = value; }
  27. public string PuCode { get => _puCode; set => _puCode = value; }
  28. public string Maker { get => maker; set => maker = value; }
  29. public string PersonCode { get => personCode; set => personCode = value; }
  30. public string RdCode { get; set; }
  31. public string SupplierName { get; set; }
  32. public string SupplierCode { get; set; }
  33. /// <summary>
  34. /// 源单类别
  35. /// </summary>
  36. public string Source { get; set; }
  37. /// <summary>
  38. /// 源单编号
  39. /// </summary>
  40. public string SourceCode { get; set; }
  41. }
  42. }