package com.thhy.pm.modules.biz.meet.mapper;
|
|
import com.thhy.pm.modules.biz.meet.entity.Meefile;
|
import com.thhy.pm.modules.biz.meet.entity.MeetFileListVo;
|
import org.springframework.stereotype.Component;
|
|
import java.io.Serializable;
|
import java.util.List;
|
|
/**
|
* Mapper 接口
|
* @author zhang_xiao_bo
|
* @since 2023-04-25 14:06:52
|
*/
|
@Component
|
public interface MeefileMapper {
|
|
|
Meefile queryById(Serializable id);
|
|
Integer queryVersionById(Serializable id);
|
|
List<MeetFileListVo> findList(Meefile meefile);
|
|
List<Meefile> findAll();
|
|
void insert(Meefile meefile);
|
|
void update(Meefile meefile);
|
|
void deletelogic(Serializable id);
|
|
void deleteById(Serializable id);
|
|
void deleteByMeet(String meetFileId);
|
}
|