ScheduleNewUserService.java 838 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. package jnpf.base.service;
  2. import jnpf.base.entity.ScheduleNewUserEntity;
  3. import java.util.List;
  4. /**
  5. * 日程
  6. *
  7. * @author JNPF开发平台组
  8. * @copyright 引迈信息技术有限公司(https://www.jnpfsoft.com)
  9. */
  10. public interface ScheduleNewUserService extends SuperService<ScheduleNewUserEntity> {
  11. /**
  12. * 列表
  13. *
  14. * @return
  15. */
  16. List<ScheduleNewUserEntity> getList(String scheduleId,Integer type);
  17. /**
  18. * 列表
  19. *
  20. * @return
  21. */
  22. List<ScheduleNewUserEntity> getList();
  23. /**
  24. * 创建
  25. *
  26. * @param entity 实体
  27. */
  28. void create(ScheduleNewUserEntity entity);
  29. /**
  30. * 删除
  31. *
  32. */
  33. void deleteByScheduleId(List<String> scheduleIdList);
  34. /**
  35. * 删除
  36. *
  37. */
  38. void deleteByUserId(List<String> scheduleIdList);
  39. }