ChangeLen.cs 954 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Core.StlMes.Client.Mcp.VRP.Entity
  6. {
  7. public class ChangeLen
  8. {
  9. private bool _check;
  10. public bool check
  11. {
  12. get { return _check; }
  13. set { _check = value; }
  14. }
  15. private decimal? orLen;
  16. public decimal? OrLen
  17. {
  18. get { return orLen; }
  19. set { orLen = value; }
  20. }
  21. private int orCount;
  22. public int OrCount
  23. {
  24. get { return orCount; }
  25. set { orCount = value; }
  26. }
  27. private decimal? editLen;
  28. public decimal? EditLen
  29. {
  30. get { return editLen; }
  31. set { editLen = value; }
  32. }
  33. private int? editCount;
  34. public int? EditCount
  35. {
  36. get { return editCount; }
  37. set { editCount = value; }
  38. }
  39. }
  40. }