/** * 区块链浏览器 */ package com.miniframe.generate.comm.blockchain; import com.miniframe.core.BaseMapModel; import java.io.Serializable; /** * 平台上链查询->查询结果 */ public class D_XE0012_ROWS_RECODE extends BaseMapModel implements Serializable { private static final long serialVersionUID = -1463838678425832212L; String txId;//交易编号 /** *交易编号 */ public void setTxId(String txId) { this.txId=txId; } /** *交易编号 */ public String getTxId() { return this.txId; } String txType;//交易类型 /** *交易类型 */ public void setTxType(String txType) { this.txType=txType; } /** *交易类型 */ public String getTxType() { return this.txType; } String txTypeDesc;//交易类型描述 /** *交易类型描述 */ public void setTxTypeDesc(String txTypeDesc) { this.txTypeDesc=txTypeDesc; } /** *交易类型描述 */ public String getTxTypeDesc() { return this.txTypeDesc; } String blockHash;//区块地址 /** *区块地址 */ public void setBlockHash(String blockHash) { this.blockHash=blockHash; } /** *区块地址 */ public String getBlockHash() { return this.blockHash; } String mspId;//组织编号 /** *组织编号 */ public void setMspId(String mspId) { this.mspId=mspId; } /** *组织编号 */ public String getMspId() { return this.mspId; } String userId;//用户编号 /** *用户编号 */ public void setUserId(String userId) { this.userId=userId; } /** *用户编号 */ public String getUserId() { return this.userId; } String accountId;//账户编号 /** *账户编号 */ public void setAccountId(String accountId) { this.accountId=accountId; } /** *账户编号 */ public String getAccountId() { return this.accountId; } String inputArgs;//交易参数 /** *交易参数 */ public void setInputArgs(String inputArgs) { this.inputArgs=inputArgs; } /** *交易参数 */ public String getInputArgs() { return this.inputArgs; } String valid;//是否合法 /** *是否合法 */ public void setValid(String valid) { this.valid=valid; } /** *是否合法 */ public String getValid() { return this.valid; } int validationCode;//效验码 /** *效验码 */ public void setValidationCode(int validationCode) { this.validationCode=validationCode; } /** *效验码 */ public int getValidationCode() { return this.validationCode; } String txTime;//交易时间 /** *交易时间 */ public void setTxTime(String txTime) { this.txTime=txTime; } /** *交易时间 */ public String getTxTime() { return this.txTime; } String responseList;//返回结果 /** *返回结果 */ public void setResponseList(String responseList) { this.responseList=responseList; } /** *返回结果 */ public String getResponseList() { return this.responseList; } String platformId;//平台ID /** *平台ID */ public void setPlatformId(String platformId) { this.platformId=platformId; } /** *平台ID */ public String getPlatformId() { return this.platformId; } String data;//数据 /** *数据 */ public void setData(String data) { this.data=data; } /** *数据 */ public String getData() { return this.data; } String key;//数据键值 /** *数据键值 */ public void setKey(String key) { this.key=key; } /** *数据键值 */ public String getKey() { return this.key; } String type;//子类型 /** *子类型 */ public void setType(String type) { this.type=type; } /** *子类型 */ public String getType() { return this.type; } String chainType;//上链类型 /** *上链类型 */ public void setChainType(String chainType) { this.chainType=chainType; } /** *上链类型 */ public String getChainType() { return this.chainType; } String chainTypeDesc;//上链类型描述 /** *上链类型描述 */ public void setChainTypeDesc(String chainTypeDesc) { this.chainTypeDesc=chainTypeDesc; } /** *上链类型描述 */ public String getChainTypeDesc() { return this.chainTypeDesc; } String hash;//hash值 /** *hash值 */ public void setHash(String hash) { this.hash=hash; } /** *hash值 */ public String getHash() { return this.hash; } int blockHeight;//区块高度 /** *区块高度 */ public void setBlockHeight(int blockHeight) { this.blockHeight=blockHeight; } /** *区块高度 */ public int getBlockHeight() { return this.blockHeight; } }