shiyunteng
2026-06-01 909270d0f53cc42989b23042d684e8e822aae73b
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);
}