<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <%@page import="com.zky.pojo.MyUtils"%> <%@page import="com.zky.pub.HashFmlBuf"%> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>涉密资产信息</title> <link href="../../../css/font.css" rel="stylesheet" type="text/css"></link> <style type="text/css"> html { overflow-x:hidden; overflow-y:hidden; } .aselect{ width: 155px; } .bt{ text-align: center;} body{text-align: center;} </style> </head> <% HashFmlBuf buf=(HashFmlBuf)request.getAttribute("SmryTj_info"); int rowcount1 = buf.getRowCount(); %> <body> <div class="bt"> <br /> <h1 style="font-size: 25px;">资产明细</h1> </div> <div class="main"> <table width="1100px" border="0" align="center" cellpadding="2" cellspacing="1" bgcolor="d8e9fe" class="table02" > <tr bgcolor="#FFFFFF" > <td style="line-height: 30px;" class="cell1">所属地市</td> <td class="cell2"><%= buf.fget("framework_id",0)%></td> <td class="cell1">所属区县</td> <td class="cell2"> <%if( buf.fget("area_id",0).equals("省直机关")){%> 省直机关无区县 <%}else{ %> <%= buf.fget("area_id",0)%> <%} %> </td > <td class="cell1">登记单位名称</td> <td class="cell2"><%= buf.fget("DEPARTNAME",0)%></td> </tr > <tr bgcolor="#FFFFFF" > <td class="cell1">登记人</td> <td class="cell2"><%= buf.fget("USE_STAFFID",0)%></td> <td class="cell1"> 登记时间</td> <td class="cell2"><%=buf.fget("USE_DATE",0) %></td> <td class="cell1"> 使用人 </td> <td class="cell2"> <%= buf.fget("recover_departid",0)%></td> </tr> <tr bgcolor="#FFFFFF"> <td class="cell1">使用单位名称</td> <td class="cell2"><%= buf.fget("RECOVERNAME",0)%></td> <td class="cell1"> 下属部门 </td> <td class="cell2"> <%= buf.fget("part",0)%></td> <td class="cell1" width="100" height="40" >防护软件</td> <td class="cell2"><%=buf.fget("YESNO",0) %></td> </tr> <tr bgcolor="#FFFFFF"> <td class="cell1" width="100" height="40" >是否要害部门</td> <td class="cell2"><%=buf.fget("partyaohai",0) %></td> <td class="cell1" width="100" height="40" >硬盘是否读出SN号</td> <td class="cell2"><%=buf.fget("PROPERTY_SOFF",0) %></td> <td class="cell1" width="100" height="40" >备注</td> <td class="cell2"><%=buf.fget("REMARK",0) %></td> </tr> </table> <table width="1100px" border="0" align="center" cellpadding="2" cellspacing="1" bgcolor="d8e9fe" class="table02" > <tr height="30" bgcolor="#FFFFFF"> <td width="100" height="40" class="cell1">资产编号</td> <td width="100" height="40" class="cell2">资产名称</td> <td width="100" height="40" class="cell1">品牌</td> <td width="100"height="40" class="cell2">型号</td> <td width="100"height="40" class="cell1">MAC地址</td> <td width="100" height="40" class="cell2">密级</td> <td width="110"height="40" class="cell1">SN号</td> <td width="100" height="40" class="cell2" >网路状态</td> <td width="100" height="40" class="cell1">计算机类型</td> <td width="100" height="40" class="cell2" >导出时间</td> </tr> <% HashFmlBuf buf1=(HashFmlBuf)request.getAttribute("SmryTj_info"); if (buf1 != null) { int rowcount = buf1.getRowCount(); for (int i=0; i<rowcount; i++) { %> <tr bgcolor="#FFFFFF"> <td align="center" height="30"><%=buf1.fget("provideId",i) %></td> <td><%=buf1.fget("property_name",i) %></td> <td><%=buf1.fget("property_brand",i) %></td> <td><%=buf1.fget("Propertyno",i) %> </td> <td><%=buf1.fget("PROPERTY_MAC",i) %></td> <td><%=buf1.fget("Airtight",i) %></td> <td><%=buf1.fget("getPropertySn",i) %></td> <td><%=buf1.fget("PROPERTY_NETW",i) %> </td> <td><%=buf1.fget("PROPERTY_TYPE",i) %></td> <td><%=buf1.fget("EXTENT_TIME",i) %></td> </tr> <% } %> <% } %> </table> <br></br> <table align="center"> <tr> <td> <a href="javascript:history.go(-1)"><img src="../../images1/gb.png" alt="关闭" border="0" /></a></td> </tr> </table> </div> </body> </html>