123456789101112131415 |
- package com.huimv.busi.xt.constant;
- /**
- * 数据录入查询orderby
- *
- * @author hongjun.hu
- * @version 1.0
- * @history
- */
- public interface XtSearchSqlConstant {
- public static final String order_by_cj = "order by cj.cjsj desc, cj.id desc";
- public static final String order_by_pz = "order by pz.pzsj desc, pz.id desc";
- public static final String order_by_rs = "order by rs.rssj desc, rs.id desc";
- public static final String order_by_fm = "order by fm.fmsj desc, fm.id desc";
- public static final String order_by_dn = "order by dn.dnsj desc, dn.id desc";
- }
|