/** * 查询VO Bean List,一般用于多实体连接
* 1、使用select new查询VO Bean,select new com.eecn.warehouse.api.model.AUser(i.sbillno,u) from Inventory i, User u where i.scustomerno = u.userAccount
* 2、使用别名查询VO Bean,select i.sbillno as id,u as user from Inventory i, User u where i.scustomerno = u.userAccount,VO要有对应的构造函数* 3、如果不使用别名,返回List