25 lines
432 B
Java
25 lines
432 B
Java
|
|
package com.njcn;
|
||
|
|
|
||
|
|
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;
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
@Test
|
||
|
|
public void test(){
|
||
|
|
dictTypeService.dictDataCache();
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|