1
2
3
4
5
6
7
8
9
10
11
12
| package cn.gistack.sm.resDataCheck.service;
|
| import cn.gistack.sm.resDataCheck.entity.RulesCondition;
| import com.baomidou.mybatisplus.core.metadata.IPage;
| import org.springblade.core.mp.base.BaseService;
|
| /**
| * 数据校验规则
| */
| public interface IRulesConditionService extends BaseService<RulesCondition> {
| IPage<RulesCondition> selectRulesConditionPage(IPage<RulesCondition> page, RulesCondition rulesCondition);
| }
|
|