| 123456789101112131415161718192021222324252627 |
- package cn.com.lzt.attendance.service;
- import cn.com.lzt.attendance.entity.TBusSpecialAttendEntity;
- import org.jeecgframework.core.common.service.CommonService;
- import java.io.Serializable;
- public interface TBusSpecialAttendServiceI extends CommonService{
-
- public void delete(TBusSpecialAttendEntity entity) throws Exception;
-
- public Serializable save(TBusSpecialAttendEntity entity) throws Exception;
-
- public void saveOrUpdate(TBusSpecialAttendEntity entity) throws Exception;
- /**
- * @param userid
- * @return
- * @throws Exception
- */
- boolean hasSpecialAttendInfo(String userid) throws Exception;
- /**
- * @throws Exception
- */
- void reloadSpecialAttendInfoCache() throws Exception;
-
- }
|