Просмотр исходного кода

ViewAllcustomerDao 和 ViewCustomerDao 增加时间排序

XMTT лет назад: 7
Родитель
Сommit
f1a5bad2ac

+ 1 - 1
src/main/java/com/ekexiu/console/system/dao/ViewAllcustomerDao.java

@ -20,7 +20,7 @@ public interface ViewAllcustomerDao {
20 20
	ViewAllcustomer query(Connection con, String id) throws SQLException;
21 21
	
22 22
	@PageSelect
23
	@OrderBy(" ORDER BY create_time")
23
	@OrderBy(" ORDER BY create_time DESC")
24 24
	PageQueryResult<ViewAllcustomer> query(Connection con,@Nullable @Like String name,@Nullable @Like String address,@Nullable @Like String orgname, @Nullable Integer sendMailStatus, int pageSize, int pageNo) throws SQLException;
25 25

26 26
}

+ 1 - 1
src/main/java/com/ekexiu/console/system/dao/ViewCustomerDao.java

@ -19,7 +19,7 @@ public abstract class ViewCustomerDao {
19 19
	public abstract ViewCustomer query(Connection con, String id) throws SQLException;
20 20
	
21 21
	@PageSelect
22
	@OrderBy(" ORDER BY create_time")
22
	@OrderBy(" ORDER BY create_time DESC")
23 23
	public abstract PageQueryResult<ViewCustomer> query(Connection con, @Nullable @Like String name,@Nullable @Like String address,@Nullable @Like String orgname, @Nullable Integer sendMailStatus, int pageSize, int pageNo) throws SQLException;
24 24
25 25
}