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