admin
2024-06-30 b6fdf185c7e8fb1f06da0e609e39aecaef6b66f5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package com.taoke.autopay;
 
import com.taoke.autopay.entity.AdminUser;
import com.taoke.autopay.entity.KeyOrder;
import org.junit.jupiter.api.Test;
import org.yeshi.utils.generater.mybatis.ColumnParseUtil;
import org.yeshi.utils.generater.mybatis.MyBatisMapperUtil;
 
/**
 * @author hxh
 * @title: MapperTest
 * @description: TODO
 * @date 2024/6/14 18:25
 */
public class MapperTest {
 
    @Test
    public void test() {
//        MyBatisMapperUtil.createMapper(ClientInfo.class);
//        MyBatisMapperUtil.createMapper(KeyOrder.class);
//        MyBatisMapperUtil.createMapper(SystemConfig.class);
//        MyBatisMapperUtil.createMapper(WxUserInfo.class);
//        MyBatisMapperUtil.createMapper(WxUserOrderCount.class);
//        MyBatisMapperUtil.createMapper(AdminUser.class);
 
        ColumnParseUtil.parseColumn(KeyOrder.class,
                "D:\\项目\\淘客代付系统\\taoke_autopay_server\\src\\main\\resources\\mapper\\KeyOrderMapper.xml");
 
 
 
    }
 
}