TBusSpecialAttendServiceI.java 710 B

123456789101112131415161718192021222324252627
  1. package cn.com.lzt.attendance.service;
  2. import cn.com.lzt.attendance.entity.TBusSpecialAttendEntity;
  3. import org.jeecgframework.core.common.service.CommonService;
  4. import java.io.Serializable;
  5. public interface TBusSpecialAttendServiceI extends CommonService{
  6. public void delete(TBusSpecialAttendEntity entity) throws Exception;
  7. public Serializable save(TBusSpecialAttendEntity entity) throws Exception;
  8. public void saveOrUpdate(TBusSpecialAttendEntity entity) throws Exception;
  9. /**
  10. * @param userid
  11. * @return
  12. * @throws Exception
  13. */
  14. boolean hasSpecialAttendInfo(String userid) throws Exception;
  15. /**
  16. * @throws Exception
  17. */
  18. void reloadSpecialAttendInfoCache() throws Exception;
  19. }