import { BasicColumn } from '/@/components/Table'; export const columns: BasicColumn[] = [ { title: '消息主题', dataIndex: 'subject', width: 180 }, { title: '消息内容', dataIndex: 'content', width: 200, ellipsis: true }, { title: '接收人数', dataIndex: 'targets', width: 90 }, { title: '来源模块', dataIndex: 'moduleType', width: 150 }, { title: '推送人', dataIndex: 'sender', width: 100 }, { title: '推送时间', dataIndex: 'sendTime', width: 170 }, ];