| 12345678910111213141516171819 |
- package com.zhongzheng.mapper;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- import com.zhongzheng.domian.SysCertificate;
- import com.zhongzheng.domian.SysCertificateAddition;
- import org.apache.ibatis.annotations.Mapper;
- /**
- * 字典表 数据层
- *
- * @author zhongzheng
- */
- @Mapper
- public interface SysCertificateAdditionMapper extends BaseMapper<SysCertificateAddition> {
- }
|