package com.thhy.mobile.modules.biz.checkdevice.mapper; import com.thhy.mobile.modules.biz.checkdevice.entity.CheckDeviceFile; import org.springframework.stereotype.Component; import java.io.Serializable; import java.util.List; /** * Mapper 接口 * @author zhang_xiao_bo * @since 2023-09-25 16:03:58 */ @Component public interface CheckDeviceFileMapper { CheckDeviceFile queryById(Serializable id); Integer queryVersionById(Serializable id); List findList(CheckDeviceFile checkdevicefile); List findAll(String checkId); void insert(CheckDeviceFile checkdevicefile); void update(CheckDeviceFile checkdevicefile); void deletelogic(Serializable id); void deleteById(Serializable id); void deleteByCheckId(String checkId); }