|
|
@@ -7,6 +7,7 @@ import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.boot.test.context.SpringBootTest;
|
|
|
import org.springframework.test.context.junit4.SpringRunner;
|
|
|
|
|
|
+import java.util.HashMap;
|
|
|
import java.util.List;
|
|
|
import java.util.Map;
|
|
|
|
|
|
@@ -22,4 +23,11 @@ public class Test {
|
|
|
List<Map> empLeaveList = kycdService.getEmpLeaveList();
|
|
|
log.info("empLeaveList:{}",empLeaveList);
|
|
|
}
|
|
|
+
|
|
|
+ @org.junit.Test
|
|
|
+ public void test1(){
|
|
|
+ Map map = new HashMap();
|
|
|
+ map.put("userid_list", "140761015337804654");
|
|
|
+ kycdService.getEmployeeAnnualLeaveNum(map);
|
|
|
+ }
|
|
|
}
|