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