我有两节课。请求DTO和实体。我想将 RequestDTO 映射到实体。在这种情况下,我想手动插入实体属性之一,这意味着该属性不在请求 DTO 中。如何使用 modelmapper 来实现这一点。
public class RequestDTO {
private String priceType;
private String batchType;
}
public class Entity {
private long id;
private String priceType;
private String batchType;
}
Entity newEntity = modelMapper.map(requestDto, Entity.class);
但这不起作用,它说它不能将字符串转换为长整型。我请求对此的解决方案或更好的方法。
慕工程0101907
相关分类