package com.thhy.pm.modules.biz.technology.mapper; import com.thhy.pm.modules.biz.technology.entity.TchFileType; import org.springframework.stereotype.Component; import java.io.Serializable; import java.util.List; /** * Mapper 接口 * @author zhang_xiao_bo * @since 2023-04-25 13:05:22 */ @Component public interface TchFileTypeMapper { TchFileType queryById(Serializable tchFileTypeId); Integer queryVersionById(Serializable tchFileTypeId); List findList(TchFileType tchfiletype); List findAll(); void insert(TchFileType tchfiletype); void update(TchFileType tchfiletype); void deletelogic(Serializable tchFileTypeId); void deleteById(Serializable tchFileTypeId); }