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;
| }
| }
|
|