| | |
| | | AND issue.reverse_index <![CDATA[ < ]]> 0 |
| | | AND workspace.id = #{workspaceId} |
| | | GROUP BY issue.id |
| | | ORDER BY issue.register_date DESC |
| | | ORDER BY issue.modify_date DESC |
| | | <if test="page != null and !page.equals('')"> |
| | | limit #{pageSize} offset #{page}; |
| | | </if> |
| | |
| | | AND issue.reverse_index <![CDATA[ < ]]> 0 |
| | | AND workspace.id = #{workspaceId} |
| | | GROUP BY issue.id |
| | | ORDER BY issue.register_date DESC |
| | | ORDER BY issue.modify_date DESC |
| | | <if test="page != null and !page.equals('')"> |
| | | limit #{pageSize} offset #{page}; |
| | | </if> |
| | |
| | | INNER JOIN custom_field cf ON cf.id = issue_custom.custom_field_id |
| | | ORDER BY issue_custom.id ASC) customFieldValue ON customFieldValue.issueId = issue.id |
| | | WHERE issStatus.issue_status_type != 'CLOSE' |
| | | AND issue.issue_type_id = #{issueTypeId} |
| | | GROUP BY issue.id |
| | | HAVING concatUseValue LIKE CONCAT('%', #{useValue}, '%') |
| | | </select> |