智能仲裁后端服务

CaseAttachLogMapper.java 782B

123456789101112131415161718192021222324252627282930
  1. package com.ruoyi.wisdomarbitrate.mapper;
  2. import com.ruoyi.wisdomarbitrate.domain.CaseApplication;
  3. import com.ruoyi.wisdomarbitrate.domain.CaseAttach;
  4. import org.apache.ibatis.annotations.Mapper;
  5. import org.apache.ibatis.annotations.Param;
  6. import java.util.List;
  7. @Mapper
  8. public interface CaseAttachLogMapper {
  9. int save(CaseAttach caseAttach);
  10. List<CaseAttach> queryAnnexPathByCaseId(Long id);
  11. List<CaseAttach> queryCaseAttachList(CaseApplication caseApplication);
  12. int updateCaseAttach(CaseAttach caseAttach);
  13. int updateCaseAttachBycaseid(CaseAttach caseAttach);
  14. int deleteByFileIds(@Param("ids") List<Integer> fileIds);
  15. List<CaseAttach> getCaseAttachByCaseIdAndType(CaseAttach caseAttach);
  16. CaseAttach queryAnnexById(Integer annexId);
  17. }