|
@@ -0,0 +1,137 @@
|
|
|
+<?xml version="1.0"?>
|
|
|
+<?mso-application progid="Excel.Sheet"?>
|
|
|
+<Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet"
|
|
|
+ xmlns:o="urn:schemas-microsoft-com:office:office"
|
|
|
+ xmlns:x="urn:schemas-microsoft-com:office:excel"
|
|
|
+ xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet"
|
|
|
+ xmlns:html="http://www.w3.org/TR/REC-html40">
|
|
|
+ <DocumentProperties xmlns="urn:schemas-microsoft-com:office:office">
|
|
|
+ <Author>adnetwork</Author>
|
|
|
+ <LastAuthor>adnetwork</LastAuthor>
|
|
|
+ <Created>2014-10-15T06:05:44Z</Created>
|
|
|
+ <Version>14.00</Version>
|
|
|
+ </DocumentProperties>
|
|
|
+ <OfficeDocumentSettings xmlns="urn:schemas-microsoft-com:office:office">
|
|
|
+ <AllowPNG/>
|
|
|
+ </OfficeDocumentSettings>
|
|
|
+ <ExcelWorkbook xmlns="urn:schemas-microsoft-com:office:excel">
|
|
|
+ <WindowHeight>5130</WindowHeight>
|
|
|
+ <WindowWidth>16155</WindowWidth>
|
|
|
+ <WindowTopX>240</WindowTopX>
|
|
|
+ <WindowTopY>45</WindowTopY>
|
|
|
+ <ProtectStructure>False</ProtectStructure>
|
|
|
+ <ProtectWindows>False</ProtectWindows>
|
|
|
+ </ExcelWorkbook>
|
|
|
+ <Styles>
|
|
|
+ <Style ss:ID="Default" ss:Name="Normal">
|
|
|
+ <Alignment ss:Vertical="Center"/>
|
|
|
+ <Borders/>
|
|
|
+ <Font ss:FontName="宋体" x:CharSet="134" ss:Size="11" ss:Color="#000000"/>
|
|
|
+ <Interior/>
|
|
|
+ <NumberFormat/>
|
|
|
+ <Protection/>
|
|
|
+ </Style>
|
|
|
+ <Style ss:ID="s63" ss:Name="超链接">
|
|
|
+ <Font ss:FontName="宋体" x:CharSet="134" ss:Size="11" ss:Color="#0000FF"
|
|
|
+ ss:Underline="Single"/>
|
|
|
+ </Style>
|
|
|
+ <Style ss:ID="s65">
|
|
|
+ <NumberFormat ss:Format="Short Date"/>
|
|
|
+ </Style>
|
|
|
+ <Style ss:ID="s66">
|
|
|
+ <NumberFormat ss:Format="0%"/>
|
|
|
+ </Style>
|
|
|
+ </Styles>
|
|
|
+ <Worksheet ss:Name="Sheet1">
|
|
|
+ <Table ss:ExpandedColumnCount="${column!}" ss:ExpandedRowCount="<#if dataSize??>${dataSize+2}<#else>2</#if>" x:FullColumns="1"
|
|
|
+ x:FullRows="1" ss:DefaultColumnWidth="54" ss:DefaultRowHeight="13.5">
|
|
|
+ <Column ss:AutoFitWidth="0" ss:Width="114"/>
|
|
|
+ <Column ss:AutoFitWidth="0" ss:Width="95.25"/>
|
|
|
+ <Column ss:AutoFitWidth="0" ss:Width="93" ss:Span="1"/>
|
|
|
+ <Column ss:Index="5" ss:AutoFitWidth="0" ss:Width="74.25"/>
|
|
|
+ <Column ss:Width="63"/>
|
|
|
+ <Row>
|
|
|
+ <Cell ss:MergeAcross="12"><Data ss:Type="String">省:${cnName!} 市:${cnCityName!} 场景:${placeNameDefinedByOperator!} 数聚场景:${placeName!} </Data></Cell>
|
|
|
+ </Row>
|
|
|
+ <Row>
|
|
|
+ <Cell><Data ss:Type="String">ID</Data></Cell>
|
|
|
+ <Cell><Data ss:Type="String">热点名称</Data></Cell>
|
|
|
+ <Cell><Data ss:Type="String">SSID</Data></Cell>
|
|
|
+ <Cell><Data ss:Type="String">省</Data></Cell>
|
|
|
+ <Cell><Data ss:Type="String">市</Data></Cell>
|
|
|
+ <Cell><Data ss:Type="String">详细地址</Data></Cell>
|
|
|
+ <Cell><Data ss:Type="String">经度</Data></Cell>
|
|
|
+ <Cell><Data ss:Type="String">纬度</Data></Cell>
|
|
|
+ <Cell><Data ss:Type="String">Apmac</Data></Cell>
|
|
|
+ <Cell><Data ss:Type="String">场景</Data></Cell>
|
|
|
+ <Cell><Data ss:Type="String">数聚场景</Data></Cell>
|
|
|
+ <Cell><Data ss:Type="String">最后更新时间</Data></Cell>
|
|
|
+ <Cell><Data ss:Type="String">状态</Data></Cell>
|
|
|
+ </Row>
|
|
|
+<#if dataList ??>
|
|
|
+ <#list dataList as wifi>
|
|
|
+ <Row>
|
|
|
+ <Cell><Data ss:Type="String">${wifi.id!}</Data></Cell>
|
|
|
+ <Cell><Data ss:Type="String">${wifi.name!}</Data></Cell>
|
|
|
+ <Cell><Data ss:Type="String">${wifi.SSID!}</Data></Cell>
|
|
|
+ <Cell><Data ss:Type="String">${wifi.cn!}</Data></Cell>
|
|
|
+ <Cell><Data ss:Type="String">${wifi.cnCity!}</Data></Cell>
|
|
|
+ <Cell><Data ss:Type="String">${wifi.address!}</Data></Cell>
|
|
|
+ <Cell><Data ss:Type="String">${wifi.longitude!}</Data></Cell>
|
|
|
+ <Cell><Data ss:Type="String">${wifi.latitude!}</Data></Cell>
|
|
|
+ <Cell><Data ss:Type="String">${wifi.apmac!}</Data></Cell>
|
|
|
+ <Cell><Data ss:Type="String">${wifi.placeName!}</Data></Cell>
|
|
|
+ <Cell><Data ss:Type="String">${wifi.place!}</Data></Cell>
|
|
|
+ <Cell><Data ss:Type="String">${wifi.updated?string('yyyy/MM/dd')}</Data></Cell>
|
|
|
+ <Cell><Data ss:Type="String"><#if wifi.status==1>暂停<#else>开启</#if></Data></Cell>
|
|
|
+ </Row>
|
|
|
+ </#list>
|
|
|
+ </#if>
|
|
|
+ </Table>
|
|
|
+ <WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
|
|
|
+ <PageSetup>
|
|
|
+ <Header x:Margin="0.3"/>
|
|
|
+ <Footer x:Margin="0.3"/>
|
|
|
+ <PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
|
|
|
+ </PageSetup>
|
|
|
+ <Selected/>
|
|
|
+ <Panes>
|
|
|
+ <Pane>
|
|
|
+ <Number>3</Number>
|
|
|
+ <ActiveRow>7</ActiveRow>
|
|
|
+ <ActiveCol>8</ActiveCol>
|
|
|
+ </Pane>
|
|
|
+ </Panes>
|
|
|
+ <ProtectObjects>False</ProtectObjects>
|
|
|
+ <ProtectScenarios>False</ProtectScenarios>
|
|
|
+ </WorksheetOptions>
|
|
|
+ </Worksheet>
|
|
|
+ <Worksheet ss:Name="Sheet2">
|
|
|
+ <Table ss:ExpandedColumnCount="1" ss:ExpandedRowCount="1" x:FullColumns="1"
|
|
|
+ x:FullRows="1" ss:DefaultColumnWidth="54" ss:DefaultRowHeight="13.5">
|
|
|
+ </Table>
|
|
|
+ <WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
|
|
|
+ <PageSetup>
|
|
|
+ <Header x:Margin="0.3"/>
|
|
|
+ <Footer x:Margin="0.3"/>
|
|
|
+ <PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
|
|
|
+ </PageSetup>
|
|
|
+ <ProtectObjects>False</ProtectObjects>
|
|
|
+ <ProtectScenarios>False</ProtectScenarios>
|
|
|
+ </WorksheetOptions>
|
|
|
+ </Worksheet>
|
|
|
+ <Worksheet ss:Name="Sheet3">
|
|
|
+ <Table ss:ExpandedColumnCount="1" ss:ExpandedRowCount="1" x:FullColumns="1"
|
|
|
+ x:FullRows="1" ss:DefaultColumnWidth="54" ss:DefaultRowHeight="13.5">
|
|
|
+ </Table>
|
|
|
+ <WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
|
|
|
+ <PageSetup>
|
|
|
+ <Header x:Margin="0.3"/>
|
|
|
+ <Footer x:Margin="0.3"/>
|
|
|
+ <PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
|
|
|
+ </PageSetup>
|
|
|
+ <ProtectObjects>False</ProtectObjects>
|
|
|
+ <ProtectScenarios>False</ProtectScenarios>
|
|
|
+ </WorksheetOptions>
|
|
|
+ </Worksheet>
|
|
|
+</Workbook>
|