test.java 513 Bytes
package com.huaheng.test;

import com.huaheng.pc.config.zone.mapper.ZoneMapper;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;

import javax.annotation.Resource;

@RunWith(SpringRunner.class)
@SpringBootTest
public class test {

    @Resource
    private ZoneMapper zoneMapper;

    @Test
    public void selectById(){

        System.out.println(zoneMapper.selectById(1));
    }
}