ProvidentFundStrategyServiceI.java 651 B

12345678910111213141516171819202122
  1. package cn.com.lzt.providentfundstrategy.service;
  2. import java.io.Serializable;
  3. import org.jeecgframework.core.common.service.CommonService;
  4. import cn.com.lzt.providentfundstrategy.entity.ProvidentFundStrategyEntity;
  5. public interface ProvidentFundStrategyServiceI extends CommonService{
  6. public void delete(ProvidentFundStrategyEntity entity) throws Exception;
  7. public Serializable save(ProvidentFundStrategyEntity entity) throws Exception;
  8. public void saveOrUpdate(ProvidentFundStrategyEntity entity) throws Exception;
  9. /**
  10. * 逻辑删除
  11. *
  12. */
  13. public void logicDel(ProvidentFundStrategyEntity entity) throws Exception;
  14. }