新增:CRM 商业智能,合同金额排行榜和回款金额排行榜

This commit is contained in:
anhaohao
2024-01-28 20:06:56 +08:00
parent 7bb171512a
commit 65d7f8c4ab
24 changed files with 797 additions and 0 deletions

View File

@ -50,4 +50,12 @@ public interface DeptApi {
return CollectionUtils.convertMap(list, DeptRespDTO::getId);
}
/**
* 获得指定部门的所有子部门
*
* @param id 部门编号
* @return 子部门列表
*/
List<DeptRespDTO> getChildDeptList(Long id);
}