- package cn.com.lzt.partner.service;
- import cn.com.lzt.partner.entity.PartnerEntity;
- import org.jeecgframework.core.common.service.CommonService;
- import java.io.Serializable;
- public interface PartnerServiceI extends CommonService{
-
- public void delete(PartnerEntity entity) throws Exception;
-
- public Serializable save(PartnerEntity entity) throws Exception;
-
- public void saveOrUpdate(PartnerEntity entity) throws Exception;
-
- }
|