diff --git a/app/Domains/Virtual/Exports/FlowPoolExport.php b/app/Domains/Virtual/Exports/FlowPoolExport.php index bbc217f0..6ebc6af0 100644 --- a/app/Domains/Virtual/Exports/FlowPoolExport.php +++ b/app/Domains/Virtual/Exports/FlowPoolExport.php @@ -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, ]; } }