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