package com.thhy.pm.modules.biz.draw.mapper;
|
|
import com.thhy.pm.modules.biz.draw.entity.DrawFile;
|
import com.thhy.pm.modules.biz.draw.entity.DrawFileListVo;
|
import org.springframework.stereotype.Component;
|
|
import java.io.Serializable;
|
import java.util.List;
|
|
/**
|
* Mapper 接口
|
* @author zhang_xiao_bo
|
* @since 2023-04-25 09:42:55
|
*/
|
@Component
|
public interface DrawFileMapper {
|
|
|
DrawFile queryById(Serializable id);
|
|
Integer queryVersionById(Serializable id);
|
|
List<DrawFileListVo> findList(DrawFile drawfile);
|
|
List<DrawFile> findAll();
|
|
void insert(DrawFile drawfile);
|
|
void update(DrawFile drawfile);
|
|
void deletelogic(Serializable id);
|
|
void deleteById(Serializable id);
|
|
void deleteByDrawId(String drawId);
|
}
|