我有如下的Entity和DTO对象:
class OrganizationDTO{
private String name;
...
private Set<AuthenticationDTO> authentication;
}
我的实体类是
@Entity
class Organization {
private String name;
...
private Set<Authentication> authentication;
}
使用modelmapper,如何将DTO传递给实体? DTO具有DTO的收集对象,并且类似于Entity。可以映射吗?