adding citywallet support
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
package zw.qantra.tm.domain.models;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
|
||||
import com.fasterxml.jackson.annotation.JsonInclude;
|
||||
import jakarta.persistence.*;
|
||||
import lombok.*;
|
||||
@@ -17,6 +18,7 @@ import java.util.UUID;
|
||||
@AllArgsConstructor
|
||||
@NoArgsConstructor
|
||||
@JsonInclude(JsonInclude.Include.NON_NULL)
|
||||
@JsonIgnoreProperties(ignoreUnknown = true)
|
||||
public class Transaction extends BaseEntity {
|
||||
private String userId;
|
||||
private String trace;
|
||||
@@ -81,6 +83,7 @@ public class Transaction extends BaseEntity {
|
||||
private String orderId;
|
||||
private String orderTrace;
|
||||
private String orderTransactionTrace;
|
||||
private String orderTransactionId;
|
||||
|
||||
private String erpSalesRef;
|
||||
private String erpJournalRef;
|
||||
@@ -107,6 +110,8 @@ public class Transaction extends BaseEntity {
|
||||
@Column(columnDefinition = "TEXT")
|
||||
private String targetUrl;
|
||||
private String sdkActionId;
|
||||
private String verificationCode;
|
||||
private Integer retries;
|
||||
|
||||
@Transient
|
||||
private Object additionalData;
|
||||
|
||||
Reference in New Issue
Block a user