Files
pqs/pqs-system/system-boot/src/test/java/com/njcn/DictDataTest.java
2024-09-23 18:06:53 +08:00

30 lines
618 B
Java

package com.njcn;
import com.njcn.supervision.api.TempLineRunTestFeignClient;
import com.njcn.system.service.IAreaService;
import com.njcn.system.service.IDictTypeService;
import org.junit.Test;
import org.springframework.beans.factory.annotation.Autowired;
/**
* @author hongawen
* @version 1.0.0
* @date 2021年12月14日 12:55
*/
public class DictDataTest extends BaseJunitTest{
@Autowired
private IDictTypeService dictTypeService;
@Autowired
private IAreaService areaService;
@Test
public void test(){
System.out.println(areaService.areaPro("110105000000", 0));
}
}