package cn.com.lzt.megathermalsubsidy.service; import java.io.Serializable; import java.util.List; import org.jeecgframework.core.common.service.CommonService; import cn.com.lzt.megathermalsubsidy.entity.MegathermalSubsidyEntity; public interface MegathermalSubsidyServiceI extends CommonService{ public void delete(MegathermalSubsidyEntity entity) throws Exception; public Serializable save(MegathermalSubsidyEntity entity) throws Exception; public void saveOrUpdate(MegathermalSubsidyEntity entity) throws Exception; /** * 批量更新操作 * */ public void batchUpdate(List entityList) throws Exception; /** * 补贴名称重复校验 * @param megathermalSubsidy * @return */ public Boolean findByName(MegathermalSubsidyEntity megathermalSubsidy); }