import { ref } from 'vue' import { ColumnsProps } from '../../../components/table/table-helper' import { AccountUserVo } from '../../../entity/account/account-user' const columns = ref[]>([ { title: '用户名', dataIndex: 'userAccount' }, { title: '姓名', dataIndex: 'userName' }, { title: '部门', dataIndex: 'deptNames' }, { title: '单位', dataIndex: 'orgNames' }, { title: '创建人', dataIndex: 'createUserName' }, { title: '创建时间', dataIndex: 'gmtCreate' } ]) export default columns