@@ -107,6 +107,10 @@ public class TransactionTriggerEntity implements Serializable {
107107 @ JsonProperty (value = "latestSolidifiedBlockNumber" )
108108 private long latestSolidifiedBlockNumber ;
109109
110+ @ Field (value = "data" )
111+ @ JsonProperty (value = "data" )
112+ private String data ;
113+
110114 public String getContractType () {
111115 return contractType ;
112116 }
@@ -118,7 +122,7 @@ public TransactionTriggerEntity(String transactionId, String blockHash,
118122 String fromAddress , String toAddress , String assetName , long assetAmount ,
119123 String contractResult ,long contractCallValue , String result ,
120124 String contractAddress , String contractType ,
121- long feeLimit ,long timeStamp , long latestSolidifiedBlockNumber ) {
125+ long feeLimit ,long timeStamp , long latestSolidifiedBlockNumber , String data ) {
122126 this .transactionId = transactionId ;
123127 this .blockHash = blockHash ;
124128 this .blockNumber = blockNumber ;
@@ -141,5 +145,6 @@ public TransactionTriggerEntity(String transactionId, String blockHash,
141145 this .feeLimit = feeLimit ;
142146 this .timeStamp = timeStamp ;
143147 this .latestSolidifiedBlockNumber = latestSolidifiedBlockNumber ;
148+ this .data = data ;
144149 }
145150}
0 commit comments