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