package com.taoke.autopay;
|
|
import com.taoke.autopay.entity.KeyOrder;
|
import org.junit.jupiter.api.Test;
|
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);
|
|
}
|
|
}
|