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 entityList) throws Exception; /** * 升序查询日历表 * @author zbw * 2017-11-6 * @param calendarAscDto * @param authSql * @return */ public List getCalendarAsc(CalendarAscDto calendarAscDto, String authSql); }