package com.thhy.pm.modules.biz.technology.mapper;
|
|
import com.thhy.pm.modules.biz.technology.entity.TchFile;
|
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:06:53
|
*/
|
@Component
|
public interface TchFileMapper {
|
|
|
TchFile queryById(Serializable tchFileId);
|
|
Integer queryVersionById(Serializable tchFileId);
|
|
List<TchFile> findList(TchFile tchfile);
|
|
List<TchFile> findAll();
|
|
void insert(TchFile tchfile);
|
|
void update(TchFile tchfile);
|
|
void deletelogic(Serializable tchFileId);
|
|
void deleteById(Serializable tchFileId);
|
}
|