12 lines
329 B
SQL
12 lines
329 B
SQL
SELECT
|
|
DepCode -- 部门编码
|
|
, SortDepCode -- 部门排序
|
|
, DepName -- 部门名称
|
|
, Sort -- 排序
|
|
, OrganType -- 组织类型
|
|
, DepNum -- 部门号
|
|
, DepType -- 部门类型
|
|
, ParentId -- 父id
|
|
, PrentDepCode -- 父部门编码
|
|
FROM ods_erp_tb_sys_department_d
|
|
where IsDelete = 0 |