| | |
| | | <id column="id" property="id"/> |
| | | <result column="name" property="name"/> |
| | | <result column="mac" property="mac"/> |
| | | <result column="guid" property="guid"/> |
| | | <result column="operate_ids" property="operateIds"/> |
| | | <result column="organization_id" property="organizationId"/> |
| | | <result column="device_version_id" property="deviceVersionId"/> |
| | |
| | | <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> |