|
|
@ -92,12 +92,15 @@ |
|
|
|
<if test='formDto.searchContent != null and formDto.searchContent != ""'> |
|
|
|
AND t1.ITEM_CONTENT LIKE CONCAT('%',#{formDto.searchContent},'%') |
|
|
|
</if> |
|
|
|
<if test='formDto.categoryCode != null and formDto.categoryCode != ""'> |
|
|
|
AND t1.CATEGORY_CODE = #{formDto.categoryCode} |
|
|
|
<if test='formDto.firstCategoryCode != null and formDto.firstCategoryCode != ""'> |
|
|
|
AND t1.FIRST_CATEGORY_CODE = #{formDto.firstCategoryCode} |
|
|
|
</if> |
|
|
|
<if test='formDto.userId != null and formDto.userId != ""'> |
|
|
|
AND t1.USER_ID = #{formDto.userId} |
|
|
|
</if> |
|
|
|
<if test='formDto.itemId != null and formDto.itemId != ""'> |
|
|
|
AND t1.ID = #{formDto.itemId} |
|
|
|
</if> |
|
|
|
ORDER BY |
|
|
|
<if test='formDto.orderType != null and formDto.orderType != "" and formDto.orderType == "1"'> |
|
|
|
t1.LAST_HANDLE_TIME DESC |
|
|
@ -278,6 +281,7 @@ |
|
|
|
<result property="commentNum" column="COMMENT_NUM"/> |
|
|
|
<result property="statementNum" column="statementNum"/> |
|
|
|
<result property="categoryCode" column="CATEGORY_CODE"/> |
|
|
|
<result property="firstCategoryCode" column="FIRST_CATEGORY_CODE"/> |
|
|
|
<result property="isOperational" column="isOperational"/> |
|
|
|
<result property="isSatisfactionEvaluation" column="isSatisfactionEvaluation"/> |
|
|
|
<result property="isShowSatisfactionEvaluation" column="isShowSatisfactionEvaluation"/> |
|
|
@ -302,6 +306,7 @@ |
|
|
|
item.USER_FACE, |
|
|
|
item.ISSUE_ADDRESS, |
|
|
|
item.CATEGORY_CODE, |
|
|
|
item.FIRST_CATEGORY_CODE, |
|
|
|
eve.APPROVE_NUM, |
|
|
|
eve.OPPOSE_NUM, |
|
|
|
eve.BROWSE_NUM, |
|
|
|