PuStoreIn.cs 1.3 KB

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