| | |
| | | |
| | | |
| | | <select id="selectGdApplicationInnovationPage" resultMap="gdApplicationInnovationResultMap"> |
| | | select * from ja_gd_application_innovation |
| | | select |
| | | * |
| | | from |
| | | ja_gd_application_innovation |
| | | <where> |
| | | and is_deleted = 0 |
| | | <if test="param2.caseName != null and param2.caseName != ''"> |
| | | and case_name like concat('%',#{param2.caseName},'%') |
| | | </if> |
| | | <if test="param2.innovationStatus != null and param2.innovationStatus != ''"> |
| | | and innovation_status = #{param2.innovationStatus} |
| | | </if> |
| | | and is_deleted = 0 |
| | | <if test="param2.deptList != null and param2.deptList.size > 0"> |
| | | and create_dept in |
| | | <foreach collection="param2.deptList" item="deptId" open="(" separator="," close=")"> |
| | | #{deptId} |
| | | </foreach> |
| | | </if> |
| | | </where> |
| | | |
| | | |
| | | </select> |
| | | |
| | | |