D_ES0012_ROWS_RECODE.java 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. /**
  2. * 无锡发动机
  3. */
  4. package com.miniframe.generate.comm.es;
  5. import com.miniframe.core.BaseMapModel;
  6. import java.io.Serializable;
  7. /**
  8. * 项目模拟数据组件属性查询->数据
  9. */
  10. public class D_ES0012_ROWS_RECODE extends BaseMapModel implements Serializable {
  11. private static final long serialVersionUID = -1463838678425832212L;
  12. String pcaId;//项目组件属性ID
  13. /**
  14. *项目组件属性ID
  15. */
  16. public void setPcaId(String pcaId) {
  17. this.pcaId=pcaId;
  18. }
  19. /**
  20. *项目组件属性ID
  21. */
  22. public String getPcaId() {
  23. return this.pcaId;
  24. }
  25. String value;//数值
  26. /**
  27. *数值
  28. */
  29. public void setValue(String value) {
  30. this.value=value;
  31. }
  32. /**
  33. *数值
  34. */
  35. public String getValue() {
  36. return this.value;
  37. }
  38. String unit;//单位
  39. /**
  40. *单位
  41. */
  42. public void setUnit(String unit) {
  43. this.unit=unit;
  44. }
  45. /**
  46. *单位
  47. */
  48. public String getUnit() {
  49. return this.unit;
  50. }
  51. String unitType;//单位类型
  52. /**
  53. *单位类型
  54. */
  55. public void setUnitType(String unitType) {
  56. this.unitType=unitType;
  57. }
  58. /**
  59. *单位类型
  60. */
  61. public String getUnitType() {
  62. return this.unitType;
  63. }
  64. String name;//属性名称
  65. /**
  66. *属性名称
  67. */
  68. public void setName(String name) {
  69. this.name=name;
  70. }
  71. /**
  72. *属性名称
  73. */
  74. public String getName() {
  75. return this.name;
  76. }
  77. String code;//属性编码
  78. /**
  79. *属性编码
  80. */
  81. public void setCode(String code) {
  82. this.code=code;
  83. }
  84. /**
  85. *属性编码
  86. */
  87. public String getCode() {
  88. return this.code;
  89. }
  90. int valueType;//值类型
  91. /**
  92. *值类型
  93. */
  94. public void setValueType(int valueType) {
  95. this.valueType=valueType;
  96. }
  97. /**
  98. *值类型
  99. */
  100. public int getValueType() {
  101. return this.valueType;
  102. }
  103. String valueDef;//默认值
  104. /**
  105. *默认值
  106. */
  107. public void setValueDef(String valueDef) {
  108. this.valueDef=valueDef;
  109. }
  110. /**
  111. *默认值
  112. */
  113. public String getValueDef() {
  114. return this.valueDef;
  115. }
  116. int dataType;//值数据类型
  117. /**
  118. *值数据类型
  119. */
  120. public void setDataType(int dataType) {
  121. this.dataType=dataType;
  122. }
  123. /**
  124. *值数据类型
  125. */
  126. public int getDataType() {
  127. return this.dataType;
  128. }
  129. }