UserChangesLogServiceI.java 489 B

123456789101112131415
  1. package cn.com.lzt.userchangeslog.service;
  2. import cn.com.lzt.userchangeslog.entity.UserChangesLogEntity;
  3. import org.jeecgframework.core.common.service.CommonService;
  4. import java.io.Serializable;
  5. public interface UserChangesLogServiceI extends CommonService{
  6. public void delete(UserChangesLogEntity entity) throws Exception;
  7. public Serializable save(UserChangesLogEntity entity) throws Exception;
  8. public void saveOrUpdate(UserChangesLogEntity entity) throws Exception;
  9. }