XtSearchSqlConstant.java 564 B

123456789101112131415
  1. package com.huimv.busi.xt.constant;
  2. /**
  3. * 数据录入查询orderby
  4. *
  5. * @author hongjun.hu
  6. * @version 1.0
  7. * @history
  8. */
  9. public interface XtSearchSqlConstant {
  10. public static final String order_by_cj = "order by cj.cjsj desc, cj.id desc";
  11. public static final String order_by_pz = "order by pz.pzsj desc, pz.id desc";
  12. public static final String order_by_rs = "order by rs.rssj desc, rs.id desc";
  13. public static final String order_by_fm = "order by fm.fmsj desc, fm.id desc";
  14. public static final String order_by_dn = "order by dn.dnsj desc, dn.id desc";
  15. }