package com.thhy.engineering.modules.biz.mould.service; import com.thhy.engineering.modules.biz.mould.entity.Mould; import com.thhy.engineering.modules.biz.mould.entity.MouldListVo; import java.io.Serializable; import java.util.List; /** * 服务类 * @author zhang_xiao_bo * @since 2023-04-11 16:33:56 */ public interface MouldService { Mould get(Serializable id); List findList(Mould mould); void addMould(Mould mould); void update(Mould mould); void delete(Serializable id); }