import { BasicColumn } from '@/components/Table'; import { FormSchema } from '@/components/Form'; export const formSchemas: FormSchema[] = []; export const columns: BasicColumn[] = [ { title: '计划号', dataIndex: 'planNum', }, { title: '计划日期', dataIndex: 'planDate', }, { title: '子站名称', dataIndex: 'station', }, { title: '子站状态', dataIndex: 'status', }, { title: '所属区域', dataIndex: 'area', }, { title: '运维公司', dataIndex: 'ioCompany', }, { title: '运维人员', dataIndex: 'ioPerson', }, { title: '监理类型', dataIndex: 'monitorType', }, { title: '监理公司', dataIndex: 'monitorCompany', }, ];