ICaseLiveService.java 389 B

12345678910111213141516171819
  1. package com.fdkankan.fusion.service;
  2. import com.fdkankan.fusion.entity.CaseLive;
  3. import com.baomidou.mybatisplus.extension.service.IService;
  4. /**
  5. * <p>
  6. * 服务类
  7. * </p>
  8. *
  9. * @author
  10. * @since 2023-08-10
  11. */
  12. public interface ICaseLiveService extends IService<CaseLive> {
  13. Object getByCaseId(Integer caseId,String userName);
  14. Object getByNum(String num, String userName);
  15. }