package com.thhy.pm.modules.biz.technology.mapper; import com.thhy.pm.modules.biz.technology.entity.TchFiles; import com.thhy.pm.modules.biz.technology.entity.TchFilesListVo; import org.springframework.stereotype.Component; import java.io.Serializable; import java.util.List; /** * Mapper 接口 * @author zhang_xiao_bo * @since 2023-04-25 13:10:41 */ @Component public interface TchFilesMapper { TchFiles queryById(Serializable id); Integer queryVersionById(Serializable id); List findList(TchFiles tchfiles); List findAll(); void insert(TchFiles tchfiles); void update(TchFiles tchfiles); void deletelogic(Serializable id); void deleteById(Serializable id); void deleteByTchId(String tchId); }