D_XE0012_ROWS_RECODE.java 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272
  1. /**
  2. * 区块链浏览器
  3. */
  4. package com.miniframe.generate.comm.blockchain;
  5. import com.miniframe.core.BaseMapModel;
  6. import java.io.Serializable;
  7. /**
  8. * 平台上链查询->查询结果
  9. */
  10. public class D_XE0012_ROWS_RECODE extends BaseMapModel implements Serializable {
  11. private static final long serialVersionUID = -1463838678425832212L;
  12. String txId;//交易编号
  13. /**
  14. *交易编号
  15. */
  16. public void setTxId(String txId) {
  17. this.txId=txId;
  18. }
  19. /**
  20. *交易编号
  21. */
  22. public String getTxId() {
  23. return this.txId;
  24. }
  25. String txType;//交易类型
  26. /**
  27. *交易类型
  28. */
  29. public void setTxType(String txType) {
  30. this.txType=txType;
  31. }
  32. /**
  33. *交易类型
  34. */
  35. public String getTxType() {
  36. return this.txType;
  37. }
  38. String txTypeDesc;//交易类型描述
  39. /**
  40. *交易类型描述
  41. */
  42. public void setTxTypeDesc(String txTypeDesc) {
  43. this.txTypeDesc=txTypeDesc;
  44. }
  45. /**
  46. *交易类型描述
  47. */
  48. public String getTxTypeDesc() {
  49. return this.txTypeDesc;
  50. }
  51. String blockHash;//区块地址
  52. /**
  53. *区块地址
  54. */
  55. public void setBlockHash(String blockHash) {
  56. this.blockHash=blockHash;
  57. }
  58. /**
  59. *区块地址
  60. */
  61. public String getBlockHash() {
  62. return this.blockHash;
  63. }
  64. String mspId;//组织编号
  65. /**
  66. *组织编号
  67. */
  68. public void setMspId(String mspId) {
  69. this.mspId=mspId;
  70. }
  71. /**
  72. *组织编号
  73. */
  74. public String getMspId() {
  75. return this.mspId;
  76. }
  77. String userId;//用户编号
  78. /**
  79. *用户编号
  80. */
  81. public void setUserId(String userId) {
  82. this.userId=userId;
  83. }
  84. /**
  85. *用户编号
  86. */
  87. public String getUserId() {
  88. return this.userId;
  89. }
  90. String accountId;//账户编号
  91. /**
  92. *账户编号
  93. */
  94. public void setAccountId(String accountId) {
  95. this.accountId=accountId;
  96. }
  97. /**
  98. *账户编号
  99. */
  100. public String getAccountId() {
  101. return this.accountId;
  102. }
  103. String inputArgs;//交易参数
  104. /**
  105. *交易参数
  106. */
  107. public void setInputArgs(String inputArgs) {
  108. this.inputArgs=inputArgs;
  109. }
  110. /**
  111. *交易参数
  112. */
  113. public String getInputArgs() {
  114. return this.inputArgs;
  115. }
  116. String valid;//是否合法
  117. /**
  118. *是否合法
  119. */
  120. public void setValid(String valid) {
  121. this.valid=valid;
  122. }
  123. /**
  124. *是否合法
  125. */
  126. public String getValid() {
  127. return this.valid;
  128. }
  129. int validationCode;//效验码
  130. /**
  131. *效验码
  132. */
  133. public void setValidationCode(int validationCode) {
  134. this.validationCode=validationCode;
  135. }
  136. /**
  137. *效验码
  138. */
  139. public int getValidationCode() {
  140. return this.validationCode;
  141. }
  142. String txTime;//交易时间
  143. /**
  144. *交易时间
  145. */
  146. public void setTxTime(String txTime) {
  147. this.txTime=txTime;
  148. }
  149. /**
  150. *交易时间
  151. */
  152. public String getTxTime() {
  153. return this.txTime;
  154. }
  155. String responseList;//返回结果
  156. /**
  157. *返回结果
  158. */
  159. public void setResponseList(String responseList) {
  160. this.responseList=responseList;
  161. }
  162. /**
  163. *返回结果
  164. */
  165. public String getResponseList() {
  166. return this.responseList;
  167. }
  168. String platformId;//平台ID
  169. /**
  170. *平台ID
  171. */
  172. public void setPlatformId(String platformId) {
  173. this.platformId=platformId;
  174. }
  175. /**
  176. *平台ID
  177. */
  178. public String getPlatformId() {
  179. return this.platformId;
  180. }
  181. String data;//数据
  182. /**
  183. *数据
  184. */
  185. public void setData(String data) {
  186. this.data=data;
  187. }
  188. /**
  189. *数据
  190. */
  191. public String getData() {
  192. return this.data;
  193. }
  194. String key;//数据键值
  195. /**
  196. *数据键值
  197. */
  198. public void setKey(String key) {
  199. this.key=key;
  200. }
  201. /**
  202. *数据键值
  203. */
  204. public String getKey() {
  205. return this.key;
  206. }
  207. String type;//子类型
  208. /**
  209. *子类型
  210. */
  211. public void setType(String type) {
  212. this.type=type;
  213. }
  214. /**
  215. *子类型
  216. */
  217. public String getType() {
  218. return this.type;
  219. }
  220. String chainType;//上链类型
  221. /**
  222. *上链类型
  223. */
  224. public void setChainType(String chainType) {
  225. this.chainType=chainType;
  226. }
  227. /**
  228. *上链类型
  229. */
  230. public String getChainType() {
  231. return this.chainType;
  232. }
  233. String chainTypeDesc;//上链类型描述
  234. /**
  235. *上链类型描述
  236. */
  237. public void setChainTypeDesc(String chainTypeDesc) {
  238. this.chainTypeDesc=chainTypeDesc;
  239. }
  240. /**
  241. *上链类型描述
  242. */
  243. public String getChainTypeDesc() {
  244. return this.chainTypeDesc;
  245. }
  246. String hash;//hash值
  247. /**
  248. *hash值
  249. */
  250. public void setHash(String hash) {
  251. this.hash=hash;
  252. }
  253. /**
  254. *hash值
  255. */
  256. public String getHash() {
  257. return this.hash;
  258. }
  259. int blockHeight;//区块高度
  260. /**
  261. *区块高度
  262. */
  263. public void setBlockHeight(int blockHeight) {
  264. this.blockHeight=blockHeight;
  265. }
  266. /**
  267. *区块高度
  268. */
  269. public int getBlockHeight() {
  270. return this.blockHeight;
  271. }
  272. }