SocialSecurityStrategyServiceI.java 731 B

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