我正在尝试找到一种通过查询创建对象的方法,该对象包含三个int字段和一个List <>
@AllArgsConstructor
@Data
public class SiteDescriptionDao {
private int hauteurMax;
private int cotMin;
private int cotMax;
private List<Voie> voieList;
}
我的“实际”查询是:
SELECT new com.c.c.c.dao.SiteDescriptionDao(1,1,1,(select vo from Voie vo where vo
.idSecteur = 1)) FROM Site si
感谢您的帮助!