| 123456789101112131415161718192021 |
- package cn.com.lzt.socialsecuritystrategy.service;
- import cn.com.lzt.providentfundstrategy.entity.ProvidentFundStrategyEntity;
- import cn.com.lzt.socialsecuritystrategy.entity.SocialSecurityStrategyEntity;
- import org.jeecgframework.core.common.service.CommonService;
- import java.io.Serializable;
- public interface SocialSecurityStrategyServiceI extends CommonService{
-
- public void delete(SocialSecurityStrategyEntity entity) throws Exception;
-
- public Serializable save(SocialSecurityStrategyEntity entity) throws Exception;
-
- public void saveOrUpdate(SocialSecurityStrategyEntity entity) throws Exception;
-
- /**
- * 逻辑删除
- *
- */
- public void logicDel(SocialSecurityStrategyEntity entity) throws Exception;
- }
|