CalendarServiceI.java 861 B

12345678910111213141516171819202122232425262728293031323334
  1. package cn.com.lzt.calendar.service;
  2. import java.io.Serializable;
  3. import java.util.List;
  4. import org.jeecgframework.core.common.service.CommonService;
  5. import cn.com.lzt.calendar.dto.CalendarAscDto;
  6. import cn.com.lzt.calendar.entity.CalendarEntity;
  7. public interface CalendarServiceI extends CommonService{
  8. public void delete(CalendarEntity entity) throws Exception;
  9. public Serializable save(CalendarEntity entity) throws Exception;
  10. public void saveOrUpdate(CalendarEntity entity) throws Exception;
  11. /**
  12. * 批量更新操作
  13. *
  14. */
  15. public void batchUpdate(List<CalendarEntity> entityList) throws Exception;
  16. /**
  17. * 升序查询日历表
  18. * @author zbw
  19. * 2017-11-6
  20. * @param calendarAscDto
  21. * @param authSql
  22. * @return
  23. */
  24. public List<CalendarAscDto> getCalendarAsc(CalendarAscDto calendarAscDto, String authSql);
  25. }