|
|
@@ -15,6 +15,7 @@ import lombok.NoArgsConstructor;
|
|
|
import org.hibernate.annotations.BatchSize;
|
|
|
|
|
|
import javax.persistence.*;
|
|
|
+import java.io.Serializable;
|
|
|
import java.math.BigDecimal;
|
|
|
import java.time.LocalDateTime;
|
|
|
import java.time.LocalTime;
|
|
|
@@ -24,7 +25,7 @@ import java.util.Set;
|
|
|
@AllArgsConstructor
|
|
|
@NoArgsConstructor
|
|
|
@Builder
|
|
|
-public class MerchantDTO {
|
|
|
+public class MerchantDTO implements Serializable {
|
|
|
public MerchantDTO(Merchant merchant, MerchantSettings merchantSettings) {
|
|
|
address = merchant.getAddress();
|
|
|
aliAccount = merchant.getAliAccount();
|