import { QuestionCircleOutlined } from "@ant-design/icons"
import { Tooltip } from "antd"
import React from "react"
export const daysColumns = () => {
return [
{
title: '日志ID',
dataIndex: 'id',
key: 'id',
align: 'center'
},
{
title: '公众号',
dataIndex: 'mpInfo',
key: 'mpInfo',
align: 'center',
width: 200,
render: (a: number[], b: any) => {
return
{b?.mpInfo?.nickName}
}
},
{
title: '客服消息任务ID',
dataIndex: 'kefuMsgStrategyId',
key: 'kefuMsgStrategyId',
align: 'center'
},
{
title: '公众号ID',
dataIndex: 'mpId',
key: 'mpId',
align: 'center'
},
{
title: 预计发送人数
,
dataIndex: 'estimateSendCount',
key: 'estimateSendCount',
align: 'center'
},
{
title: 实际发送人数
,
dataIndex: 'actualSendCount',
key: 'actualSendCount',
align: 'center'
},
{
title: '任务执行时间',
dataIndex: 'createTime',
key: 'createTime',
align: 'center'
}
]
}