MegathermalSubsidyServiceI.java 821 B

1234567891011121314151617181920212223242526272829
  1. package cn.com.lzt.megathermalsubsidy.service;
  2. import java.io.Serializable;
  3. import java.util.List;
  4. import org.jeecgframework.core.common.service.CommonService;
  5. import cn.com.lzt.megathermalsubsidy.entity.MegathermalSubsidyEntity;
  6. public interface MegathermalSubsidyServiceI extends CommonService{
  7. public void delete(MegathermalSubsidyEntity entity) throws Exception;
  8. public Serializable save(MegathermalSubsidyEntity entity) throws Exception;
  9. public void saveOrUpdate(MegathermalSubsidyEntity entity) throws Exception;
  10. /**
  11. * 批量更新操作
  12. *
  13. */
  14. public void batchUpdate(List<MegathermalSubsidyEntity> entityList) throws Exception;
  15. /**
  16. * 补贴名称重复校验
  17. * @param megathermalSubsidy
  18. * @return
  19. */
  20. public Boolean findByName(MegathermalSubsidyEntity megathermalSubsidy);
  21. }