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