zjh
2024-05-17 88ee7561ab60710099182514bf639e37fd6114a9
ltkj-hosp/src/main/resources/mapper/hosp/TjSurveyTemplateMapper.xml
@@ -267,5 +267,25 @@
        </foreach>
    </insert>
    <sql id="selectDictDataVo">
        select dict_code id,
               dict_label name,
               dict_value vaule
        from sys_dict_data
    </sql>
    <select id="selectDictDataList" parameterType="SysDictData" resultType="com.ltkj.hosp.domain.TreeTjSurveryTemplate">
        <include refid="selectDictDataVo"/>
        <where>
            <if test="dictType != null and dictType != ''">
                AND dict_type = #{dictType}
            </if>
            <if test="status != null and status != ''">
                AND status = #{status}
            </if>
        </where>
        order by dict_sort asc
    </select>
</mapper>