4.1.9业主信息查询
图23所示即为业主信息查询界面,普通业主仅仅可以查询用户信息:
图23业主信息查询页面
核心代码:
37
业主姓名 | 性别 | 职业 | 电话 | 入住时间 | 入住人口 | 房屋地址 |
<% //获取WebApplicationContext WebApplicationContext wac=
WebApplicationContextUtils.getWebApplicationContext(this.getServletContext());
DButil db = (DButil)wac.getBean(\); int i = 0;
for(userInfo user:userlist){ String userId = user.getUserId(); String houseId=user.getHouseId();
HouseInfo houseInfo=(HouseInfo)db.getObject(\,houseId); String name=user.getName(); String sex=user.getSex();
String profession=user.getProfession(); String telephone=user.getTelephone(); Date cometime=user.getCometime(); int livenumber=user.getLivenumber();
38
if(i%2==0){ } else{ }
i++;
out.println(\); i++;
out.println(\);
%>
<%= name %> | <%= sex %> |
<%= profession %> | <%= telephone %> | <%= cometime %> | <%= livenumber %> |
<%= houseInfo.getAddress() %> | <% }
%>
4.1.10报修信息查询
39
图24所示即为报修信息查询界面,业主不但能够对各种报修信息进行查询,而且可以本身现实需要把相应报修申请提出:
图24报修信息查询页面
核心代码:
编号 | 业主名 | 电话 | 报修时间 | 地址 |
报修内容 | 完成状态 | 查看/修改 |
<% 40
联系客服:779662525#qq.com(#替换为@)