ScheduleLogService.java 978 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. package jnpf.base.service;
  2. import jnpf.base.entity.ScheduleLogEntity;
  3. import java.util.List;
  4. /**
  5. * 日程
  6. *
  7. * @author JNPF开发平台组
  8. * @copyright 引迈信息技术有限公司(https://www.jnpfsoft.com)
  9. */
  10. public interface ScheduleLogService extends SuperService<ScheduleLogEntity> {
  11. /**
  12. * 列表
  13. *
  14. * @return
  15. */
  16. List<ScheduleLogEntity> getListAll(List<String> scheduleIdList);
  17. /**
  18. * 信息
  19. *
  20. * @param id 主键值
  21. * @return 单据规则
  22. */
  23. ScheduleLogEntity getInfo(String id);
  24. /**
  25. * 创建
  26. *
  27. * @param entity 实体
  28. */
  29. void create(ScheduleLogEntity entity);
  30. /**
  31. * 删除
  32. * @param scheduleIdList
  33. */
  34. void delete(List<String> scheduleIdList,String operationType);
  35. /**
  36. * 更新
  37. *
  38. * @param id 主键值
  39. * @param entity 实体对象
  40. * @return ignore
  41. */
  42. boolean update(String id, ScheduleLogEntity entity);
  43. }