jinpengyong
2023-11-14 d3b8905de283ea2e28c06f2c80f72397723b8d77
screen-api/src/main/resources/mapper/SpecialDeviceMapper.xml
@@ -17,4 +17,13 @@
        <result column="is_delete" property="isDelete"/>
    </resultMap>
    <select id="selectSpecialDevice" resultType="com.moral.api.pojo.vo.device.AppDeviceVo">
        SELECT id,`name`,mac,special_type FROM special_device
        WHERE 1=1
        <if test="organization_id !=null">
            AND organization_id=#{organizationId}
        </if>
           AND is_delete =0
    </select>
</mapper>