1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| package com.highdatas.mdm.service;
|
| import com.baomidou.mybatisplus.service.IService;
| import com.highdatas.mdm.entity.TQualityRule;
| import com.highdatas.mdm.pojo.Result;
|
| /**
| * <p>
| * 规则表 服务类
| * </p>
| *
| * @author kimi
| * @since 2019-12-18
| */
| public interface ITQualityRuleService extends IService<TQualityRule> {
|
| Result rule(String tableName, String field, String ruleId);
| }
|
|