Skip to content

Instantly share code, notes, and snippets.

View ebaptistella's full-sized avatar
🎯
Focusing

Eurides Baptistella ebaptistella

🎯
Focusing
  • São Miguel do Oeste - SC
View GitHub Profile
@ebaptistella
ebaptistella / example.java
Last active August 19, 2020 18:38
ModelMapper convert two String fields in List<String>
@Data
public class PlacesSearchReply {
private List<String> specialities = new ArrayList<>();
}
@Data
public class PlacesSearchErpResponse {
private String SpecialityOne;
private String SpecialityTwo;
}