| | |
| | | |
| | | 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<ContractSubjectMatter> { |
| | | |
| | | R selectSubjectMatterProcess(Long id); |
| | | |
| | | R selectSubjectMatter(Long contractId); |
| | | |
| | | R importSubjectMatter(List<SubjectMatterExcelVO> excelVOList, BindingResult bindingResult); |
| | | } |