这是我的 DTO:
public class TagVolumeDTO {
private Long id;
private Long idTag;
//...
}
public class TagTDO {
private Long id;
private Long amount;
//...
}
这是我的实体:
public class TagVolume {
private Long id;
private Tag tag;
//...
}
public class Tag {
private Long id;
private Long amount;
//...
}
我想将我的 ModelMapper 配置为将 Tag#id 映射到 TagVolumeDTO#idTag。那可能吗?