package com.ruoyi.system.mapper.config;
|
|
import com.ruoyi.system.domain.pojo.config.Agreement;
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.ruoyi.system.domain.vo.AppAgreementVo;
|
import org.apache.ibatis.annotations.Param;
|
|
/**
|
* <p>
|
* 协议 Mapper 接口
|
* </p>
|
*
|
* @author jqs
|
* @since 2023-04-25
|
*/
|
public interface AgreementMapper extends BaseMapper<Agreement> {
|
/**
|
* 通过协议类型获取协议
|
* @param type
|
* @return
|
*/
|
AppAgreementVo getAppAgreementVoByType(@Param("type")Integer type);
|
|
}
|