|
@ -173,11 +173,11 @@ public abstract class DayDao {
|
173
|
173
|
|
174
|
174
|
@PageQuery
|
175
|
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 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 = " 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;
|
177
|
177
|
|
178
|
178
|
@PageQuery
|
179
|
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 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 = " 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;
|
181
|
181
|
|
182
|
182
|
@PageQuery
|
183
|
183
|
@OrderBy("ORDER BY c.CREATE_TIME DESC")
|