FlowPoolExport

This commit is contained in:
邓皓元 2019-04-19 14:19:05 +08:00
parent cd6d9cfb1d
commit e68be74be4

View File

@ -27,7 +27,6 @@ class FlowPoolExport extends AbstractExport implements FromCollection, WithHeadi
'id' => $item->id,
'name' => $item->name,
'carrier_operator_name' => $item->carrier_operator_name,
'shared_name' => $item->shared_name,
'company_name' => $item->company_name,
'minimum_flows' => $item->minimum_flows,
'excess_flows' => $item->excess_flows,
@ -61,7 +60,6 @@ class FlowPoolExport extends AbstractExport implements FromCollection, WithHeadi
'ID',
'名称',
'运营商',
'共享类型',
'客户名称',
'保底流量',
'超出流量',
@ -78,9 +76,9 @@ class FlowPoolExport extends AbstractExport implements FromCollection, WithHeadi
public function columnFormats(): array
{
return [
'G' => NumberFormat::FORMAT_NUMBER_00,
'H' => NumberFormat::FORMAT_NUMBER_00,
'I' => NumberFormat::FORMAT_NUMBER_00,
'K' => NumberFormat::FORMAT_NUMBER_00,
'J' => NumberFormat::FORMAT_NUMBER_00,
];
}
}