当前位置: 代码迷 >> Eclipse >> myeclipse 生成 ejb3 查询话语 的逆向 排序
  详细解决方案

myeclipse 生成 ejb3 查询话语 的逆向 排序

热度:553   发布时间:2016-04-23 02:20:37.0
myeclipse 生成 ejb3 查询语句 的逆向 排序

myeclipse 默认生成的查询函数是这样的

?

?

@SuppressWarnings("unchecked")

public List<AAA> findAll(final int... rowStartIdxAndCount) {

?

? ? //修改这句

? ? final String queryString = "select model from CardType model";

?

? ? // 将上面的语句修改即可

? ? final String queryString = "select model from CardType model order by bbb desc";;

?

  相关解决方案