package com.thhy.pm.modules.biz.draw.service;
|
|
import com.thhy.pm.modules.biz.draw.entity.Draw;
|
import com.thhy.pm.modules.biz.draw.entity.DrawFile;
|
import com.thhy.pm.modules.biz.draw.entity.DrawFileListVo;
|
|
import java.io.Serializable;
|
import java.util.List;
|
|
/**
|
* 服务类
|
* @author zhang_xiao_bo
|
* @since 2023-04-25 09:36:32
|
*/
|
public interface DrawService {
|
|
Draw get(Serializable id);
|
|
List<Draw> findList(Draw draw);
|
|
List<DrawFileListVo> fileList(DrawFile drawFile);
|
|
void addDraw(Draw draw);
|
|
void update(Draw draw);
|
|
void delete(Serializable id);
|
}
|