| | |
| | | from |
| | | ja_gd_data_objection do |
| | | left join |
| | | ja_gd_data_objection_attachment da |
| | | on do.id = da.objection_id |
| | | left join blade_dept bd on bd.id = do.create_dept |
| | | ja_gd_data_objection_attachment da |
| | | on do.id = da.objection_id |
| | | left join |
| | | blade_dept bd on bd.id = do.create_dept |
| | | <where> |
| | | do.is_deleted = 0 |
| | | <if test="param2.title != null and param2.title != ''"> |
| | |
| | | <if test="param2.objectionStatus != null and param2.objectionStatus != ''"> |
| | | and do.objection_status = #{param2.objectionStatus} |
| | | </if> |
| | | <if test="param2.deptList != null and param2.deptList.size > 0"> |
| | | and do.create_dept in |
| | | <foreach collection="param2.deptList" item="deptId" open="(" separator="," close=")"> |
| | | #{deptId} |
| | | </foreach> |
| | | </if> |
| | | </where> |
| | | group by do.id |
| | | </select> |