17 lines
330 B
Java
17 lines
330 B
Java
package com.banesco.common.domain.model;
|
|
|
|
import io.quarkus.runtime.annotations.RegisterForReflection;
|
|
import lombok.*;
|
|
|
|
@Getter
|
|
@ToString
|
|
@Builder
|
|
@NoArgsConstructor
|
|
@AllArgsConstructor
|
|
@RegisterForReflection
|
|
public class BankService {
|
|
private String bankCode;
|
|
private String serviceCode;
|
|
private String eventCode;
|
|
}
|