12345678910111213 |
- package com.ruoyi.demo.mapper;
- import com.ruoyi.common.mybatis.core.mapper.BaseMapperPlus;
- import com.ruoyi.demo.domain.TestDemoEncrypt;
- /**
- * 测试加密功能
- *
- * @author Lion Li
- */
- public interface TestDemoEncryptMapper extends BaseMapperPlus<TestDemoEncryptMapper, TestDemoEncrypt, TestDemoEncrypt> {
- }
|