D_ES0015_ROWS_RECODE.java 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. /**
  2. * 无锡发动机
  3. */
  4. package com.miniframe.generate.comm.es;
  5. import com.miniframe.core.BaseMapModel;
  6. import java.io.Serializable;
  7. import java.util.*;
  8. /**
  9. * 结果属性值查询->数据
  10. */
  11. public class D_ES0015_ROWS_RECODE extends BaseMapModel implements Serializable {
  12. private static final long serialVersionUID = -1463838678425832212L;
  13. String pcrId;//项目组件结果编号
  14. /**
  15. *项目组件结果编号
  16. */
  17. public void setPcrId(String pcrId) {
  18. this.pcrId=pcrId;
  19. }
  20. /**
  21. *项目组件结果编号
  22. */
  23. public String getPcrId() {
  24. return this.pcrId;
  25. }
  26. String pId;//项目ID
  27. /**
  28. *项目ID
  29. */
  30. public void setPId(String pId) {
  31. this.pId=pId;
  32. }
  33. /**
  34. *项目ID
  35. */
  36. public String getPId() {
  37. return this.pId;
  38. }
  39. String comId;//组件ID
  40. /**
  41. *组件ID
  42. */
  43. public void setComId(String comId) {
  44. this.comId=comId;
  45. }
  46. /**
  47. *组件ID
  48. */
  49. public String getComId() {
  50. return this.comId;
  51. }
  52. String pcId;//项目组件ID
  53. /**
  54. *项目组件ID
  55. */
  56. public void setPcId(String pcId) {
  57. this.pcId=pcId;
  58. }
  59. /**
  60. *项目组件ID
  61. */
  62. public String getPcId() {
  63. return this.pcId;
  64. }
  65. String jobId;//任务编号
  66. /**
  67. *任务编号
  68. */
  69. public void setJobId(String jobId) {
  70. this.jobId=jobId;
  71. }
  72. /**
  73. *任务编号
  74. */
  75. public String getJobId() {
  76. return this.jobId;
  77. }
  78. String keyEn;//键英文名
  79. /**
  80. *键英文名
  81. */
  82. public void setKeyEn(String keyEn) {
  83. this.keyEn=keyEn;
  84. }
  85. /**
  86. *键英文名
  87. */
  88. public String getKeyEn() {
  89. return this.keyEn;
  90. }
  91. String keyZh;//键中文名
  92. /**
  93. *键中文名
  94. */
  95. public void setKeyZh(String keyZh) {
  96. this.keyZh=keyZh;
  97. }
  98. /**
  99. *键中文名
  100. */
  101. public String getKeyZh() {
  102. return this.keyZh;
  103. }
  104. String uid;//用户编码
  105. /**
  106. *用户编码
  107. */
  108. public void setUid(String uid) {
  109. this.uid=uid;
  110. }
  111. /**
  112. *用户编码
  113. */
  114. public String getUid() {
  115. return this.uid;
  116. }
  117. String createTime;//创建时间
  118. /**
  119. *创建时间
  120. */
  121. public void setCreateTime(String createTime) {
  122. this.createTime=createTime;
  123. }
  124. /**
  125. *创建时间
  126. */
  127. public String getCreateTime() {
  128. return this.createTime;
  129. }
  130. String updateTime;//更新时间
  131. /**
  132. *更新时间
  133. */
  134. public void setUpdateTime(String updateTime) {
  135. this.updateTime=updateTime;
  136. }
  137. /**
  138. *更新时间
  139. */
  140. public String getUpdateTime() {
  141. return this.updateTime;
  142. }
  143. String remark;//描述
  144. /**
  145. *描述
  146. */
  147. public void setRemark(String remark) {
  148. this.remark=remark;
  149. }
  150. /**
  151. *描述
  152. */
  153. public String getRemark() {
  154. return this.remark;
  155. }
  156. List <D_ES0015_ROWS_COMS_RECODE> coms;//数据
  157. /**
  158. *数据
  159. */
  160. public void setComs(List <D_ES0015_ROWS_COMS_RECODE> coms) {
  161. this.coms=coms;
  162. }
  163. /**
  164. *数据
  165. */
  166. public List <D_ES0015_ROWS_COMS_RECODE> getComs() {
  167. return this.coms;
  168. }
  169. }