| | |
| | | <mapper namespace="com.zbooksoft.gdmis.dao.PhysicalDetailMapper"> |
| | | <select id="selectDistinctParentPhysicalInfo" parameterType="Long" |
| | | resultType="com.zbooksoft.gdmis.data.vo.ParentPhysicalInfo"> |
| | | select distinct file_id, archival_code, file_title |
| | | select distinct file_id, project_num, project_name |
| | | FROM UTL_PHYSICAL_DETAIL |
| | | WHERE (form_id = 0 or form_id is null) |
| | | and create_user_id = #{createUserId} |
| | |
| | | |
| | | <select id="selectDistinctParentPhysicalInfoByFormId" parameterType="Long" |
| | | resultType="com.zbooksoft.gdmis.data.vo.ParentPhysicalInfo"> |
| | | select distinct file_id, archival_code, file_title |
| | | select distinct file_id, project_num, project_name |
| | | FROM UTL_PHYSICAL_DETAIL |
| | | WHERE form_id = #{formId} |
| | | </select> |