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