| | |
| | | |
| | | |
| | | <select id="selectGdApplicationInnovationPage" resultMap="gdApplicationInnovationResultMap"> |
| | | select * from ja_gd_application_innovation where is_deleted = 0 |
| | | select * from ja_gd_application_innovation |
| | | <where> |
| | | <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 |
| | | </where> |
| | | |
| | | |
| | | </select> |
| | | |
| | | |