2025-07-17 18:07:48 +08:00
|
|
|
package com.klp.demo.mapper;
|
2023-03-19 22:08:25 +08:00
|
|
|
|
2025-07-17 18:07:48 +08:00
|
|
|
import com.klp.common.core.mapper.BaseMapperPlus;
|
|
|
|
|
import com.klp.demo.domain.TestDemoEncrypt;
|
2023-03-19 22:08:25 +08:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 测试加密功能
|
|
|
|
|
*
|
|
|
|
|
* @author Lion Li
|
|
|
|
|
*/
|
|
|
|
|
public interface TestDemoEncryptMapper extends BaseMapperPlus<TestDemoEncryptMapper, TestDemoEncrypt, TestDemoEncrypt> {
|
|
|
|
|
|
|
|
|
|
}
|