D_ES0010_HEADERS_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_ES0010_HEADERS_RECODE extends BaseMapModel implements Serializable {
  11. private static final long serialVersionUID = -1463838678425832212L;
  12. String cdId;//数据id
  13. /**
  14. *数据id
  15. */
  16. public void setCdId(String cdId) {
  17. this.cdId=cdId;
  18. }
  19. /**
  20. *数据id
  21. */
  22. public String getCdId() {
  23. return this.cdId;
  24. }
  25. String cdvId;//数据属性id
  26. /**
  27. *数据属性id
  28. */
  29. public void setCdvId(String cdvId) {
  30. this.cdvId=cdvId;
  31. }
  32. /**
  33. *数据属性id
  34. */
  35. public String getCdvId() {
  36. return this.cdvId;
  37. }
  38. String name;//数据属性名称
  39. /**
  40. *数据属性名称
  41. */
  42. public void setName(String name) {
  43. this.name=name;
  44. }
  45. /**
  46. *数据属性名称
  47. */
  48. public String getName() {
  49. return this.name;
  50. }
  51. String code;//数据属性Code
  52. /**
  53. *数据属性Code
  54. */
  55. public void setCode(String code) {
  56. this.code=code;
  57. }
  58. /**
  59. *数据属性Code
  60. */
  61. public String getCode() {
  62. return this.code;
  63. }
  64. int dataType;//值数据类型
  65. /**
  66. *值数据类型
  67. */
  68. public void setDataType(int dataType) {
  69. this.dataType=dataType;
  70. }
  71. /**
  72. *值数据类型
  73. */
  74. public int getDataType() {
  75. return this.dataType;
  76. }
  77. int valueType;//值类型
  78. /**
  79. *值类型
  80. */
  81. public void setValueType(int valueType) {
  82. this.valueType=valueType;
  83. }
  84. /**
  85. *值类型
  86. */
  87. public int getValueType() {
  88. return this.valueType;
  89. }
  90. String valueDef;//默认值
  91. /**
  92. *默认值
  93. */
  94. public void setValueDef(String valueDef) {
  95. this.valueDef=valueDef;
  96. }
  97. /**
  98. *默认值
  99. */
  100. public String getValueDef() {
  101. return this.valueDef;
  102. }
  103. String unitType;//单位类型
  104. /**
  105. *单位类型
  106. */
  107. public void setUnitType(String unitType) {
  108. this.unitType=unitType;
  109. }
  110. /**
  111. *单位类型
  112. */
  113. public String getUnitType() {
  114. return this.unitType;
  115. }
  116. String unitDef;//单位组默认值
  117. /**
  118. *单位组默认值
  119. */
  120. public void setUnitDef(String unitDef) {
  121. this.unitDef=unitDef;
  122. }
  123. /**
  124. *单位组默认值
  125. */
  126. public String getUnitDef() {
  127. return this.unitDef;
  128. }
  129. }