import { ref } from 'vue' import { ColumnsProps } from '../../../components/table/table-helper' import { AccountDept } from '../../../entity/account/account-dept' const columns = ref[]>([ { title: '部门名称', dataIndex: 'deptName' }, { title: '部门地址', dataIndex: 'address' }, { title: '负责人', dataIndex: 'contacts' }, { title: '所属单位', dataIndex: 'orgName' }, { title: '更新人', dataIndex: 'updateUserName' }, { title: '更新时间', dataIndex: 'gmtModified' } ]) export default columns