1
2
3
4
5
6
7
8
9
10
package com.by4cloud.platformx.business.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.by4cloud.platformx.business.entity.ContractSubjectMatter;
import com.by4cloud.platformx.common.core.util.R;
 
public interface ContractSubjectMatterService extends IService<ContractSubjectMatter> {
 
    R selectSubjectMatterProcess(Long id);
}