package com.thhy.mobile.modules.biz.checkdevice.mapper; import com.thhy.mobile.modules.biz.checkdevice.entity.CheckDevice; import com.thhy.mobile.modules.biz.checkdevice.entity.CheckDeviceDto; import com.thhy.mobile.modules.biz.checkdevice.entity.CheckDeviceListVo; import org.springframework.stereotype.Component; import java.io.Serializable; import java.util.HashMap; import java.util.List; /** * Mapper 接口 * @author zhang_xiao_bo * @since 2023-09-25 16:02:35 */ @Component public interface CheckDeviceMapper { CheckDevice queryById(Serializable id); CheckDeviceListVo queryInfoById(String id); Integer queryVersionById(Serializable id); List findList(CheckDeviceDto checkDeviceDto); List findAll(); void insert(CheckDevice checkdevice); void update(CheckDevice checkdevice); void deletelogic(Serializable id); void deleteById(Serializable id); List> deviceList(String companyId); }