TestDemoEncryptMapper.java 315 B

12345678910111213
  1. package com.ruoyi.demo.mapper;
  2. import com.ruoyi.common.mybatis.core.mapper.BaseMapperPlus;
  3. import com.ruoyi.demo.domain.TestDemoEncrypt;
  4. /**
  5. * 测试加密功能
  6. *
  7. * @author Lion Li
  8. */
  9. public interface TestDemoEncryptMapper extends BaseMapperPlus<TestDemoEncryptMapper, TestDemoEncrypt, TestDemoEncrypt> {
  10. }