ComageSubsidyServiceI.java 482 B

123456789101112131415
  1. package cn.com.lzt.comagesubsidy.service;
  2. import cn.com.lzt.comagesubsidy.entity.ComageSubsidyEntity;
  3. import org.jeecgframework.core.common.service.CommonService;
  4. import java.io.Serializable;
  5. public interface ComageSubsidyServiceI extends CommonService{
  6. public void delete(ComageSubsidyEntity entity) throws Exception;
  7. public Serializable save(ComageSubsidyEntity entity) throws Exception;
  8. public void saveOrUpdate(ComageSubsidyEntity entity) throws Exception;
  9. }