package com.by4cloud.platformx.business.service; import com.baomidou.mybatisplus.extension.service.IService; import com.by4cloud.platformx.business.entity.ContractSubjectMatter; import com.by4cloud.platformx.business.vo.SubjectMatterExcelVO; import com.by4cloud.platformx.common.core.util.R; import org.springframework.validation.BindingResult; import java.util.List; public interface ContractSubjectMatterService extends IService { R selectSubjectMatterProcess(Long id); R selectSubjectMatter(Long contractId); R importSubjectMatter(List excelVOList, BindingResult bindingResult); }