bug fixes
This commit is contained in:
@@ -65,5 +65,6 @@ public class GroupBatchItem extends BaseEntity {
|
||||
private String billProductName;
|
||||
private String providerImage;
|
||||
private String providerLabel;
|
||||
private String creditAddress;
|
||||
}
|
||||
|
||||
|
||||
@@ -3,6 +3,7 @@ package zw.qantra.tm.domain.models;
|
||||
import jakarta.persistence.*;
|
||||
import lombok.*;
|
||||
import org.hibernate.annotations.SQLRestriction;
|
||||
import zw.qantra.tm.domain.enums.CurrencyType;
|
||||
|
||||
@Entity
|
||||
@Table(name = "payment_processor", indexes = {
|
||||
@@ -21,6 +22,8 @@ public class PaymentProcessor extends BaseEntity {
|
||||
private String type;
|
||||
@Column(columnDefinition = "TEXT")
|
||||
private String image;
|
||||
@Enumerated(EnumType.STRING)
|
||||
private CurrencyType currency;
|
||||
private String accountFieldName;
|
||||
private String accountFieldLabel;
|
||||
private String authType;
|
||||
|
||||
@@ -37,6 +37,7 @@ public class Transaction extends BaseEntity {
|
||||
private UUID workspaceId;
|
||||
@Column(name = "user_id")
|
||||
private String userId;
|
||||
private String username;
|
||||
private String trace;
|
||||
private String region;
|
||||
@Enumerated(EnumType.STRING)
|
||||
@@ -87,6 +88,7 @@ public class Transaction extends BaseEntity {
|
||||
private String providerImage;
|
||||
private String paymentProcessorImage;
|
||||
private UUID batchId;
|
||||
private String batchDescription;
|
||||
|
||||
@Enumerated(EnumType.STRING)
|
||||
private Status authorizationStatus;
|
||||
@@ -105,7 +107,6 @@ public class Transaction extends BaseEntity {
|
||||
@Column(name = "polling_status")
|
||||
private Status pollingStatus;
|
||||
|
||||
|
||||
private String orderId;
|
||||
private String orderTrace;
|
||||
private String orderTransactionTrace;
|
||||
|
||||
Reference in New Issue
Block a user