XMTT 7 years ago
parent
commit
aa3796bf58
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/main/java/com/ekexiu/portal/leavemsg/LeaveMsgDao.java

+ 1 - 1
src/main/java/com/ekexiu/portal/leavemsg/LeaveMsgDao.java

@ -37,7 +37,7 @@ public interface LeaveMsgDao {
37 37

38 38
	@LimitSelect
39 39
	@Where("STATE='1'")
40
	@OrderBy("ORDER BY GREATE_TIME ASC,ID ASC")
40
	@OrderBy("ORDER BY CREATE_TIME ASC,ID ASC")
41 41
	List<LeaveMsg> query(Connection con, String refId, String refType, @GtEq String createTime, @GreaterThan String id, int rows) throws SQLException;
42 42

43 43
	@Nullable