1
0
mirror of synced 2025-12-24 02:57:55 +08:00

企业微信部门创建接口create返回值改为long类型

This commit is contained in:
Binary Wang
2018-12-26 16:24:30 +08:00
parent e7dd742923
commit 5af4059970
3 changed files with 4 additions and 4 deletions

View File

@@ -31,7 +31,7 @@ public class WxCpDepartmentServiceImplTest {
cpDepart.setName("子部门" + System.currentTimeMillis());
cpDepart.setParentId(1L);
cpDepart.setOrder(1L);
Integer departId = this.wxCpService.getDepartmentService().create(cpDepart);
Long departId = this.wxCpService.getDepartmentService().create(cpDepart);
System.out.println(departId);
}