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