-
-
Notifications
You must be signed in to change notification settings - Fork 9k
CP_部门管理
Daniel Qian edited this page Oct 22, 2014
·
3 revisions
WxCpDepart depart = new WxCpDepart();
depart.setName("子部门" + System.currentTimeMillis());
depart.setParentId(1);
depart.setOrder(1);
Integer departId = wxCpService.departCreate(depart);
List<WxCpDepart> departList = wxCpService.departGet();
depart.setName("子部门改名" + System.currentTimeMillis());
wxCpService.departUpdate(depart);
wxCpService.departDelete(depart.getId());