XMTT преди 6 години
родител
ревизия
9b88a08f0b
променени са 1 файла, в които са добавени 2 реда и са изтрити 2 реда
  1. 2 2
      src/main/java/com/ekexiu/project/platform/views/dao/DayDao.java

+ 2 - 2
src/main/java/com/ekexiu/project/platform/views/dao/DayDao.java

173
173
174
	@PageQuery
174
	@PageQuery
175
	@OrderBy("ORDER BY c.CREATE_TIME DESC")
175
	@OrderBy("ORDER BY c.CREATE_TIME DESC")
176
	public abstract PageQueryResult<CompanySum> queryByTime(Connection con, @Nullable @Like String name, @Nullable @GroupSqlColumn(handlerClass = StringHandler.class,value = " ID IN (SELECT ID FROM COMP_KEY_WORD WHERE VALUE LIKE ? AND TYPE = 1)",isAnd = false) String industry, @Nullable Boolean actived, @Nullable @GtEq @Alias("modifyTime") String bt, @Nullable @Alias("modifyTime") @LtEq String et, int pageSize, int pageNo) throws SQLException;
176
	public abstract PageQueryResult<CompanySum> queryByTime(Connection con, @Nullable @Like String name, @Nullable @GroupSqlColumn(handlerClass = StringHandler.class,value = " c.ID IN (SELECT ID FROM COMP_KEY_WORD WHERE VALUE LIKE ? AND TYPE = 1 GROUP BY ID)",isAnd = false) String industry, @Nullable Boolean actived, @Nullable @GtEq @Alias("modifyTime") String bt, @Nullable @Alias("modifyTime") @LtEq String et, int pageSize, int pageNo) throws SQLException;
177
177
178
	@PageQuery
178
	@PageQuery
179
	@OrderBy("ORDER BY cds.sum DESC")
179
	@OrderBy("ORDER BY cds.sum DESC")
180
	public abstract PageQueryResult<CompanySum> queryByViews(Connection con, @Nullable @Like String name, @Nullable @GroupSqlColumn(handlerClass = StringHandler.class,value = " ID IN (SELECT ID FROM COMP_KEY_WORD WHERE VALUE LIKE ? AND TYPE = 1)",isAnd = false) String industry, @Nullable Boolean actived, @Nullable @GtEq @Alias("createTime") String bt, @Nullable @Alias("createTime") @LtEq String et, int pageSize, int pageNo)throws SQLException;
180
	public abstract PageQueryResult<CompanySum> queryByViews(Connection con, @Nullable @Like String name, @Nullable @GroupSqlColumn(handlerClass = StringHandler.class,value = " c.ID IN (SELECT ID FROM COMP_KEY_WORD WHERE VALUE LIKE ? AND TYPE = 1 GROUP BY ID)",isAnd = false) String industry, @Nullable Boolean actived, @Nullable @GtEq @Alias("createTime") String bt, @Nullable @Alias("createTime") @LtEq String et, int pageSize, int pageNo)throws SQLException;
181
181
182
	@PageQuery
182
	@PageQuery
183
	@OrderBy("ORDER BY c.CREATE_TIME DESC")
183
	@OrderBy("ORDER BY c.CREATE_TIME DESC")