Mem_Logisticsent.cs 1015 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace CoreEntity.Entity
  5. {
  6. [Serializable]
  7. public class Mem_Logisticsent
  8. {
  9. private int _logisticsentkey;
  10. private string _logisticsentcode;
  11. private string _logisticsentname;
  12. private string _logisticsentcodeext;
  13. public Mem_Logisticsent()
  14. {
  15. }
  16. public int LogisticsEntKey
  17. {
  18. get { return _logisticsentkey; }
  19. set { _logisticsentkey = value; }
  20. }
  21. public string LogisticsEntCode
  22. {
  23. get { return _logisticsentcode; }
  24. set { _logisticsentcode = value; }
  25. }
  26. public string LogisticsEntName
  27. {
  28. get { return _logisticsentname; }
  29. set { _logisticsentname = value; }
  30. }
  31. public string LogisticsEntCodeExt
  32. {
  33. get { return _logisticsentcodeext; }
  34. set { _logisticsentcodeext = value; }
  35. }
  36. }
  37. }