admin
2024-09-14 5356cfea4f3238be5fd14a2d8ea8108d22a1b25e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.everyday.word;
 
import com.everyday.word.entity.EnglishWords;
import org.junit.jupiter.api.Test;
import org.yeshi.utils.generater.mybatis.MyBatisMapperUtil;
 
/**
 * @author hxh
 * @title: MapperTest
 * @description: TODO
 * @date 2024/9/14 13:35
 */
//@SpringBootTest
public class MapperTest {
 
    @Test
    public void createMapper(){
        MyBatisMapperUtil.createMapper(EnglishWords.class);
    }
 
 
}