|
@@ -289,10 +289,10 @@
|
|
|
LEFT JOIN nm_category e ON c.category_id = e.id
|
|
|
WHERE 1=1
|
|
|
<if test="exportConditionDTO.gameId != null and exportConditionDTO.gameId != '' and exportConditionDTO.gameId != 'ALL'">
|
|
|
- AND c.game_id = {exportConditionDTO.gameId}
|
|
|
+ AND c.game_id = #{exportConditionDTO.gameId}
|
|
|
</if>
|
|
|
<if test="exportConditionDTO.projectId != null and exportConditionDTO.projectId != '' and exportConditionDTO.projectId != 'ALL'">
|
|
|
- AND c.category_id = {exportConditionDTO.projectId}
|
|
|
+ AND c.category_id = #{exportConditionDTO.projectId}
|
|
|
</if>
|
|
|
<if test="exportConditionDTO.startTime != null and exportConditionDTO.startTime != ''">
|
|
|
AND d.start_time <![CDATA[ >= ]]> #{exportConditionDTO.startTime}
|