Blame view

SubjectRuleMapper.java 562 Bytes
涂亚平 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
package com.meishu.mapper;

import com.baomidou.mybatisplus.core.metadata.IPage;
import com.meishu.model.SubjectRuleDO;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.meishu.vo.rule.GetAllRulesVO;
import org.springframework.stereotype.Repository;

import java.util.List;

/**
 * <p>
 * 规则字典表 Mapper 接口
 * </p>
 *
 * @author Tuyp
 * @since 2021-05-08
 */
 @Repository
public interface SubjectRuleMapper extends BaseMapper<SubjectRuleDO> {

   IPage<GetAllRulesVO> getAllRules(IPage iPage);

   List<GetAllRulesVO> getRules();

}