| | |
| | | <if test="configValue != null and configValue != ''"> |
| | | AND ssd.categoryid IN (${configValue}) |
| | | </if> |
| | | <!-- 适用单条查询 --> |
| | | <if test="scriptids != null"> |
| | | AND ssd.scriptid in (${scriptids}) |
| | | </if> |
| | | group by ssd.scriptid) b |
| | | ON a.id = b.scriptid |
| | | <!-- 适用单条查询 --> |
| | | <if test="scriptids != null"> |
| | | AND a.scriptid in |
| | | (SELECT lib_script.scriptid FROM |
| | | svy_lib_template_script lib_script |
| | | WHERE lib_script.scriptid in (${scriptids})) |
| | | </if> |
| | | </select> |
| | | |
| | | <select id="getSfStatisticsScriptItemDetails" parameterType="com.smartor.domain.ServiceSubtaskCountReq" |