2022-06-21 20:47:46 +08:00
|
|
|
package com.njcn;
|
|
|
|
|
|
2024-09-13 20:31:32 +08:00
|
|
|
import com.njcn.supervision.api.TempLineRunTestFeignClient;
|
2024-09-23 18:06:53 +08:00
|
|
|
import com.njcn.system.service.IAreaService;
|
2022-06-21 20:47:46 +08:00
|
|
|
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;
|
|
|
|
|
|
2024-09-13 20:31:32 +08:00
|
|
|
@Autowired
|
2024-09-23 18:06:53 +08:00
|
|
|
private IAreaService areaService;
|
2024-09-13 20:31:32 +08:00
|
|
|
|
2022-06-21 20:47:46 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
@Test
|
|
|
|
|
public void test(){
|
2024-09-23 18:06:53 +08:00
|
|
|
System.out.println(areaService.areaPro("110105000000", 0));
|
2022-06-21 20:47:46 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|