| 12345678910111213141516171819202122232425262728293031323334 |
- package cn.com.lzt.calendar.service;
- import java.io.Serializable;
- import java.util.List;
- import org.jeecgframework.core.common.service.CommonService;
- import cn.com.lzt.calendar.dto.CalendarAscDto;
- import cn.com.lzt.calendar.entity.CalendarEntity;
- public interface CalendarServiceI extends CommonService{
-
- public void delete(CalendarEntity entity) throws Exception;
-
- public Serializable save(CalendarEntity entity) throws Exception;
-
- public void saveOrUpdate(CalendarEntity entity) throws Exception;
-
- /**
- * 批量更新操作
- *
- */
- public void batchUpdate(List<CalendarEntity> entityList) throws Exception;
-
- /**
- * 升序查询日历表
- * @author zbw
- * 2017-11-6
- * @param calendarAscDto
- * @param authSql
- * @return
- */
- public List<CalendarAscDto> getCalendarAsc(CalendarAscDto calendarAscDto, String authSql);
-
- }
|