ComBaseWellObject.cs 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. namespace Core.StlMes.Client.Qcm
  2. {
  3. /// <summary>
  4. /// 产能井设置对象
  5. /// </summary>
  6. public class ComBaseWellObject
  7. {
  8. /// <summary>
  9. /// 产能井代码
  10. /// </summary>
  11. private string wellCode = "";
  12. public string WellCode
  13. {
  14. get { return wellCode; }
  15. set { wellCode = value; }
  16. }
  17. /// <summary>
  18. /// 产能井描述
  19. /// </summary>
  20. private string wellName = "";
  21. public string WellName
  22. {
  23. get { return wellName; }
  24. set { wellName = value; }
  25. }
  26. /// <summary>
  27. /// 最大产能
  28. /// </summary>
  29. private string weight = "";
  30. public string Weight
  31. {
  32. get { return weight; }
  33. set { weight = value; }
  34. }
  35. /// <summary>
  36. /// 创建人
  37. /// </summary>
  38. private string createName = "";
  39. public string CreateName
  40. {
  41. get { return createName; }
  42. set { createName = value; }
  43. }
  44. /// <summary>
  45. /// 创建时间
  46. /// </summary>
  47. private string createTime = "";
  48. public string CreateTime
  49. {
  50. get { return createTime; }
  51. set { createTime = value; }
  52. }
  53. /// <summary>
  54. /// 修改人
  55. /// </summary>
  56. private string updateName = "";
  57. public string UpdateName
  58. {
  59. get { return updateName; }
  60. set { updateName = value; }
  61. }
  62. /// <summary>
  63. /// 修改时间
  64. /// </summary>
  65. private string updateTime = "";
  66. public string UpdateTime
  67. {
  68. get { return updateTime; }
  69. set { updateTime = value; }
  70. }
  71. /// <summary>
  72. /// 删除人
  73. /// </summary>
  74. private string deleteName = "";
  75. public string DeleteName
  76. {
  77. get { return deleteName; }
  78. set { deleteName = value; }
  79. }
  80. /// <summary>
  81. /// 删除时间
  82. /// </summary>
  83. private string deleteTime = "";
  84. public string DeleteTime
  85. {
  86. get { return deleteTime; }
  87. set { deleteTime = value; }
  88. }
  89. /// <summary>
  90. /// 有效标志
  91. /// </summary>
  92. private string validflag = "";
  93. public string Validflag
  94. {
  95. get { return validflag; }
  96. set { validflag = value; }
  97. }
  98. /// <summary>
  99. /// 备注
  100. /// </summary>
  101. private string memo = "";
  102. public string Memo
  103. {
  104. get { return memo; }
  105. set { memo = value; }
  106. }
  107. }
  108. }