yuxc
2023-05-19 029b101d319812460441d3d706c0654d8b0dcda6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.vci.ubcs.code.service.impl;
 
import com.vci.ubcs.code.service.ICodeResembleRuleService;
import com.vci.ubcs.code.vo.pagemodel.CodeResembleRuleVO;
import org.springframework.stereotype.Service;
 
/**
 * 相似查询规则服务
 * @author weidy
 * @date 2022-04-10
 */
@Service
public class CodeResembleRuleServiceImpl implements ICodeResembleRuleService {
    @Override
    public CodeResembleRuleVO getObjectByOid(String codeResembleRuleOid) {
        return null;
    }
}