39 lines
639 B
Java
39 lines
639 B
Java
package net.gepafin.tendermanagement.model.request;
|
|
|
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
|
|
|
import lombok.Getter;
|
|
import lombok.Setter;
|
|
|
|
import java.util.Map;
|
|
|
|
|
|
@Getter
|
|
@Setter
|
|
public class HubReq {
|
|
|
|
@JsonProperty(access = JsonProperty.Access.READ_ONLY)
|
|
private Long id;
|
|
|
|
private String companyName;
|
|
|
|
private String firstName;
|
|
|
|
private String lastName;
|
|
|
|
private String email;
|
|
|
|
private String city;
|
|
|
|
private String country;
|
|
|
|
private String vatNumber;
|
|
|
|
private String domainName;
|
|
|
|
private Map<String, Object> appConfig;
|
|
|
|
@JsonProperty(access = JsonProperty.Access.READ_ONLY)
|
|
private String uniqueUuid;
|
|
}
|