HereWhiteService.java 452 B

1234567891011121314151617181920212223
  1. package com.ym.service;
  2. import com.ym.pojo.HereWhite;
  3. import java.io.IOException;
  4. public interface HereWhiteService {
  5. /**
  6. * 创建白板
  7. * @param name
  8. * @param userNum
  9. * @return
  10. */
  11. HereWhite create(String name,Integer userNum,Integer courseScheduleId) throws Exception;
  12. /**
  13. * 获取白板详情
  14. * @param courseScheduleId
  15. * @return
  16. */
  17. HereWhite getByClassId(Integer courseScheduleId);
  18. }