├── .gitattributes
├── .project
├── README.md
├── mysql数据库说明.txt
├── 关于系统.txt
├── 安卓客户端
├── .classpath
├── .ic_launcher-web.png
├── .project
├── .settings
│ ├── org.eclipse.core.resources.prefs
│ └── org.eclipse.jdt.core.prefs
├── AndroidManifest.xml
├── libs
│ ├── MyTabActivity.jar
│ └── android-support-v4.jar
├── proguard-project.txt
├── project.properties
├── res
│ ├── drawable-hdpi
│ │ ├── btn_add.png
│ │ ├── btn_left_normal.png
│ │ └── ic_launcher.png
│ ├── drawable-ldpi
│ │ └── ic_launcher.png
│ ├── drawable-mdpi
│ │ ├── at_icon.png
│ │ ├── bottom_bg.png
│ │ ├── default_photo.png
│ │ ├── ic_launcher.png
│ │ ├── list_bg.jpg
│ │ ├── login.jpg
│ │ ├── menu_bg.jpg
│ │ ├── ml_default_image.png
│ │ ├── noimage.jpg
│ │ ├── operateicon.jpg
│ │ └── register.jpg
│ ├── drawable-xhdpi
│ │ ├── btn_default_pressed.9.png
│ │ ├── cinema_n.png
│ │ ├── cinema_p.png
│ │ ├── ic_launcher.png
│ │ ├── ic_user_del.png
│ │ ├── ic_user_info.png
│ │ ├── ic_user_pwd.png
│ │ ├── icon.png
│ │ ├── list_item_btn_normal.png
│ │ ├── list_item_btn_pressed.png
│ │ ├── more_n.png
│ │ ├── more_p.png
│ │ ├── movie_n.png
│ │ ├── movie_p.png
│ │ ├── search.png
│ │ ├── ticket_n.png
│ │ └── ticket_p.png
│ ├── drawable
│ │ ├── bar_bg.xml
│ │ ├── bar_text.xml
│ │ ├── btn_default.xml
│ │ ├── btn_item_medium_default.xml
│ │ ├── btn_pressed.xml
│ │ ├── btn_selector.xml
│ │ ├── buttons.xml
│ │ ├── cinema_bar.xml
│ │ ├── list_item_btn.xml
│ │ ├── list_item_default.xml
│ │ ├── list_item_pressed.xml
│ │ ├── more_bar.xml
│ │ ├── movie_bar.xml
│ │ ├── text_list_selector.xml
│ │ └── ticket_bar.xml
│ ├── layout
│ │ ├── about.xml
│ │ ├── classinfo_add.xml
│ │ ├── classinfo_detail.xml
│ │ ├── classinfo_edit.xml
│ │ ├── classinfo_list.xml
│ │ ├── classinfo_list_item.xml
│ │ ├── classinfo_query.xml
│ │ ├── gv_item.xml
│ │ ├── jc_add.xml
│ │ ├── jc_detail.xml
│ │ ├── jc_edit.xml
│ │ ├── jc_list.xml
│ │ ├── jc_list_item.xml
│ │ ├── jc_query.xml
│ │ ├── jubao_add.xml
│ │ ├── jubao_detail.xml
│ │ ├── jubao_edit.xml
│ │ ├── jubao_list.xml
│ │ ├── jubao_list_item.xml
│ │ ├── jubao_query.xml
│ │ ├── list_item.xml
│ │ ├── login_system.xml
│ │ ├── main.xml
│ │ ├── main_menu.xml
│ │ ├── message_list.xml
│ │ ├── more.xml
│ │ ├── photolist.xml
│ │ ├── register.xml
│ │ ├── room_add.xml
│ │ ├── room_detail.xml
│ │ ├── room_edit.xml
│ │ ├── room_list.xml
│ │ ├── room_list_item.xml
│ │ ├── room_query.xml
│ │ ├── seat_add.xml
│ │ ├── seat_detail.xml
│ │ ├── seat_edit.xml
│ │ ├── seat_list.xml
│ │ ├── seat_list_item.xml
│ │ ├── seat_query.xml
│ │ ├── seatorder_add.xml
│ │ ├── seatorder_detail.xml
│ │ ├── seatorder_edit.xml
│ │ ├── seatorder_list.xml
│ │ ├── seatorder_list_item.xml
│ │ ├── seatorder_query.xml
│ │ ├── seatstate_add.xml
│ │ ├── seatstate_detail.xml
│ │ ├── seatstate_edit.xml
│ │ ├── seatstate_list.xml
│ │ ├── seatstate_list_item.xml
│ │ ├── seatstate_query.xml
│ │ ├── selectseat_add.xml
│ │ ├── selectseat_detail.xml
│ │ ├── selectseat_edit.xml
│ │ ├── selectseat_list.xml
│ │ ├── selectseat_list_item.xml
│ │ ├── selectseat_query.xml
│ │ ├── title.xml
│ │ ├── title_list.xml
│ │ ├── user_login.xml
│ │ ├── userinfo_add.xml
│ │ ├── userinfo_detail.xml
│ │ ├── userinfo_edit.xml
│ │ ├── userinfo_list.xml
│ │ ├── userinfo_list_item.xml
│ │ ├── userinfo_query.xml
│ │ ├── usertype_add.xml
│ │ ├── usertype_detail.xml
│ │ ├── usertype_edit.xml
│ │ ├── usertype_list.xml
│ │ ├── usertype_list_item.xml
│ │ └── usertype_query.xml
│ ├── menu
│ │ └── activity_main.xml
│ └── values
│ │ ├── colors.xml
│ │ ├── strings.xml
│ │ └── styles.xml
└── src
│ └── com
│ └── mobileclient
│ ├── activity
│ ├── AboutActivity.java
│ ├── ClassInfoAddActivity.java
│ ├── ClassInfoDetailActivity.java
│ ├── ClassInfoEditActivity.java
│ ├── ClassInfoListActivity.java
│ ├── ClassInfoQueryActivity.java
│ ├── JcAddActivity.java
│ ├── JcDetailActivity.java
│ ├── JcEditActivity.java
│ ├── JcListActivity.java
│ ├── JcQueryActivity.java
│ ├── JubaoAddActivity.java
│ ├── JubaoDetailActivity.java
│ ├── JubaoEditActivity.java
│ ├── JubaoListActivity.java
│ ├── JubaoQueryActivity.java
│ ├── LoginActivity.java
│ ├── LoginActivityOld.java
│ ├── MainActivity.java
│ ├── MainMenuActivity.java
│ ├── MoreActivity.java
│ ├── MyProgressDialog.java
│ ├── RegisterActivity.java
│ ├── RoomAddActivity.java
│ ├── RoomDetailActivity.java
│ ├── RoomEditActivity.java
│ ├── RoomListActivity.java
│ ├── RoomQueryActivity.java
│ ├── SeatAddActivity.java
│ ├── SeatDetailActivity.java
│ ├── SeatEditActivity.java
│ ├── SeatListActivity.java
│ ├── SeatOrderAddActivity.java
│ ├── SeatOrderDetailActivity.java
│ ├── SeatOrderEditActivity.java
│ ├── SeatOrderListActivity.java
│ ├── SeatOrderQueryActivity.java
│ ├── SeatQueryActivity.java
│ ├── SeatStateAddActivity.java
│ ├── SeatStateDetailActivity.java
│ ├── SeatStateEditActivity.java
│ ├── SeatStateListActivity.java
│ ├── SeatStateQueryActivity.java
│ ├── SelectSeatAddActivity.java
│ ├── SelectSeatDetailActivity.java
│ ├── SelectSeatEditActivity.java
│ ├── SelectSeatListActivity.java
│ ├── SelectSeatQueryActivity.java
│ ├── UserInfoAddActivity.java
│ ├── UserInfoDetailActivity.java
│ ├── UserInfoEditActivity.java
│ ├── UserInfoListActivity.java
│ ├── UserInfoQueryActivity.java
│ ├── UserTypeAddActivity.java
│ ├── UserTypeDetailActivity.java
│ ├── UserTypeEditActivity.java
│ ├── UserTypeListActivity.java
│ ├── UserTypeQueryActivity.java
│ ├── fileListActivity.java
│ └── photoListActivity.java
│ ├── app
│ ├── CrashHandler.java
│ └── Declare.java
│ ├── domain
│ ├── ClassInfo.java
│ ├── Jc.java
│ ├── Jubao.java
│ ├── Room.java
│ ├── Seat.java
│ ├── SeatOrder.java
│ ├── SeatState.java
│ ├── SelectSeat.java
│ ├── UserInfo.java
│ └── UserType.java
│ ├── handler
│ ├── ClassInfoListHandler.java
│ ├── JcListHandler.java
│ ├── JubaoListHandler.java
│ ├── RoomListHandler.java
│ ├── SeatListHandler.java
│ ├── SeatOrderListHandler.java
│ ├── SeatStateListHandler.java
│ ├── SelectSeatListHandler.java
│ ├── UserInfoListHandler.java
│ └── UserTypeListHandler.java
│ ├── imgCache
│ ├── ImageLoadListener.java
│ ├── ListViewOnScrollListener.java
│ ├── OnImageLoadListener.java
│ ├── RunInOtherThread.java
│ └── SyncImageLoader.java
│ ├── service
│ ├── ClassInfoService.java
│ ├── JcService.java
│ ├── JubaoService.java
│ ├── RoomService.java
│ ├── SeatOrderService.java
│ ├── SeatService.java
│ ├── SeatStateService.java
│ ├── SelectSeatService.java
│ ├── UserInfoService.java
│ └── UserTypeService.java
│ └── util
│ ├── ActivityUtils.java
│ ├── ClassInfoSimpleAdapter.java
│ ├── HttpUtil.java
│ ├── ImageService.java
│ ├── ImageSimpleAdapter.java
│ ├── JcSimpleAdapter.java
│ ├── JubaoSimpleAdapter.java
│ ├── MD5Util.java
│ ├── RoomSimpleAdapter.java
│ ├── SeatOrderSimpleAdapter.java
│ ├── SeatSimpleAdapter.java
│ ├── SeatStateSimpleAdapter.java
│ ├── SelectSeatSimpleAdapter.java
│ ├── StreamTool.java
│ ├── UserInfoSimpleAdapter.java
│ └── UserTypeSimpleAdapter.java
└── 安卓服务器
├── .classpath
├── .mymetadata
├── .project
├── .settings
├── .jsdtscope
├── org.eclipse.jdt.core.prefs
├── org.eclipse.wst.jsdt.ui.superType.container
└── org.eclipse.wst.jsdt.ui.superType.name
├── WebRoot
├── ClassInfo_add.jsp
├── ClassInfo_frontquery_result.jsp
├── ClassInfo_frontshow.jsp
├── ClassInfo_modify.jsp
├── ClassInfo_query_result.jsp
├── Jc_add.jsp
├── Jc_frontquery_result.jsp
├── Jc_frontshow.jsp
├── Jc_modify.jsp
├── Jc_query_result.jsp
├── Jubao_add.jsp
├── Jubao_frontquery_result.jsp
├── Jubao_frontshow.jsp
├── Jubao_modify.jsp
├── Jubao_query_result.jsp
├── META-INF
│ └── MANIFEST.MF
├── Room_add.jsp
├── Room_frontquery_result.jsp
├── Room_frontshow.jsp
├── Room_modify.jsp
├── Room_query_result.jsp
├── SeatOrder_add.jsp
├── SeatOrder_frontquery_result.jsp
├── SeatOrder_frontshow.jsp
├── SeatOrder_modify.jsp
├── SeatOrder_query_result.jsp
├── SeatState_add.jsp
├── SeatState_frontquery_result.jsp
├── SeatState_frontshow.jsp
├── SeatState_modify.jsp
├── SeatState_query_result.jsp
├── Seat_add.jsp
├── Seat_frontquery_result.jsp
├── Seat_frontshow.jsp
├── Seat_modify.jsp
├── Seat_query_result.jsp
├── SelectSeat_add.jsp
├── SelectSeat_frontquery_result.jsp
├── SelectSeat_frontshow.jsp
├── SelectSeat_modify.jsp
├── SelectSeat_query_result.jsp
├── UserInfo_add.jsp
├── UserInfo_frontquery_result.jsp
├── UserInfo_frontshow.jsp
├── UserInfo_modify.jsp
├── UserInfo_query_result.jsp
├── UserType_add.jsp
├── UserType_frontquery_result.jsp
├── UserType_frontshow.jsp
├── UserType_modify.jsp
├── UserType_query_result.jsp
├── WEB-INF
│ ├── lib
│ │ ├── antlr-2.7.6.jar
│ │ ├── aspectjrt.jar
│ │ ├── aspectjweaver.jar
│ │ ├── c3p0-0.9.1.2.jar
│ │ ├── cglib-nodep-2.1_3.jar
│ │ ├── common-annotations.jar
│ │ ├── commons-collections-3.1.jar
│ │ ├── commons-fileupload-1.2.1.jar
│ │ ├── commons-io-1.3.2.jar
│ │ ├── commons-logging-1.0.4.jar
│ │ ├── commons-logging.jar
│ │ ├── dom4j-1.6.1.jar
│ │ ├── ehcache-1.2.3.jar
│ │ ├── ejb3-persistence.jar
│ │ ├── freemarker-2.3.15.jar
│ │ ├── hibernate-annotations.jar
│ │ ├── hibernate-cglib-repack-2.1_3.jar
│ │ ├── hibernate-commons-annotations.jar
│ │ ├── hibernate-entitymanager.jar
│ │ ├── hibernate3.jar
│ │ ├── javassist-3.4.GA.jar
│ │ ├── jstl.jar
│ │ ├── jta-1.1.jar
│ │ ├── log4j-1.2.15.jar
│ │ ├── mysql-connector-java-3.1.13-bin.jar
│ │ ├── ognl-2.7.3.jar
│ │ ├── org.json.jar
│ │ ├── poi-3.0.2-FINAL-20080204.jar
│ │ ├── slf4j-api-1.5.2.jar
│ │ ├── slf4j-log4j12.jar
│ │ ├── spring.jar
│ │ ├── standard.jar
│ │ ├── struts2-core-2.1.8.jar
│ │ ├── struts2-spring-plugin-2.1.8.jar
│ │ ├── tomcat-coyote.jar
│ │ └── xwork-core-2.1.6.jar
│ └── web.xml
├── calendar.js
├── center.html
├── css
│ ├── desk.css
│ ├── index.css
│ └── style.css
├── desk.jsp
├── down.html
├── error.jsp
├── images
│ ├── 11.gif
│ ├── 22.gif
│ ├── 33.gif
│ ├── Thumbs.db
│ ├── adminBg.jpg
│ ├── back.gif
│ ├── bg.gif
│ ├── bg.jpg
│ ├── del.gif
│ ├── dl.gif
│ ├── edt.gif
│ ├── error.jpg
│ ├── error_b.gif
│ ├── first.gif
│ ├── go.gif
│ ├── last.gif
│ ├── left.gif
│ ├── login_03 - 副本.gif
│ ├── login_03.gif
│ ├── login_05.gif
│ ├── login_06.gif
│ ├── login_07.gif
│ ├── login_08.gif
│ ├── logo.gif
│ ├── main_03.gif
│ ├── main_04.gif
│ ├── main_05.gif
│ ├── main_07.gif
│ ├── main_09.jpg
│ ├── main_11.gif
│ ├── main_12.gif
│ ├── main_14.gif
│ ├── main_16.gif
│ ├── main_18.gif
│ ├── main_20.gif
│ ├── main_21.gif
│ ├── main_22.gif
│ ├── main_29.gif
│ ├── main_30.gif
│ ├── main_31.gif
│ ├── main_32.gif
│ ├── main_34.gif
│ ├── main_36.gif
│ ├── main_37.gif
│ ├── main_39.gif
│ ├── main_40.gif
│ ├── main_41.gif
│ ├── main_45.gif
│ ├── main_47.gif
│ ├── main_48.gif
│ ├── main_51.gif
│ ├── main_52.gif
│ ├── main_55.gif
│ ├── main_55_1.gif
│ ├── main_58.gif
│ ├── main_59.gif
│ ├── main_61.gif
│ ├── main_62.gif
│ ├── next.gif
│ ├── tab_03.gif
│ ├── tab_05.gif
│ ├── tab_07.gif
│ ├── tab_12.gif
│ ├── tab_15.gif
│ ├── tab_17.gif
│ ├── tab_18.gif
│ ├── tab_19.gif
│ ├── tab_20.gif
│ └── tb.gif
├── index.jsp
├── left.jsp
├── login.jsp
├── logout.jsp
├── main.jsp
├── message.jsp
├── middel.html
├── password_modify.jsp
├── right.html
├── tab
│ ├── images
│ │ ├── 11.gif
│ │ ├── 22.gif
│ │ ├── 33.gif
│ │ ├── Thumbs.db
│ │ ├── back.gif
│ │ ├── bg.gif
│ │ ├── del.gif
│ │ ├── edt.gif
│ │ ├── first.gif
│ │ ├── go.gif
│ │ ├── last.gif
│ │ ├── next.gif
│ │ ├── tab_03.gif
│ │ ├── tab_05.gif
│ │ ├── tab_07.gif
│ │ ├── tab_12.gif
│ │ ├── tab_15.gif
│ │ ├── tab_17.gif
│ │ ├── tab_18.gif
│ │ ├── tab_19.gif
│ │ ├── tab_20.gif
│ │ └── tb.gif
│ └── tab.html
├── top.jsp
└── upload
│ └── noimage.jpg
└── src
├── DBConfig.properties
├── beans.xml
├── com
├── chengxusheji
│ ├── action
│ │ ├── BaseAction.java
│ │ ├── ChangePasswordAction.java
│ │ ├── ClassInfoAction.java
│ │ ├── JcAction.java
│ │ ├── JubaoAction.java
│ │ ├── LoginAction-login_CheckLogin-validation.xml
│ │ ├── LoginAction.java
│ │ ├── RoomAction.java
│ │ ├── SeatAction.java
│ │ ├── SeatOrderAction.java
│ │ ├── SeatStateAction.java
│ │ ├── SelectSeatAction.java
│ │ ├── UserAction.java
│ │ ├── UserInfoAction.java
│ │ └── UserTypeAction.java
│ ├── dao
│ │ ├── AdminDAO.java
│ │ ├── ClassInfoDAO.java
│ │ ├── JcDAO.java
│ │ ├── JubaoDAO.java
│ │ ├── RoomDAO.java
│ │ ├── SeatDAO.java
│ │ ├── SeatOrderDAO.java
│ │ ├── SeatStateDAO.java
│ │ ├── SelectSeatDAO.java
│ │ ├── UserInfoDAO.java
│ │ └── UserTypeDAO.java
│ ├── domain
│ │ ├── Admin-admin-validation.xml
│ │ ├── Admin.hbm.xml
│ │ ├── Admin.java
│ │ ├── ClassInfo.hbm.xml
│ │ ├── ClassInfo.java
│ │ ├── Jc.hbm.xml
│ │ ├── Jc.java
│ │ ├── Jubao.hbm.xml
│ │ ├── Jubao.java
│ │ ├── Room.hbm.xml
│ │ ├── Room.java
│ │ ├── Seat.hbm.xml
│ │ ├── Seat.java
│ │ ├── SeatOrder.hbm.xml
│ │ ├── SeatOrder.java
│ │ ├── SeatState.hbm.xml
│ │ ├── SeatState.java
│ │ ├── SelectSeat.hbm.xml
│ │ ├── SelectSeat.java
│ │ ├── UserInfo.hbm.xml
│ │ ├── UserInfo.java
│ │ ├── UserType.hbm.xml
│ │ └── UserType.java
│ ├── test
│ │ └── TestUtil.java
│ └── utils
│ │ ├── CardIdFieldValidator.java
│ │ ├── ExportExcelUtil.java
│ │ ├── FileTypeException.java
│ │ └── HibernateUtil.java
└── mobileserver
│ ├── dao
│ ├── ClassInfoDAO.java
│ ├── JcDAO.java
│ ├── JubaoDAO.java
│ ├── RoomDAO.java
│ ├── SeatDAO.java
│ ├── SeatOrderDAO.java
│ ├── SeatStateDAO.java
│ ├── SelectSeatDAO.java
│ ├── UserInfoDAO.java
│ └── UserTypeDAO.java
│ ├── domain
│ ├── ClassInfo.java
│ ├── Jc.java
│ ├── Jubao.java
│ ├── Room.java
│ ├── Seat.java
│ ├── SeatOrder.java
│ ├── SeatState.java
│ ├── SelectSeat.java
│ ├── UserInfo.java
│ └── UserType.java
│ ├── servlet
│ ├── ClassInfoServlet.java
│ ├── JcServlet.java
│ ├── JubaoServlet.java
│ ├── LoginServlet.java
│ ├── RegisterServlet.java
│ ├── RoomServlet.java
│ ├── SeatOrderServlet.java
│ ├── SeatServlet.java
│ ├── SeatStateServlet.java
│ ├── SelectSeatServlet.java
│ ├── UpPhotoServlet.java
│ ├── UserInfoServlet.java
│ └── UserTypeServlet.java
│ └── util
│ ├── ConnectionPool.java
│ ├── ConnectionPoolUtils.java
│ ├── DB.java
│ ├── DBUtil.java
│ └── MD5Util.java
├── struts.xml
└── validators.xml
/.gitattributes:
--------------------------------------------------------------------------------
1 | *.js linguist-language=Java
2 | *.css linguist-language=Java
3 | *.html linguist-language=Java
--------------------------------------------------------------------------------
/.project:
--------------------------------------------------------------------------------
1 |
2 |
3 | git_seat
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # android_library_seat
2 | # 安卓Android图书馆占座app设计
3 |
4 | 系统开发环境: Windows + Myclipse(服务器端) + Eclipse(手机客户端) + mysql数据库
5 |
6 | 服务器也可以用Eclipse或者idea等工具,客户端也可以采用android studio工具!
7 |
8 | 系统客户端和服务器端架构技术: 界面层,业务逻辑层,数据层3层分离技术,MVC设计思想!
9 |
10 | 服务器和客户端数据通信格式:json格式,采用servlet方式
11 |
12 | 【服务器端采用SSH框架,请自己启动tomcat服务器,hibernate会自动生成数据库表的哈!】
13 |
14 | hibernate生成数据库表后,只需要在admin管理员表中加个测试账号密码就可以登录后台了哈!
15 |
16 | 下面是数据库的字段说明:
17 |
18 | 班级: 班级编号,班级名称,成立日期,班主任,班级备注
19 |
20 | 用户: 用户名,登录密码,用户类型,所在班级,姓名,性别,出生日期,用户照片,联系电话,邮箱,家庭地址,是否黑名单,信用分,注册时间
21 |
22 | 用户类型: 用户类型id,用户类型名称
23 |
24 | 阅览室: 阅览室id,阅览室名称,阅览室照片,阅览室位置,总座位数
25 |
26 | 座位: 座位id,所在阅览室,座位编号,当前状态
27 |
28 | 座位状态: 状态id,状态名称
29 |
30 | 座位预约: 预约id,预约座位,预约日期,开始时间,结束时间,提交预约时间,预约用户,预约状态,管理回复,预约备注
31 |
32 | 选座: 选座id,座位编号,选座用户,选座开始时间,选座结束时间,选座状态
33 |
34 | 举报: 举报id,举报标题,举报内容,举报用户,举报时间,管理回复
35 |
36 | 奖惩: 奖惩id,奖惩类型,奖惩标题,奖惩内容,奖惩用户,信用分数,奖惩时间
37 |
--------------------------------------------------------------------------------
/mysql数据库说明.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/mysql数据库说明.txt
--------------------------------------------------------------------------------
/关于系统.txt:
--------------------------------------------------------------------------------
1 | ***********************************************************
2 | 关于程序的相关问题可以联系我们交流: *
3 | 联系QQ: 254540457 联系QQ: 344245001 *
4 | 网站: http://www.shuangyulin.com *
5 | QQ交流群一:143834285 QQ交流群二:179640010 *
6 | ***********************************************************
7 |
8 | 系统开发环境: Windows + Myclipse(服务器端) + Eclipse(手机客户端) + mysql数据库
9 |
10 | 服务器也可以用Eclipse或者idea等工具,客户端也可以采用android studio工具!
11 |
12 | 系统客户端和服务器端架构技术: 界面层,业务逻辑层,数据层3层分离技术,MVC设计思想!
13 |
14 | 服务器和客户端数据通信格式:json格式,采用servlet方式
15 |
16 | 【服务器端采用SSH框架,请自己启动tomcat服务器,hibernate会自动生成数据库表的哈!】
17 |
18 | hibernate生成数据库表后,只需要在admin管理员表中加个测试账号密码就可以登录后台了哈!
19 |
20 | 下面是数据库的字段说明:
21 |
22 | 班级: 班级编号,班级名称,成立日期,班主任,班级备注
23 |
24 | 用户: 用户名,登录密码,用户类型,所在班级,姓名,性别,出生日期,用户照片,联系电话,邮箱,家庭地址,是否黑名单,信用分,注册时间
25 |
26 | 用户类型: 用户类型id,用户类型名称
27 |
28 | 阅览室: 阅览室id,阅览室名称,阅览室照片,阅览室位置,总座位数
29 |
30 | 座位: 座位id,所在阅览室,座位编号,当前状态
31 |
32 | 座位状态: 状态id,状态名称
33 |
34 | 座位预约: 预约id,预约座位,预约日期,开始时间,结束时间,提交预约时间,预约用户,预约状态,管理回复,预约备注
35 |
36 | 选座: 选座id,座位编号,选座用户,选座开始时间,选座结束时间,选座状态
37 |
38 | 举报: 举报id,举报标题,举报内容,举报用户,举报时间,管理回复
39 |
40 | 奖惩: 奖惩id,奖惩类型,奖惩标题,奖惩内容,奖惩用户,信用分数,奖惩时间
41 |
--------------------------------------------------------------------------------
/安卓客户端/.classpath:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/安卓客户端/.ic_launcher-web.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓客户端/.ic_launcher-web.png
--------------------------------------------------------------------------------
/安卓客户端/.project:
--------------------------------------------------------------------------------
1 |
2 |
3 | MobileClient
4 |
5 |
6 |
7 |
8 |
9 | com.android.ide.eclipse.adt.ResourceManagerBuilder
10 |
11 |
12 |
13 |
14 | com.android.ide.eclipse.adt.PreCompilerBuilder
15 |
16 |
17 |
18 |
19 | org.eclipse.jdt.core.javabuilder
20 |
21 |
22 |
23 |
24 | com.android.ide.eclipse.adt.ApkBuilder
25 |
26 |
27 |
28 |
29 |
30 | com.android.ide.eclipse.adt.AndroidNature
31 | org.eclipse.jdt.core.javanature
32 |
33 |
34 |
--------------------------------------------------------------------------------
/安卓客户端/.settings/org.eclipse.core.resources.prefs:
--------------------------------------------------------------------------------
1 | eclipse.preferences.version=1
2 | encoding/=UTF-8
3 |
--------------------------------------------------------------------------------
/安卓客户端/.settings/org.eclipse.jdt.core.prefs:
--------------------------------------------------------------------------------
1 | eclipse.preferences.version=1
2 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
3 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
4 | org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
5 | org.eclipse.jdt.core.compiler.compliance=1.6
6 | org.eclipse.jdt.core.compiler.debug.lineNumber=generate
7 | org.eclipse.jdt.core.compiler.debug.localVariable=generate
8 | org.eclipse.jdt.core.compiler.debug.sourceFile=generate
9 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
10 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
11 | org.eclipse.jdt.core.compiler.source=1.6
12 |
--------------------------------------------------------------------------------
/安卓客户端/libs/MyTabActivity.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓客户端/libs/MyTabActivity.jar
--------------------------------------------------------------------------------
/安卓客户端/libs/android-support-v4.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓客户端/libs/android-support-v4.jar
--------------------------------------------------------------------------------
/安卓客户端/proguard-project.txt:
--------------------------------------------------------------------------------
1 | # To enable ProGuard in your project, edit project.properties
2 | # to define the proguard.config property as described in that file.
3 | #
4 | # Add project specific ProGuard rules here.
5 | # By default, the flags in this file are appended to flags specified
6 | # in ${sdk.dir}/tools/proguard/proguard-android.txt
7 | # You can edit the include path and order by changing the ProGuard
8 | # include property in project.properties.
9 | #
10 | # For more details, see
11 | # http://developer.android.com/guide/developing/tools/proguard.html
12 |
13 | # Add any project specific keep options here:
14 |
15 | # If your project uses WebView with JS, uncomment the following
16 | # and specify the fully qualified class name to the JavaScript interface
17 | # class:
18 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview {
19 | # public *;
20 | #}
21 |
--------------------------------------------------------------------------------
/安卓客户端/project.properties:
--------------------------------------------------------------------------------
1 | # This file is automatically generated by Android Tools.
2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED!
3 | #
4 | # This file must be checked in Version Control Systems.
5 | #
6 | # To customize properties used by the Ant build system edit
7 | # "ant.properties", and override values to adapt the script to your
8 | # project structure.
9 | #
10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home):
11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt
12 |
13 | # Project target.
14 | target=android-8
15 |
--------------------------------------------------------------------------------
/安卓客户端/res/drawable-hdpi/btn_add.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓客户端/res/drawable-hdpi/btn_add.png
--------------------------------------------------------------------------------
/安卓客户端/res/drawable-hdpi/btn_left_normal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓客户端/res/drawable-hdpi/btn_left_normal.png
--------------------------------------------------------------------------------
/安卓客户端/res/drawable-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓客户端/res/drawable-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/安卓客户端/res/drawable-ldpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓客户端/res/drawable-ldpi/ic_launcher.png
--------------------------------------------------------------------------------
/安卓客户端/res/drawable-mdpi/at_icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓客户端/res/drawable-mdpi/at_icon.png
--------------------------------------------------------------------------------
/安卓客户端/res/drawable-mdpi/bottom_bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓客户端/res/drawable-mdpi/bottom_bg.png
--------------------------------------------------------------------------------
/安卓客户端/res/drawable-mdpi/default_photo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓客户端/res/drawable-mdpi/default_photo.png
--------------------------------------------------------------------------------
/安卓客户端/res/drawable-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓客户端/res/drawable-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/安卓客户端/res/drawable-mdpi/list_bg.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓客户端/res/drawable-mdpi/list_bg.jpg
--------------------------------------------------------------------------------
/安卓客户端/res/drawable-mdpi/login.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓客户端/res/drawable-mdpi/login.jpg
--------------------------------------------------------------------------------
/安卓客户端/res/drawable-mdpi/menu_bg.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓客户端/res/drawable-mdpi/menu_bg.jpg
--------------------------------------------------------------------------------
/安卓客户端/res/drawable-mdpi/ml_default_image.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓客户端/res/drawable-mdpi/ml_default_image.png
--------------------------------------------------------------------------------
/安卓客户端/res/drawable-mdpi/noimage.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓客户端/res/drawable-mdpi/noimage.jpg
--------------------------------------------------------------------------------
/安卓客户端/res/drawable-mdpi/operateicon.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓客户端/res/drawable-mdpi/operateicon.jpg
--------------------------------------------------------------------------------
/安卓客户端/res/drawable-mdpi/register.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓客户端/res/drawable-mdpi/register.jpg
--------------------------------------------------------------------------------
/安卓客户端/res/drawable-xhdpi/btn_default_pressed.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓客户端/res/drawable-xhdpi/btn_default_pressed.9.png
--------------------------------------------------------------------------------
/安卓客户端/res/drawable-xhdpi/cinema_n.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓客户端/res/drawable-xhdpi/cinema_n.png
--------------------------------------------------------------------------------
/安卓客户端/res/drawable-xhdpi/cinema_p.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓客户端/res/drawable-xhdpi/cinema_p.png
--------------------------------------------------------------------------------
/安卓客户端/res/drawable-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓客户端/res/drawable-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/安卓客户端/res/drawable-xhdpi/ic_user_del.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓客户端/res/drawable-xhdpi/ic_user_del.png
--------------------------------------------------------------------------------
/安卓客户端/res/drawable-xhdpi/ic_user_info.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓客户端/res/drawable-xhdpi/ic_user_info.png
--------------------------------------------------------------------------------
/安卓客户端/res/drawable-xhdpi/ic_user_pwd.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓客户端/res/drawable-xhdpi/ic_user_pwd.png
--------------------------------------------------------------------------------
/安卓客户端/res/drawable-xhdpi/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓客户端/res/drawable-xhdpi/icon.png
--------------------------------------------------------------------------------
/安卓客户端/res/drawable-xhdpi/list_item_btn_normal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓客户端/res/drawable-xhdpi/list_item_btn_normal.png
--------------------------------------------------------------------------------
/安卓客户端/res/drawable-xhdpi/list_item_btn_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓客户端/res/drawable-xhdpi/list_item_btn_pressed.png
--------------------------------------------------------------------------------
/安卓客户端/res/drawable-xhdpi/more_n.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓客户端/res/drawable-xhdpi/more_n.png
--------------------------------------------------------------------------------
/安卓客户端/res/drawable-xhdpi/more_p.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓客户端/res/drawable-xhdpi/more_p.png
--------------------------------------------------------------------------------
/安卓客户端/res/drawable-xhdpi/movie_n.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓客户端/res/drawable-xhdpi/movie_n.png
--------------------------------------------------------------------------------
/安卓客户端/res/drawable-xhdpi/movie_p.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓客户端/res/drawable-xhdpi/movie_p.png
--------------------------------------------------------------------------------
/安卓客户端/res/drawable-xhdpi/search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓客户端/res/drawable-xhdpi/search.png
--------------------------------------------------------------------------------
/安卓客户端/res/drawable-xhdpi/ticket_n.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓客户端/res/drawable-xhdpi/ticket_n.png
--------------------------------------------------------------------------------
/安卓客户端/res/drawable-xhdpi/ticket_p.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓客户端/res/drawable-xhdpi/ticket_p.png
--------------------------------------------------------------------------------
/安卓客户端/res/drawable/bar_bg.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/安卓客户端/res/drawable/bar_text.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/安卓客户端/res/drawable/btn_default.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/安卓客户端/res/drawable/btn_item_medium_default.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
6 |
--------------------------------------------------------------------------------
/安卓客户端/res/drawable/btn_pressed.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/安卓客户端/res/drawable/btn_selector.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/安卓客户端/res/drawable/buttons.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/安卓客户端/res/drawable/cinema_bar.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/安卓客户端/res/drawable/list_item_btn.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/安卓客户端/res/drawable/list_item_default.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/安卓客户端/res/drawable/list_item_pressed.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/安卓客户端/res/drawable/more_bar.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/安卓客户端/res/drawable/movie_bar.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/安卓客户端/res/drawable/text_list_selector.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/安卓客户端/res/drawable/ticket_bar.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/安卓客户端/res/layout/classinfo_list.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
13 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/安卓客户端/res/layout/gv_item.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
10 |
13 |
14 |
16 |
17 |
20 |
21 |
--------------------------------------------------------------------------------
/安卓客户端/res/layout/jc_list.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
13 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/安卓客户端/res/layout/jubao_list.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
13 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/安卓客户端/res/layout/list_item.xml:
--------------------------------------------------------------------------------
1 |
6 |
7 |
18 |
19 |
26 |
27 |
--------------------------------------------------------------------------------
/安卓客户端/res/layout/main_menu.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
18 |
19 |
--------------------------------------------------------------------------------
/安卓客户端/res/layout/message_list.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
11 |
17 |
23 |
27 |
28 |
36 |
37 |
--------------------------------------------------------------------------------
/安卓客户端/res/layout/more.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
11 |
12 |
16 |
17 |
23 |
24 |
35 |
36 |
37 |
43 |
44 |
57 |
58 |
59 |
--------------------------------------------------------------------------------
/安卓客户端/res/layout/photolist.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/安卓客户端/res/layout/room_list.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
13 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/安卓客户端/res/layout/room_query.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
11 |
12 |
16 |
17 |
23 |
30 |
31 |
32 |
37 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
--------------------------------------------------------------------------------
/安卓客户端/res/layout/seat_list.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
13 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/安卓客户端/res/layout/seatorder_list.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
13 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/安卓客户端/res/layout/seatstate_add.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
9 |
10 |
13 |
18 |
22 |
23 |
30 |
44 |
45 |
46 |
47 |
52 |
62 |
63 |
64 |
65 |
66 |
67 |
--------------------------------------------------------------------------------
/安卓客户端/res/layout/seatstate_detail.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
11 |
16 |
20 |
21 |
28 |
34 |
35 |
36 |
43 |
49 |
50 |
51 |
56 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
--------------------------------------------------------------------------------
/安卓客户端/res/layout/seatstate_list.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
13 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/安卓客户端/res/layout/seatstate_list_item.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 |
10 |
15 |
25 |
35 |
36 |
37 |
38 |
39 |
40 |
--------------------------------------------------------------------------------
/安卓客户端/res/layout/seatstate_query.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
11 |
12 |
16 |
17 |
22 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
--------------------------------------------------------------------------------
/安卓客户端/res/layout/selectseat_list.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
13 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/安卓客户端/res/layout/title.xml:
--------------------------------------------------------------------------------
1 |
8 |
17 |
18 |
29 |
40 |
--------------------------------------------------------------------------------
/安卓客户端/res/layout/title_list.xml:
--------------------------------------------------------------------------------
1 |
8 |
9 |
18 |
19 |
29 |
40 |
--------------------------------------------------------------------------------
/安卓客户端/res/layout/userinfo_list.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
13 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/安卓客户端/res/layout/usertype_add.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
9 |
10 |
13 |
18 |
22 |
23 |
30 |
44 |
45 |
46 |
47 |
52 |
62 |
63 |
64 |
65 |
66 |
67 |
--------------------------------------------------------------------------------
/安卓客户端/res/layout/usertype_detail.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
11 |
16 |
20 |
21 |
28 |
34 |
35 |
36 |
43 |
49 |
50 |
51 |
56 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
--------------------------------------------------------------------------------
/安卓客户端/res/layout/usertype_list.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
13 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/安卓客户端/res/layout/usertype_list_item.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 |
10 |
15 |
25 |
35 |
36 |
37 |
38 |
39 |
40 |
--------------------------------------------------------------------------------
/安卓客户端/res/layout/usertype_query.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
11 |
12 |
16 |
17 |
22 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
--------------------------------------------------------------------------------
/安卓客户端/res/menu/activity_main.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/安卓客户端/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | MobileClient
5 | Hello world!
6 | Settings
7 |
8 |
9 |
--------------------------------------------------------------------------------
/安卓客户端/res/values/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
7 |
14 |
15 |
16 |
19 |
20 |
29 |
30 |
--------------------------------------------------------------------------------
/安卓客户端/src/com/mobileclient/activity/AboutActivity.java:
--------------------------------------------------------------------------------
1 | package com.mobileclient.activity;
2 |
3 | import android.app.Activity;
4 | import android.os.Bundle;
5 | import android.view.View;
6 | import android.view.View.OnClickListener;
7 | import android.view.Window;
8 | import android.view.WindowManager;
9 | import android.widget.ImageView;
10 | import android.widget.TextView;
11 |
12 | public class AboutActivity extends Activity{
13 | private TextView title;
14 | private ImageView search;
15 | private ImageView back_btn;
16 | @Override
17 | protected void onCreate(Bundle savedInstanceState) {
18 | // TODO Auto-generated method stub
19 | super.onCreate(savedInstanceState);
20 | //去除title
21 | requestWindowFeature(Window.FEATURE_NO_TITLE);
22 | //去掉Activity上面的状态栏
23 | getWindow().setFlags(WindowManager.LayoutParams. FLAG_FULLSCREEN , WindowManager.LayoutParams. FLAG_FULLSCREEN);
24 |
25 | setContentView(R.layout.about);
26 | title = (TextView)findViewById(R.id.title);
27 | search = (ImageView)findViewById(R.id.search);
28 | search.setVisibility(View.GONE);
29 | title.setText("关于");
30 | back_btn = (ImageView)this.findViewById(R.id.back_btn);
31 | back_btn.setOnClickListener(new OnClickListener(){
32 | @Override
33 | public void onClick(View arg0) {
34 | finish();
35 | }
36 |
37 | });
38 | }
39 |
40 | }
41 |
--------------------------------------------------------------------------------
/安卓客户端/src/com/mobileclient/activity/MyProgressDialog.java:
--------------------------------------------------------------------------------
1 | package com.mobileclient.activity;
2 |
3 | import android.app.ProgressDialog;
4 | import android.content.Context;
5 |
6 | /**
7 | * @author 作者 :Duncan Wei
8 | * @version 创建时间:2013-12-9 下午01:43:42
9 | * 类说明
10 | */
11 |
12 | public class MyProgressDialog extends ProgressDialog {
13 |
14 | public MyProgressDialog(Context context) {
15 | super(context);
16 | }
17 | public static MyProgressDialog getInstance(Context context)
18 | {
19 | MyProgressDialog dialog=new MyProgressDialog(context);
20 | dialog.setMessage("请稍候...");
21 | dialog.setIndeterminate(true);
22 | dialog.setCancelable(true);
23 | return dialog;
24 | }
25 |
26 | }
27 |
--------------------------------------------------------------------------------
/安卓客户端/src/com/mobileclient/activity/UserTypeQueryActivity.java:
--------------------------------------------------------------------------------
1 | package com.mobileclient.activity;
2 | import java.sql.Timestamp;
3 | import java.util.Date;
4 | import java.util.List;
5 | import com.mobileclient.domain.UserType;
6 |
7 | import android.app.Activity;
8 | import android.content.Intent;
9 | import android.os.Bundle;
10 | import android.view.View;
11 | import android.view.View.OnClickListener;
12 | import android.view.Window;
13 | import android.view.WindowManager;
14 | import android.widget.AdapterView;
15 | import android.widget.AdapterView.OnItemSelectedListener;
16 | import android.widget.ArrayAdapter;
17 | import android.widget.Button;
18 | import android.widget.CheckBox;
19 | import android.widget.DatePicker;
20 | import android.widget.EditText;
21 | import android.widget.Spinner;
22 |
23 | import android.widget.ImageView;
24 | import android.widget.TextView;
25 | public class UserTypeQueryActivity extends Activity {
26 | // 声明查询按钮
27 | private Button btnQuery;
28 | /*查询过滤条件保存到这个对象中*/
29 | private UserType queryConditionUserType = new UserType();
30 |
31 | @Override
32 | public void onCreate(Bundle savedInstanceState) {
33 | super.onCreate(savedInstanceState);
34 | //去除title
35 | requestWindowFeature(Window.FEATURE_NO_TITLE);
36 | //去掉Activity上面的状态栏
37 | getWindow().setFlags(WindowManager.LayoutParams. FLAG_FULLSCREEN , WindowManager.LayoutParams. FLAG_FULLSCREEN);
38 | // 设置当前Activity界面布局
39 | setContentView(R.layout.usertype_query);
40 | ImageView search = (ImageView) this.findViewById(R.id.search);
41 | search.setVisibility(View.GONE);
42 | TextView title = (TextView) this.findViewById(R.id.title);
43 | title.setText("设置用户类型查询条件");
44 | ImageView back_btn = (ImageView) this.findViewById(R.id.back_btn);
45 | back_btn.setOnClickListener(new android.view.View.OnClickListener(){
46 | @Override
47 | public void onClick(View arg0) {
48 | finish();
49 | }
50 | });
51 | btnQuery = (Button) findViewById(R.id.btnQuery);
52 | /*单击查询按钮*/
53 | btnQuery.setOnClickListener(new OnClickListener() {
54 | public void onClick(View v) {
55 | try {
56 | /*获取查询参数*/
57 | Intent intent = getIntent();
58 | //这里使用bundle绷带来传输数据
59 | Bundle bundle =new Bundle();
60 | //传输的内容仍然是键值对的形式
61 | bundle.putSerializable("queryConditionUserType", queryConditionUserType);
62 | intent.putExtras(bundle);
63 | setResult(RESULT_OK,intent);
64 | finish();
65 | } catch (Exception e) {}
66 | }
67 | });
68 | }
69 | }
70 |
--------------------------------------------------------------------------------
/安卓客户端/src/com/mobileclient/app/Declare.java:
--------------------------------------------------------------------------------
1 | package com.mobileclient.app;
2 |
3 | import java.io.File;
4 |
5 | import android.app.Application;
6 | import android.content.Context;
7 |
8 | import com.mobileclient.util.HttpUtil;
9 |
10 | public class Declare extends Application {
11 |
12 |
13 | @Override
14 | public void onCreate() {
15 | super.onCreate();
16 | CrashHandler crashHandler = CrashHandler.getInstance();
17 | crashHandler.init(getApplicationContext());
18 | context = this.getApplicationContext();
19 | File path = new File(HttpUtil.FILE_PATH);
20 | if(!path.exists()) path.mkdirs();
21 | }
22 |
23 | public static Context context;
24 |
25 |
26 | private int id;
27 | private String userName;
28 | private String identify; //用户身份
29 |
30 | public String getUserName() {
31 | return userName;
32 | }
33 | public void setUserName(String userName) {
34 | this.userName = userName;
35 | }
36 | public int getId() {
37 | return id;
38 | }
39 | public void setId(int id) {
40 | this.id = id;
41 | }
42 | public String getIdentify() {
43 | return identify;
44 | }
45 | public void setIdentify(String identify) {
46 | this.identify = identify;
47 | }
48 |
49 |
50 | }
51 |
--------------------------------------------------------------------------------
/安卓客户端/src/com/mobileclient/domain/ClassInfo.java:
--------------------------------------------------------------------------------
1 | package com.mobileclient.domain;
2 |
3 | import java.io.Serializable;
4 |
5 | public class ClassInfo implements Serializable {
6 | /*班级编号*/
7 | private String classNo;
8 | public String getClassNo() {
9 | return classNo;
10 | }
11 | public void setClassNo(String classNo) {
12 | this.classNo = classNo;
13 | }
14 |
15 | /*班级名称*/
16 | private String className;
17 | public String getClassName() {
18 | return className;
19 | }
20 | public void setClassName(String className) {
21 | this.className = className;
22 | }
23 |
24 | /*成立日期*/
25 | private java.sql.Timestamp bornDate;
26 | public java.sql.Timestamp getBornDate() {
27 | return bornDate;
28 | }
29 | public void setBornDate(java.sql.Timestamp bornDate) {
30 | this.bornDate = bornDate;
31 | }
32 |
33 | /*班主任*/
34 | private String mainTeacher;
35 | public String getMainTeacher() {
36 | return mainTeacher;
37 | }
38 | public void setMainTeacher(String mainTeacher) {
39 | this.mainTeacher = mainTeacher;
40 | }
41 |
42 | /*班级备注*/
43 | private String classMemo;
44 | public String getClassMemo() {
45 | return classMemo;
46 | }
47 | public void setClassMemo(String classMemo) {
48 | this.classMemo = classMemo;
49 | }
50 |
51 | }
--------------------------------------------------------------------------------
/安卓客户端/src/com/mobileclient/domain/Jc.java:
--------------------------------------------------------------------------------
1 | package com.mobileclient.domain;
2 |
3 | import java.io.Serializable;
4 |
5 | public class Jc implements Serializable {
6 | /*奖惩id*/
7 | private int jcId;
8 | public int getJcId() {
9 | return jcId;
10 | }
11 | public void setJcId(int jcId) {
12 | this.jcId = jcId;
13 | }
14 |
15 | /*奖惩类型*/
16 | private String jcType;
17 | public String getJcType() {
18 | return jcType;
19 | }
20 | public void setJcType(String jcType) {
21 | this.jcType = jcType;
22 | }
23 |
24 | /*奖惩标题*/
25 | private String title;
26 | public String getTitle() {
27 | return title;
28 | }
29 | public void setTitle(String title) {
30 | this.title = title;
31 | }
32 |
33 | /*奖惩内容*/
34 | private String content;
35 | public String getContent() {
36 | return content;
37 | }
38 | public void setContent(String content) {
39 | this.content = content;
40 | }
41 |
42 | /*奖惩用户*/
43 | private String userObj;
44 | public String getUserObj() {
45 | return userObj;
46 | }
47 | public void setUserObj(String userObj) {
48 | this.userObj = userObj;
49 | }
50 |
51 | /*信用分数*/
52 | private float creditScore;
53 | public float getCreditScore() {
54 | return creditScore;
55 | }
56 | public void setCreditScore(float creditScore) {
57 | this.creditScore = creditScore;
58 | }
59 |
60 | /*奖惩时间*/
61 | private String jcTime;
62 | public String getJcTime() {
63 | return jcTime;
64 | }
65 | public void setJcTime(String jcTime) {
66 | this.jcTime = jcTime;
67 | }
68 |
69 | }
--------------------------------------------------------------------------------
/安卓客户端/src/com/mobileclient/domain/Jubao.java:
--------------------------------------------------------------------------------
1 | package com.mobileclient.domain;
2 |
3 | import java.io.Serializable;
4 |
5 | public class Jubao implements Serializable {
6 | /*举报id*/
7 | private int jubaoId;
8 | public int getJubaoId() {
9 | return jubaoId;
10 | }
11 | public void setJubaoId(int jubaoId) {
12 | this.jubaoId = jubaoId;
13 | }
14 |
15 | /*举报标题*/
16 | private String title;
17 | public String getTitle() {
18 | return title;
19 | }
20 | public void setTitle(String title) {
21 | this.title = title;
22 | }
23 |
24 | /*举报内容*/
25 | private String content;
26 | public String getContent() {
27 | return content;
28 | }
29 | public void setContent(String content) {
30 | this.content = content;
31 | }
32 |
33 | /*举报用户*/
34 | private String userObj;
35 | public String getUserObj() {
36 | return userObj;
37 | }
38 | public void setUserObj(String userObj) {
39 | this.userObj = userObj;
40 | }
41 |
42 | /*举报时间*/
43 | private String jubaoTime;
44 | public String getJubaoTime() {
45 | return jubaoTime;
46 | }
47 | public void setJubaoTime(String jubaoTime) {
48 | this.jubaoTime = jubaoTime;
49 | }
50 |
51 | /*管理回复*/
52 | private String replyContent;
53 | public String getReplyContent() {
54 | return replyContent;
55 | }
56 | public void setReplyContent(String replyContent) {
57 | this.replyContent = replyContent;
58 | }
59 |
60 | }
--------------------------------------------------------------------------------
/安卓客户端/src/com/mobileclient/domain/Room.java:
--------------------------------------------------------------------------------
1 | package com.mobileclient.domain;
2 |
3 | import java.io.Serializable;
4 |
5 | public class Room implements Serializable {
6 | /*阅览室id*/
7 | private int roomId;
8 | public int getRoomId() {
9 | return roomId;
10 | }
11 | public void setRoomId(int roomId) {
12 | this.roomId = roomId;
13 | }
14 |
15 | /*阅览室名称*/
16 | private String roomName;
17 | public String getRoomName() {
18 | return roomName;
19 | }
20 | public void setRoomName(String roomName) {
21 | this.roomName = roomName;
22 | }
23 |
24 | /*阅览室照片*/
25 | private String roomPhoto;
26 | public String getRoomPhoto() {
27 | return roomPhoto;
28 | }
29 | public void setRoomPhoto(String roomPhoto) {
30 | this.roomPhoto = roomPhoto;
31 | }
32 |
33 | /*阅览室位置*/
34 | private String roomPlace;
35 | public String getRoomPlace() {
36 | return roomPlace;
37 | }
38 | public void setRoomPlace(String roomPlace) {
39 | this.roomPlace = roomPlace;
40 | }
41 |
42 | /*总座位数*/
43 | private int seatNum;
44 | public int getSeatNum() {
45 | return seatNum;
46 | }
47 | public void setSeatNum(int seatNum) {
48 | this.seatNum = seatNum;
49 | }
50 |
51 | }
--------------------------------------------------------------------------------
/安卓客户端/src/com/mobileclient/domain/Seat.java:
--------------------------------------------------------------------------------
1 | package com.mobileclient.domain;
2 |
3 | import java.io.Serializable;
4 |
5 | public class Seat implements Serializable {
6 | /*座位id*/
7 | private int seatId;
8 | public int getSeatId() {
9 | return seatId;
10 | }
11 | public void setSeatId(int seatId) {
12 | this.seatId = seatId;
13 | }
14 |
15 | /*所在阅览室*/
16 | private int roomObj;
17 | public int getRoomObj() {
18 | return roomObj;
19 | }
20 | public void setRoomObj(int roomObj) {
21 | this.roomObj = roomObj;
22 | }
23 |
24 | /*座位编号*/
25 | private String seatCode;
26 | public String getSeatCode() {
27 | return seatCode;
28 | }
29 | public void setSeatCode(String seatCode) {
30 | this.seatCode = seatCode;
31 | }
32 |
33 | /*当前状态*/
34 | private int seatStateObj;
35 | public int getSeatStateObj() {
36 | return seatStateObj;
37 | }
38 | public void setSeatStateObj(int seatStateObj) {
39 | this.seatStateObj = seatStateObj;
40 | }
41 |
42 | }
--------------------------------------------------------------------------------
/安卓客户端/src/com/mobileclient/domain/SeatState.java:
--------------------------------------------------------------------------------
1 | package com.mobileclient.domain;
2 |
3 | import java.io.Serializable;
4 |
5 | public class SeatState implements Serializable {
6 | /*状态id*/
7 | private int stateId;
8 | public int getStateId() {
9 | return stateId;
10 | }
11 | public void setStateId(int stateId) {
12 | this.stateId = stateId;
13 | }
14 |
15 | /*状态名称*/
16 | private String stateName;
17 | public String getStateName() {
18 | return stateName;
19 | }
20 | public void setStateName(String stateName) {
21 | this.stateName = stateName;
22 | }
23 |
24 | }
--------------------------------------------------------------------------------
/安卓客户端/src/com/mobileclient/domain/SelectSeat.java:
--------------------------------------------------------------------------------
1 | package com.mobileclient.domain;
2 |
3 | import java.io.Serializable;
4 |
5 | public class SelectSeat implements Serializable {
6 | /*选座id*/
7 | private int selectId;
8 | public int getSelectId() {
9 | return selectId;
10 | }
11 | public void setSelectId(int selectId) {
12 | this.selectId = selectId;
13 | }
14 |
15 | /*座位编号*/
16 | private int seatObj;
17 | public int getSeatObj() {
18 | return seatObj;
19 | }
20 | public void setSeatObj(int seatObj) {
21 | this.seatObj = seatObj;
22 | }
23 |
24 | /*选座用户*/
25 | private String userObj;
26 | public String getUserObj() {
27 | return userObj;
28 | }
29 | public void setUserObj(String userObj) {
30 | this.userObj = userObj;
31 | }
32 |
33 | /*选座开始时间*/
34 | private String startTime;
35 | public String getStartTime() {
36 | return startTime;
37 | }
38 | public void setStartTime(String startTime) {
39 | this.startTime = startTime;
40 | }
41 |
42 | /*选座结束时间*/
43 | private String endTime;
44 | public String getEndTime() {
45 | return endTime;
46 | }
47 | public void setEndTime(String endTime) {
48 | this.endTime = endTime;
49 | }
50 |
51 | /*选座状态*/
52 | private String seatState;
53 | public String getSeatState() {
54 | return seatState;
55 | }
56 | public void setSeatState(String seatState) {
57 | this.seatState = seatState;
58 | }
59 |
60 | }
--------------------------------------------------------------------------------
/安卓客户端/src/com/mobileclient/domain/UserType.java:
--------------------------------------------------------------------------------
1 | package com.mobileclient.domain;
2 |
3 | import java.io.Serializable;
4 |
5 | public class UserType implements Serializable {
6 | /*用户类型id*/
7 | private int userTypeId;
8 | public int getUserTypeId() {
9 | return userTypeId;
10 | }
11 | public void setUserTypeId(int userTypeId) {
12 | this.userTypeId = userTypeId;
13 | }
14 |
15 | /*用户类型名称*/
16 | private String userTypeName;
17 | public String getUserTypeName() {
18 | return userTypeName;
19 | }
20 | public void setUserTypeName(String userTypeName) {
21 | this.userTypeName = userTypeName;
22 | }
23 |
24 | }
--------------------------------------------------------------------------------
/安卓客户端/src/com/mobileclient/handler/ClassInfoListHandler.java:
--------------------------------------------------------------------------------
1 | package com.mobileclient.handler;
2 | import java.sql.Timestamp;
3 | import java.util.ArrayList;
4 | import java.util.List;
5 |
6 | import org.xml.sax.Attributes;
7 | import org.xml.sax.SAXException;
8 | import org.xml.sax.helpers.DefaultHandler;
9 |
10 | import com.mobileclient.domain.ClassInfo;
11 | public class ClassInfoListHandler extends DefaultHandler {
12 | private List classInfoList = null;
13 | private ClassInfo classInfo;
14 | private String tempString;
15 | @Override
16 | public void characters(char[] ch, int start, int length) throws SAXException {
17 | super.characters(ch, start, length);
18 | if (classInfo != null) {
19 | String valueString = new String(ch, start, length);
20 | if ("classNo".equals(tempString))
21 | classInfo.setClassNo(valueString);
22 | else if ("className".equals(tempString))
23 | classInfo.setClassName(valueString);
24 | else if ("bornDate".equals(tempString))
25 | classInfo.setBornDate(Timestamp.valueOf(valueString));
26 | else if ("mainTeacher".equals(tempString))
27 | classInfo.setMainTeacher(valueString);
28 | else if ("classMemo".equals(tempString))
29 | classInfo.setClassMemo(valueString);
30 | }
31 | }
32 |
33 | @Override
34 | public void endElement(String uri, String localName, String qName) throws SAXException {
35 | super.endElement(uri, localName, qName);
36 | if("ClassInfo".equals(localName)&&classInfo!=null){
37 | classInfoList.add(classInfo);
38 | classInfo = null;
39 | }
40 | tempString = null;
41 | }
42 |
43 | @Override
44 | public void startDocument() throws SAXException {
45 | super.startDocument();
46 | classInfoList = new ArrayList();
47 | }
48 |
49 | @Override
50 | public void startElement(String uri, String localName, String qName,Attributes attributes) throws SAXException {
51 | super.startElement(uri, localName, qName, attributes);
52 | if ("ClassInfo".equals(localName)) {
53 | classInfo = new ClassInfo();
54 | }
55 | tempString = localName;
56 | }
57 |
58 | public List getClassInfoList() {
59 | return this.classInfoList;
60 | }
61 | }
62 |
--------------------------------------------------------------------------------
/安卓客户端/src/com/mobileclient/handler/JcListHandler.java:
--------------------------------------------------------------------------------
1 | package com.mobileclient.handler;
2 | import java.sql.Timestamp;
3 | import java.util.ArrayList;
4 | import java.util.List;
5 |
6 | import org.xml.sax.Attributes;
7 | import org.xml.sax.SAXException;
8 | import org.xml.sax.helpers.DefaultHandler;
9 |
10 | import com.mobileclient.domain.Jc;
11 | public class JcListHandler extends DefaultHandler {
12 | private List jcList = null;
13 | private Jc jc;
14 | private String tempString;
15 | @Override
16 | public void characters(char[] ch, int start, int length) throws SAXException {
17 | super.characters(ch, start, length);
18 | if (jc != null) {
19 | String valueString = new String(ch, start, length);
20 | if ("jcId".equals(tempString))
21 | jc.setJcId(new Integer(valueString).intValue());
22 | else if ("jcType".equals(tempString))
23 | jc.setJcType(valueString);
24 | else if ("title".equals(tempString))
25 | jc.setTitle(valueString);
26 | else if ("content".equals(tempString))
27 | jc.setContent(valueString);
28 | else if ("userObj".equals(tempString))
29 | jc.setUserObj(valueString);
30 | else if ("creditScore".equals(tempString))
31 | jc.setCreditScore(new Float(valueString).floatValue());
32 | else if ("jcTime".equals(tempString))
33 | jc.setJcTime(valueString);
34 | }
35 | }
36 |
37 | @Override
38 | public void endElement(String uri, String localName, String qName) throws SAXException {
39 | super.endElement(uri, localName, qName);
40 | if("Jc".equals(localName)&&jc!=null){
41 | jcList.add(jc);
42 | jc = null;
43 | }
44 | tempString = null;
45 | }
46 |
47 | @Override
48 | public void startDocument() throws SAXException {
49 | super.startDocument();
50 | jcList = new ArrayList();
51 | }
52 |
53 | @Override
54 | public void startElement(String uri, String localName, String qName,Attributes attributes) throws SAXException {
55 | super.startElement(uri, localName, qName, attributes);
56 | if ("Jc".equals(localName)) {
57 | jc = new Jc();
58 | }
59 | tempString = localName;
60 | }
61 |
62 | public List getJcList() {
63 | return this.jcList;
64 | }
65 | }
66 |
--------------------------------------------------------------------------------
/安卓客户端/src/com/mobileclient/handler/JubaoListHandler.java:
--------------------------------------------------------------------------------
1 | package com.mobileclient.handler;
2 | import java.sql.Timestamp;
3 | import java.util.ArrayList;
4 | import java.util.List;
5 |
6 | import org.xml.sax.Attributes;
7 | import org.xml.sax.SAXException;
8 | import org.xml.sax.helpers.DefaultHandler;
9 |
10 | import com.mobileclient.domain.Jubao;
11 | public class JubaoListHandler extends DefaultHandler {
12 | private List jubaoList = null;
13 | private Jubao jubao;
14 | private String tempString;
15 | @Override
16 | public void characters(char[] ch, int start, int length) throws SAXException {
17 | super.characters(ch, start, length);
18 | if (jubao != null) {
19 | String valueString = new String(ch, start, length);
20 | if ("jubaoId".equals(tempString))
21 | jubao.setJubaoId(new Integer(valueString).intValue());
22 | else if ("title".equals(tempString))
23 | jubao.setTitle(valueString);
24 | else if ("content".equals(tempString))
25 | jubao.setContent(valueString);
26 | else if ("userObj".equals(tempString))
27 | jubao.setUserObj(valueString);
28 | else if ("jubaoTime".equals(tempString))
29 | jubao.setJubaoTime(valueString);
30 | else if ("replyContent".equals(tempString))
31 | jubao.setReplyContent(valueString);
32 | }
33 | }
34 |
35 | @Override
36 | public void endElement(String uri, String localName, String qName) throws SAXException {
37 | super.endElement(uri, localName, qName);
38 | if("Jubao".equals(localName)&&jubao!=null){
39 | jubaoList.add(jubao);
40 | jubao = null;
41 | }
42 | tempString = null;
43 | }
44 |
45 | @Override
46 | public void startDocument() throws SAXException {
47 | super.startDocument();
48 | jubaoList = new ArrayList();
49 | }
50 |
51 | @Override
52 | public void startElement(String uri, String localName, String qName,Attributes attributes) throws SAXException {
53 | super.startElement(uri, localName, qName, attributes);
54 | if ("Jubao".equals(localName)) {
55 | jubao = new Jubao();
56 | }
57 | tempString = localName;
58 | }
59 |
60 | public List getJubaoList() {
61 | return this.jubaoList;
62 | }
63 | }
64 |
--------------------------------------------------------------------------------
/安卓客户端/src/com/mobileclient/handler/RoomListHandler.java:
--------------------------------------------------------------------------------
1 | package com.mobileclient.handler;
2 | import java.sql.Timestamp;
3 | import java.util.ArrayList;
4 | import java.util.List;
5 |
6 | import org.xml.sax.Attributes;
7 | import org.xml.sax.SAXException;
8 | import org.xml.sax.helpers.DefaultHandler;
9 |
10 | import com.mobileclient.domain.Room;
11 | public class RoomListHandler extends DefaultHandler {
12 | private List roomList = null;
13 | private Room room;
14 | private String tempString;
15 | @Override
16 | public void characters(char[] ch, int start, int length) throws SAXException {
17 | super.characters(ch, start, length);
18 | if (room != null) {
19 | String valueString = new String(ch, start, length);
20 | if ("roomId".equals(tempString))
21 | room.setRoomId(new Integer(valueString).intValue());
22 | else if ("roomName".equals(tempString))
23 | room.setRoomName(valueString);
24 | else if ("roomPhoto".equals(tempString))
25 | room.setRoomPhoto(valueString);
26 | else if ("roomPlace".equals(tempString))
27 | room.setRoomPlace(valueString);
28 | else if ("seatNum".equals(tempString))
29 | room.setSeatNum(new Integer(valueString).intValue());
30 | }
31 | }
32 |
33 | @Override
34 | public void endElement(String uri, String localName, String qName) throws SAXException {
35 | super.endElement(uri, localName, qName);
36 | if("Room".equals(localName)&&room!=null){
37 | roomList.add(room);
38 | room = null;
39 | }
40 | tempString = null;
41 | }
42 |
43 | @Override
44 | public void startDocument() throws SAXException {
45 | super.startDocument();
46 | roomList = new ArrayList();
47 | }
48 |
49 | @Override
50 | public void startElement(String uri, String localName, String qName,Attributes attributes) throws SAXException {
51 | super.startElement(uri, localName, qName, attributes);
52 | if ("Room".equals(localName)) {
53 | room = new Room();
54 | }
55 | tempString = localName;
56 | }
57 |
58 | public List getRoomList() {
59 | return this.roomList;
60 | }
61 | }
62 |
--------------------------------------------------------------------------------
/安卓客户端/src/com/mobileclient/handler/SeatListHandler.java:
--------------------------------------------------------------------------------
1 | package com.mobileclient.handler;
2 | import java.sql.Timestamp;
3 | import java.util.ArrayList;
4 | import java.util.List;
5 |
6 | import org.xml.sax.Attributes;
7 | import org.xml.sax.SAXException;
8 | import org.xml.sax.helpers.DefaultHandler;
9 |
10 | import com.mobileclient.domain.Seat;
11 | public class SeatListHandler extends DefaultHandler {
12 | private List seatList = null;
13 | private Seat seat;
14 | private String tempString;
15 | @Override
16 | public void characters(char[] ch, int start, int length) throws SAXException {
17 | super.characters(ch, start, length);
18 | if (seat != null) {
19 | String valueString = new String(ch, start, length);
20 | if ("seatId".equals(tempString))
21 | seat.setSeatId(new Integer(valueString).intValue());
22 | else if ("roomObj".equals(tempString))
23 | seat.setRoomObj(new Integer(valueString).intValue());
24 | else if ("seatCode".equals(tempString))
25 | seat.setSeatCode(valueString);
26 | else if ("seatStateObj".equals(tempString))
27 | seat.setSeatStateObj(new Integer(valueString).intValue());
28 | }
29 | }
30 |
31 | @Override
32 | public void endElement(String uri, String localName, String qName) throws SAXException {
33 | super.endElement(uri, localName, qName);
34 | if("Seat".equals(localName)&&seat!=null){
35 | seatList.add(seat);
36 | seat = null;
37 | }
38 | tempString = null;
39 | }
40 |
41 | @Override
42 | public void startDocument() throws SAXException {
43 | super.startDocument();
44 | seatList = new ArrayList();
45 | }
46 |
47 | @Override
48 | public void startElement(String uri, String localName, String qName,Attributes attributes) throws SAXException {
49 | super.startElement(uri, localName, qName, attributes);
50 | if ("Seat".equals(localName)) {
51 | seat = new Seat();
52 | }
53 | tempString = localName;
54 | }
55 |
56 | public List getSeatList() {
57 | return this.seatList;
58 | }
59 | }
60 |
--------------------------------------------------------------------------------
/安卓客户端/src/com/mobileclient/handler/SeatStateListHandler.java:
--------------------------------------------------------------------------------
1 | package com.mobileclient.handler;
2 | import java.sql.Timestamp;
3 | import java.util.ArrayList;
4 | import java.util.List;
5 |
6 | import org.xml.sax.Attributes;
7 | import org.xml.sax.SAXException;
8 | import org.xml.sax.helpers.DefaultHandler;
9 |
10 | import com.mobileclient.domain.SeatState;
11 | public class SeatStateListHandler extends DefaultHandler {
12 | private List seatStateList = null;
13 | private SeatState seatState;
14 | private String tempString;
15 | @Override
16 | public void characters(char[] ch, int start, int length) throws SAXException {
17 | super.characters(ch, start, length);
18 | if (seatState != null) {
19 | String valueString = new String(ch, start, length);
20 | if ("stateId".equals(tempString))
21 | seatState.setStateId(new Integer(valueString).intValue());
22 | else if ("stateName".equals(tempString))
23 | seatState.setStateName(valueString);
24 | }
25 | }
26 |
27 | @Override
28 | public void endElement(String uri, String localName, String qName) throws SAXException {
29 | super.endElement(uri, localName, qName);
30 | if("SeatState".equals(localName)&&seatState!=null){
31 | seatStateList.add(seatState);
32 | seatState = null;
33 | }
34 | tempString = null;
35 | }
36 |
37 | @Override
38 | public void startDocument() throws SAXException {
39 | super.startDocument();
40 | seatStateList = new ArrayList();
41 | }
42 |
43 | @Override
44 | public void startElement(String uri, String localName, String qName,Attributes attributes) throws SAXException {
45 | super.startElement(uri, localName, qName, attributes);
46 | if ("SeatState".equals(localName)) {
47 | seatState = new SeatState();
48 | }
49 | tempString = localName;
50 | }
51 |
52 | public List getSeatStateList() {
53 | return this.seatStateList;
54 | }
55 | }
56 |
--------------------------------------------------------------------------------
/安卓客户端/src/com/mobileclient/handler/SelectSeatListHandler.java:
--------------------------------------------------------------------------------
1 | package com.mobileclient.handler;
2 | import java.sql.Timestamp;
3 | import java.util.ArrayList;
4 | import java.util.List;
5 |
6 | import org.xml.sax.Attributes;
7 | import org.xml.sax.SAXException;
8 | import org.xml.sax.helpers.DefaultHandler;
9 |
10 | import com.mobileclient.domain.SelectSeat;
11 | public class SelectSeatListHandler extends DefaultHandler {
12 | private List selectSeatList = null;
13 | private SelectSeat selectSeat;
14 | private String tempString;
15 | @Override
16 | public void characters(char[] ch, int start, int length) throws SAXException {
17 | super.characters(ch, start, length);
18 | if (selectSeat != null) {
19 | String valueString = new String(ch, start, length);
20 | if ("selectId".equals(tempString))
21 | selectSeat.setSelectId(new Integer(valueString).intValue());
22 | else if ("seatObj".equals(tempString))
23 | selectSeat.setSeatObj(new Integer(valueString).intValue());
24 | else if ("userObj".equals(tempString))
25 | selectSeat.setUserObj(valueString);
26 | else if ("startTime".equals(tempString))
27 | selectSeat.setStartTime(valueString);
28 | else if ("endTime".equals(tempString))
29 | selectSeat.setEndTime(valueString);
30 | else if ("seatState".equals(tempString))
31 | selectSeat.setSeatState(valueString);
32 | }
33 | }
34 |
35 | @Override
36 | public void endElement(String uri, String localName, String qName) throws SAXException {
37 | super.endElement(uri, localName, qName);
38 | if("SelectSeat".equals(localName)&&selectSeat!=null){
39 | selectSeatList.add(selectSeat);
40 | selectSeat = null;
41 | }
42 | tempString = null;
43 | }
44 |
45 | @Override
46 | public void startDocument() throws SAXException {
47 | super.startDocument();
48 | selectSeatList = new ArrayList();
49 | }
50 |
51 | @Override
52 | public void startElement(String uri, String localName, String qName,Attributes attributes) throws SAXException {
53 | super.startElement(uri, localName, qName, attributes);
54 | if ("SelectSeat".equals(localName)) {
55 | selectSeat = new SelectSeat();
56 | }
57 | tempString = localName;
58 | }
59 |
60 | public List getSelectSeatList() {
61 | return this.selectSeatList;
62 | }
63 | }
64 |
--------------------------------------------------------------------------------
/安卓客户端/src/com/mobileclient/handler/UserTypeListHandler.java:
--------------------------------------------------------------------------------
1 | package com.mobileclient.handler;
2 | import java.sql.Timestamp;
3 | import java.util.ArrayList;
4 | import java.util.List;
5 |
6 | import org.xml.sax.Attributes;
7 | import org.xml.sax.SAXException;
8 | import org.xml.sax.helpers.DefaultHandler;
9 |
10 | import com.mobileclient.domain.UserType;
11 | public class UserTypeListHandler extends DefaultHandler {
12 | private List userTypeList = null;
13 | private UserType userType;
14 | private String tempString;
15 | @Override
16 | public void characters(char[] ch, int start, int length) throws SAXException {
17 | super.characters(ch, start, length);
18 | if (userType != null) {
19 | String valueString = new String(ch, start, length);
20 | if ("userTypeId".equals(tempString))
21 | userType.setUserTypeId(new Integer(valueString).intValue());
22 | else if ("userTypeName".equals(tempString))
23 | userType.setUserTypeName(valueString);
24 | }
25 | }
26 |
27 | @Override
28 | public void endElement(String uri, String localName, String qName) throws SAXException {
29 | super.endElement(uri, localName, qName);
30 | if("UserType".equals(localName)&&userType!=null){
31 | userTypeList.add(userType);
32 | userType = null;
33 | }
34 | tempString = null;
35 | }
36 |
37 | @Override
38 | public void startDocument() throws SAXException {
39 | super.startDocument();
40 | userTypeList = new ArrayList();
41 | }
42 |
43 | @Override
44 | public void startElement(String uri, String localName, String qName,Attributes attributes) throws SAXException {
45 | super.startElement(uri, localName, qName, attributes);
46 | if ("UserType".equals(localName)) {
47 | userType = new UserType();
48 | }
49 | tempString = localName;
50 | }
51 |
52 | public List getUserTypeList() {
53 | return this.userTypeList;
54 | }
55 | }
56 |
--------------------------------------------------------------------------------
/安卓客户端/src/com/mobileclient/imgCache/ImageLoadListener.java:
--------------------------------------------------------------------------------
1 | package com.mobileclient.imgCache;
2 |
3 | import com.mobileclient.activity.R;
4 |
5 | import android.graphics.Bitmap;
6 | import android.view.View;
7 | import android.widget.ImageView;
8 | import android.widget.ListView;
9 |
10 | public class ImageLoadListener implements OnImageLoadListener {
11 |
12 | private ListView mListView;
13 | int imgResourceId;
14 |
15 | public ImageLoadListener(ListView listView, int imgResourceId) {
16 | this.mListView = listView;
17 | this.imgResourceId = imgResourceId;
18 | }
19 |
20 | @Override
21 | public void onImageLoad(Integer t, Bitmap bitmap) {
22 | View view = mListView.findViewWithTag("listViewTAG" + t);
23 | if(view != null){
24 | ImageView iv = (ImageView) view.findViewById(imgResourceId);
25 | iv.setImageBitmap(bitmap);
26 | }
27 | }
28 | @Override
29 | public void onError(Integer t) {
30 | View view = mListView.findViewWithTag("listViewTAG" + t);
31 | if(view != null){
32 | ImageView iv = (ImageView) view.findViewById(imgResourceId);
33 | iv.setImageResource(R.drawable.register);
34 | }
35 | }
36 |
37 | }
38 |
--------------------------------------------------------------------------------
/安卓客户端/src/com/mobileclient/imgCache/ListViewOnScrollListener.java:
--------------------------------------------------------------------------------
1 | package com.mobileclient.imgCache;
2 |
3 | import android.widget.AbsListView;
4 | import android.widget.ListView;
5 |
6 | public class ListViewOnScrollListener implements AbsListView.OnScrollListener {
7 |
8 | private SyncImageLoader syncImageLoader;
9 | private ListView listView;
10 | int listViewCount;
11 |
12 | public ListViewOnScrollListener(SyncImageLoader syncImageLoader,ListView listView,int listViewCount) {
13 | this.syncImageLoader = syncImageLoader;
14 | this.listView = listView;
15 | this.listViewCount = listViewCount;
16 | }
17 |
18 | public void loadImage(){
19 | int start = listView.getFirstVisiblePosition();
20 | int end =listView.getLastVisiblePosition();
21 | if(end >= listViewCount){
22 | end = listViewCount -1;
23 | }
24 | syncImageLoader.setLoadLimit(start, end);
25 | syncImageLoader.unlock();
26 | }
27 |
28 |
29 | //如果需要停止下拉滚动后才加载图片,修改下面的代码就行,我使用的是滚动时也同时加载图片
30 | @Override
31 | public void onScrollStateChanged(AbsListView view, int scrollState) {
32 | switch (scrollState) {
33 | case AbsListView.OnScrollListener.SCROLL_STATE_FLING:
34 | //syncImageLoader.lock();
35 | loadImage();
36 | break;
37 | case AbsListView.OnScrollListener.SCROLL_STATE_IDLE:
38 | loadImage();
39 | break;
40 | case AbsListView.OnScrollListener.SCROLL_STATE_TOUCH_SCROLL:
41 | //syncImageLoader.lock();
42 | loadImage();
43 | break;
44 |
45 | default:
46 | break;
47 | }
48 |
49 | }
50 |
51 | @Override
52 | public void onScroll(AbsListView view, int firstVisibleItem,
53 | int visibleItemCount, int totalItemCount) {
54 | // TODO Auto-generated method stub
55 |
56 | }
57 | }
58 |
--------------------------------------------------------------------------------
/安卓客户端/src/com/mobileclient/imgCache/OnImageLoadListener.java:
--------------------------------------------------------------------------------
1 | package com.mobileclient.imgCache;
2 |
3 | import android.graphics.Bitmap;
4 |
5 | public interface OnImageLoadListener {
6 | public void onImageLoad(Integer t, Bitmap bitmap);
7 | public void onError(Integer t);
8 | }
9 |
--------------------------------------------------------------------------------
/安卓客户端/src/com/mobileclient/imgCache/RunInOtherThread.java:
--------------------------------------------------------------------------------
1 | package com.mobileclient.imgCache;
2 |
3 |
4 | import android.os.Handler;
5 | import android.os.Looper;
6 | import android.os.Message;
7 |
8 |
9 | public class RunInOtherThread {
10 | private static final String LOG_TAG = "RunInOtherThread";
11 |
12 | private LooperThread localThread = new LooperThread();
13 |
14 | private boolean isRunning = true;
15 |
16 | public Handler getHandler(){
17 | return localThread.getHandler();
18 | }
19 |
20 | private class LooperThread extends Thread {
21 | private Handler mHandler;
22 |
23 | public void run() {
24 | Looper.prepare();
25 | mHandler = new Handler() {
26 | public void handleMessage(Message msg) {
27 | onReceiveMessage(msg.what);
28 | }
29 | };
30 | Looper.loop();
31 | }
32 |
33 | Handler getHandler(){
34 | return mHandler;
35 | }
36 |
37 | }
38 |
39 | public void start(){
40 | localThread.start();
41 | }
42 |
43 | public void quit(){
44 | localThread.getHandler().getLooper().quit();
45 | }
46 |
47 | public void sendMessage(int what){
48 | getHandler().sendEmptyMessage(what);
49 | }
50 |
51 | public Thread getThread(){
52 | return localThread;
53 | }
54 |
55 | public void onReceiveMessage(int what){};
56 |
57 | }
--------------------------------------------------------------------------------
/安卓客户端/src/com/mobileclient/util/ImageService.java:
--------------------------------------------------------------------------------
1 | package com.mobileclient.util;
2 |
3 | import java.io.InputStream;
4 | import java.net.HttpURLConnection;
5 | import java.net.URL;
6 |
7 |
8 |
9 | import android.graphics.BitmapFactory;
10 |
11 | public class ImageService {
12 |
13 | public static byte[] getImage(String path) throws Exception {
14 |
15 | URL url = new URL(path);
16 |
17 | HttpURLConnection conn = (HttpURLConnection) url.openConnection();
18 |
19 | // 设置超时时间
20 |
21 | conn.setConnectTimeout(5000);
22 |
23 | conn.setRequestMethod("GET");
24 |
25 | if (conn.getResponseCode() == 200) {
26 |
27 | InputStream inStream = conn.getInputStream();
28 |
29 | byte[] data = StreamTool.read(inStream);
30 |
31 | return data;
32 |
33 | }
34 |
35 | return null;
36 |
37 | }
38 |
39 | public static int computeSampleSize(BitmapFactory.Options options,
40 | int minSideLength, int maxNumOfPixels) {
41 | int initialSize = computeInitialSampleSize(options, minSideLength,maxNumOfPixels);
42 |
43 | int roundedSize;
44 | if (initialSize <= 8 ) {
45 | roundedSize = 1;
46 | while (roundedSize < initialSize) {
47 | roundedSize <<= 1;
48 | }
49 | } else {
50 | roundedSize = (initialSize + 7) / 8 * 8;
51 | }
52 |
53 | return roundedSize;
54 | }
55 |
56 | private static int computeInitialSampleSize(BitmapFactory.Options options,int minSideLength, int maxNumOfPixels) {
57 | double w = options.outWidth;
58 | double h = options.outHeight;
59 |
60 | int lowerBound = (maxNumOfPixels == -1) ? 1 :
61 | (int) Math.ceil(Math.sqrt(w * h / maxNumOfPixels));
62 | int upperBound = (minSideLength == -1) ? 128 :
63 | (int) Math.min(Math.floor(w / minSideLength),
64 | Math.floor(h / minSideLength));
65 |
66 | if (upperBound < lowerBound) {
67 | // return the larger one when there is no overlapping zone.
68 | return lowerBound;
69 | }
70 |
71 | if ((maxNumOfPixels == -1) &&
72 | (minSideLength == -1)) {
73 | return 1;
74 | } else if (minSideLength == -1) {
75 | return lowerBound;
76 | } else {
77 | return upperBound;
78 | }
79 | }
80 | }
81 |
--------------------------------------------------------------------------------
/安卓客户端/src/com/mobileclient/util/StreamTool.java:
--------------------------------------------------------------------------------
1 | package com.mobileclient.util;
2 |
3 | import java.io.ByteArrayOutputStream;
4 | import java.io.InputStream;
5 |
6 | public class StreamTool {
7 |
8 | /**
9 | *
10 | * 读取输入流数据
11 | */
12 |
13 | public static byte[] read(InputStream inStream) throws Exception {
14 |
15 | ByteArrayOutputStream outStream = new ByteArrayOutputStream();
16 |
17 | byte[] buffer = new byte[1024];
18 |
19 | int len = 0;
20 |
21 | while ((len = inStream.read(buffer)) != -1) {
22 |
23 | outStream.write(buffer, 0, len);
24 |
25 | }
26 |
27 | inStream.close();
28 |
29 | return outStream.toByteArray();
30 |
31 | }
32 |
33 | }
34 |
--------------------------------------------------------------------------------
/安卓服务器/.mymetadata:
--------------------------------------------------------------------------------
1 |
2 |
9 |
10 |
11 |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/安卓服务器/.project:
--------------------------------------------------------------------------------
1 |
2 |
3 | JavaWebProject
4 |
5 |
6 |
7 |
8 |
9 | org.eclipse.wst.jsdt.core.javascriptValidator
10 |
11 |
12 |
13 |
14 | com.genuitec.eclipse.j2eedt.core.WebClasspathBuilder
15 |
16 |
17 |
18 |
19 | org.eclipse.jdt.core.javabuilder
20 |
21 |
22 |
23 |
24 | com.genuitec.eclipse.j2eedt.core.J2EEProjectValidator
25 |
26 |
27 |
28 |
29 | com.genuitec.eclipse.j2eedt.core.DeploymentDescriptorValidator
30 |
31 |
32 |
33 |
34 | org.eclipse.wst.validation.validationbuilder
35 |
36 |
37 |
38 |
39 |
40 | com.genuitec.eclipse.j2eedt.core.webnature
41 | org.eclipse.jdt.core.javanature
42 | org.eclipse.wst.jsdt.core.jsNature
43 |
44 |
45 |
--------------------------------------------------------------------------------
/安卓服务器/.settings/.jsdtscope:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/安卓服务器/.settings/org.eclipse.jdt.core.prefs:
--------------------------------------------------------------------------------
1 | #Sun Jan 20 22:05:49 CST 2013
2 | eclipse.preferences.version=1
3 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5
4 | org.eclipse.jdt.core.compiler.compliance=1.5
5 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
6 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
7 | org.eclipse.jdt.core.compiler.source=1.5
8 |
--------------------------------------------------------------------------------
/安卓服务器/.settings/org.eclipse.wst.jsdt.ui.superType.container:
--------------------------------------------------------------------------------
1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary
--------------------------------------------------------------------------------
/安卓服务器/.settings/org.eclipse.wst.jsdt.ui.superType.name:
--------------------------------------------------------------------------------
1 | Window
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/ClassInfo_add.jsp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/ClassInfo_add.jsp
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/ClassInfo_frontquery_result.jsp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/ClassInfo_frontquery_result.jsp
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/ClassInfo_frontshow.jsp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/ClassInfo_frontshow.jsp
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/ClassInfo_modify.jsp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/ClassInfo_modify.jsp
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/ClassInfo_query_result.jsp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/ClassInfo_query_result.jsp
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/Jc_add.jsp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/Jc_add.jsp
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/Jc_frontquery_result.jsp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/Jc_frontquery_result.jsp
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/Jc_frontshow.jsp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/Jc_frontshow.jsp
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/Jc_modify.jsp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/Jc_modify.jsp
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/Jc_query_result.jsp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/Jc_query_result.jsp
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/Jubao_add.jsp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/Jubao_add.jsp
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/Jubao_frontquery_result.jsp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/Jubao_frontquery_result.jsp
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/Jubao_frontshow.jsp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/Jubao_frontshow.jsp
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/Jubao_modify.jsp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/Jubao_modify.jsp
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/Jubao_query_result.jsp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/Jubao_query_result.jsp
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/META-INF/MANIFEST.MF:
--------------------------------------------------------------------------------
1 | Manifest-Version: 1.0
2 | Class-Path:
3 |
4 |
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/Room_add.jsp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/Room_add.jsp
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/Room_frontquery_result.jsp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/Room_frontquery_result.jsp
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/Room_frontshow.jsp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/Room_frontshow.jsp
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/Room_modify.jsp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/Room_modify.jsp
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/Room_query_result.jsp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/Room_query_result.jsp
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/SeatOrder_add.jsp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/SeatOrder_add.jsp
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/SeatOrder_frontquery_result.jsp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/SeatOrder_frontquery_result.jsp
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/SeatOrder_frontshow.jsp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/SeatOrder_frontshow.jsp
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/SeatOrder_modify.jsp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/SeatOrder_modify.jsp
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/SeatOrder_query_result.jsp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/SeatOrder_query_result.jsp
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/SeatState_add.jsp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/SeatState_add.jsp
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/SeatState_frontquery_result.jsp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/SeatState_frontquery_result.jsp
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/SeatState_frontshow.jsp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/SeatState_frontshow.jsp
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/SeatState_modify.jsp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/SeatState_modify.jsp
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/SeatState_query_result.jsp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/SeatState_query_result.jsp
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/Seat_add.jsp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/Seat_add.jsp
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/Seat_frontquery_result.jsp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/Seat_frontquery_result.jsp
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/Seat_frontshow.jsp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/Seat_frontshow.jsp
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/Seat_modify.jsp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/Seat_modify.jsp
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/Seat_query_result.jsp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/Seat_query_result.jsp
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/SelectSeat_add.jsp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/SelectSeat_add.jsp
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/SelectSeat_frontquery_result.jsp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/SelectSeat_frontquery_result.jsp
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/SelectSeat_frontshow.jsp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/SelectSeat_frontshow.jsp
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/SelectSeat_modify.jsp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/SelectSeat_modify.jsp
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/SelectSeat_query_result.jsp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/SelectSeat_query_result.jsp
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/UserInfo_add.jsp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/UserInfo_add.jsp
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/UserInfo_frontquery_result.jsp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/UserInfo_frontquery_result.jsp
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/UserInfo_frontshow.jsp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/UserInfo_frontshow.jsp
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/UserInfo_modify.jsp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/UserInfo_modify.jsp
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/UserInfo_query_result.jsp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/UserInfo_query_result.jsp
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/UserType_add.jsp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/UserType_add.jsp
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/UserType_frontquery_result.jsp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/UserType_frontquery_result.jsp
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/UserType_frontshow.jsp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/UserType_frontshow.jsp
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/UserType_modify.jsp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/UserType_modify.jsp
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/UserType_query_result.jsp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/UserType_query_result.jsp
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/WEB-INF/lib/antlr-2.7.6.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/WEB-INF/lib/antlr-2.7.6.jar
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/WEB-INF/lib/aspectjrt.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/WEB-INF/lib/aspectjrt.jar
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/WEB-INF/lib/aspectjweaver.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/WEB-INF/lib/aspectjweaver.jar
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/WEB-INF/lib/c3p0-0.9.1.2.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/WEB-INF/lib/c3p0-0.9.1.2.jar
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/WEB-INF/lib/cglib-nodep-2.1_3.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/WEB-INF/lib/cglib-nodep-2.1_3.jar
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/WEB-INF/lib/common-annotations.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/WEB-INF/lib/common-annotations.jar
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/WEB-INF/lib/commons-collections-3.1.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/WEB-INF/lib/commons-collections-3.1.jar
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/WEB-INF/lib/commons-fileupload-1.2.1.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/WEB-INF/lib/commons-fileupload-1.2.1.jar
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/WEB-INF/lib/commons-io-1.3.2.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/WEB-INF/lib/commons-io-1.3.2.jar
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/WEB-INF/lib/commons-logging-1.0.4.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/WEB-INF/lib/commons-logging-1.0.4.jar
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/WEB-INF/lib/commons-logging.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/WEB-INF/lib/commons-logging.jar
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/WEB-INF/lib/dom4j-1.6.1.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/WEB-INF/lib/dom4j-1.6.1.jar
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/WEB-INF/lib/ehcache-1.2.3.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/WEB-INF/lib/ehcache-1.2.3.jar
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/WEB-INF/lib/ejb3-persistence.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/WEB-INF/lib/ejb3-persistence.jar
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/WEB-INF/lib/freemarker-2.3.15.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/WEB-INF/lib/freemarker-2.3.15.jar
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/WEB-INF/lib/hibernate-annotations.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/WEB-INF/lib/hibernate-annotations.jar
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/WEB-INF/lib/hibernate-cglib-repack-2.1_3.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/WEB-INF/lib/hibernate-cglib-repack-2.1_3.jar
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/WEB-INF/lib/hibernate-commons-annotations.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/WEB-INF/lib/hibernate-commons-annotations.jar
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/WEB-INF/lib/hibernate-entitymanager.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/WEB-INF/lib/hibernate-entitymanager.jar
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/WEB-INF/lib/hibernate3.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/WEB-INF/lib/hibernate3.jar
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/WEB-INF/lib/javassist-3.4.GA.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/WEB-INF/lib/javassist-3.4.GA.jar
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/WEB-INF/lib/jstl.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/WEB-INF/lib/jstl.jar
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/WEB-INF/lib/jta-1.1.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/WEB-INF/lib/jta-1.1.jar
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/WEB-INF/lib/log4j-1.2.15.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/WEB-INF/lib/log4j-1.2.15.jar
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/WEB-INF/lib/mysql-connector-java-3.1.13-bin.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/WEB-INF/lib/mysql-connector-java-3.1.13-bin.jar
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/WEB-INF/lib/ognl-2.7.3.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/WEB-INF/lib/ognl-2.7.3.jar
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/WEB-INF/lib/org.json.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/WEB-INF/lib/org.json.jar
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/WEB-INF/lib/poi-3.0.2-FINAL-20080204.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/WEB-INF/lib/poi-3.0.2-FINAL-20080204.jar
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/WEB-INF/lib/slf4j-api-1.5.2.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/WEB-INF/lib/slf4j-api-1.5.2.jar
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/WEB-INF/lib/slf4j-log4j12.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/WEB-INF/lib/slf4j-log4j12.jar
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/WEB-INF/lib/spring.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/WEB-INF/lib/spring.jar
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/WEB-INF/lib/standard.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/WEB-INF/lib/standard.jar
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/WEB-INF/lib/struts2-core-2.1.8.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/WEB-INF/lib/struts2-core-2.1.8.jar
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/WEB-INF/lib/struts2-spring-plugin-2.1.8.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/WEB-INF/lib/struts2-spring-plugin-2.1.8.jar
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/WEB-INF/lib/tomcat-coyote.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/WEB-INF/lib/tomcat-coyote.jar
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/WEB-INF/lib/xwork-core-2.1.6.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/WEB-INF/lib/xwork-core-2.1.6.jar
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/calendar.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/calendar.js
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/center.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/center.html
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/css/desk.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/css/desk.css
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/css/index.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/css/index.css
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/css/style.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/css/style.css
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/desk.jsp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/desk.jsp
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/down.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/down.html
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/error.jsp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/error.jsp
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/images/11.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/images/11.gif
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/images/22.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/images/22.gif
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/images/33.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/images/33.gif
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/images/Thumbs.db:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/images/Thumbs.db
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/images/adminBg.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/images/adminBg.jpg
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/images/back.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/images/back.gif
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/images/bg.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/images/bg.gif
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/images/bg.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/images/bg.jpg
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/images/del.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/images/del.gif
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/images/dl.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/images/dl.gif
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/images/edt.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/images/edt.gif
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/images/error.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/images/error.jpg
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/images/error_b.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/images/error_b.gif
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/images/first.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/images/first.gif
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/images/go.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/images/go.gif
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/images/last.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/images/last.gif
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/images/left.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/images/left.gif
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/images/login_03 - 副本.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/images/login_03 - 副本.gif
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/images/login_03.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/images/login_03.gif
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/images/login_05.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/images/login_05.gif
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/images/login_06.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/images/login_06.gif
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/images/login_07.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/images/login_07.gif
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/images/login_08.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/images/login_08.gif
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/images/logo.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/images/logo.gif
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/images/main_03.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/images/main_03.gif
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/images/main_04.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/images/main_04.gif
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/images/main_05.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/images/main_05.gif
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/images/main_07.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/images/main_07.gif
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/images/main_09.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/images/main_09.jpg
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/images/main_11.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/images/main_11.gif
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/images/main_12.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/images/main_12.gif
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/images/main_14.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/images/main_14.gif
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/images/main_16.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/images/main_16.gif
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/images/main_18.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/images/main_18.gif
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/images/main_20.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/images/main_20.gif
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/images/main_21.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/images/main_21.gif
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/images/main_22.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/images/main_22.gif
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/images/main_29.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/images/main_29.gif
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/images/main_30.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/images/main_30.gif
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/images/main_31.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/images/main_31.gif
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/images/main_32.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/images/main_32.gif
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/images/main_34.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/images/main_34.gif
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/images/main_36.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/images/main_36.gif
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/images/main_37.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/images/main_37.gif
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/images/main_39.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/images/main_39.gif
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/images/main_40.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/images/main_40.gif
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/images/main_41.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/images/main_41.gif
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/images/main_45.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/images/main_45.gif
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/images/main_47.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/images/main_47.gif
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/images/main_48.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/images/main_48.gif
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/images/main_51.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/images/main_51.gif
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/images/main_52.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/images/main_52.gif
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/images/main_55.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/images/main_55.gif
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/images/main_55_1.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/images/main_55_1.gif
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/images/main_58.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/images/main_58.gif
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/images/main_59.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/images/main_59.gif
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/images/main_61.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/images/main_61.gif
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/images/main_62.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/images/main_62.gif
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/images/next.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/images/next.gif
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/images/tab_03.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/images/tab_03.gif
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/images/tab_05.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/images/tab_05.gif
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/images/tab_07.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/images/tab_07.gif
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/images/tab_12.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/images/tab_12.gif
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/images/tab_15.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/images/tab_15.gif
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/images/tab_17.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/images/tab_17.gif
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/images/tab_18.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/images/tab_18.gif
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/images/tab_19.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/images/tab_19.gif
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/images/tab_20.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/images/tab_20.gif
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/images/tb.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/images/tb.gif
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/index.jsp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/index.jsp
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/left.jsp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/left.jsp
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/login.jsp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/login.jsp
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/logout.jsp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/logout.jsp
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/main.jsp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/main.jsp
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/message.jsp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/message.jsp
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/middel.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/middel.html
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/password_modify.jsp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/password_modify.jsp
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/right.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/right.html
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/tab/images/11.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/tab/images/11.gif
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/tab/images/22.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/tab/images/22.gif
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/tab/images/33.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/tab/images/33.gif
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/tab/images/Thumbs.db:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/tab/images/Thumbs.db
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/tab/images/back.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/tab/images/back.gif
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/tab/images/bg.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/tab/images/bg.gif
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/tab/images/del.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/tab/images/del.gif
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/tab/images/edt.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/tab/images/edt.gif
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/tab/images/first.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/tab/images/first.gif
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/tab/images/go.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/tab/images/go.gif
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/tab/images/last.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/tab/images/last.gif
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/tab/images/next.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/tab/images/next.gif
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/tab/images/tab_03.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/tab/images/tab_03.gif
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/tab/images/tab_05.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/tab/images/tab_05.gif
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/tab/images/tab_07.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/tab/images/tab_07.gif
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/tab/images/tab_12.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/tab/images/tab_12.gif
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/tab/images/tab_15.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/tab/images/tab_15.gif
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/tab/images/tab_17.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/tab/images/tab_17.gif
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/tab/images/tab_18.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/tab/images/tab_18.gif
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/tab/images/tab_19.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/tab/images/tab_19.gif
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/tab/images/tab_20.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/tab/images/tab_20.gif
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/tab/images/tb.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/tab/images/tb.gif
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/tab/tab.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/tab/tab.html
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/top.jsp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/top.jsp
--------------------------------------------------------------------------------
/安卓服务器/WebRoot/upload/noimage.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/WebRoot/upload/noimage.jpg
--------------------------------------------------------------------------------
/安卓服务器/src/DBConfig.properties:
--------------------------------------------------------------------------------
1 | driver=com.mysql.jdbc.Driver
2 | url=jdbc:mysql://localhost:3306/android_db?useUnicode=true&characterEncoding=utf-8
3 | username=root
4 | password=123456
--------------------------------------------------------------------------------
/安卓服务器/src/com/chengxusheji/action/BaseAction.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/src/com/chengxusheji/action/BaseAction.java
--------------------------------------------------------------------------------
/安卓服务器/src/com/chengxusheji/action/ChangePasswordAction.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/src/com/chengxusheji/action/ChangePasswordAction.java
--------------------------------------------------------------------------------
/安卓服务器/src/com/chengxusheji/action/ClassInfoAction.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/src/com/chengxusheji/action/ClassInfoAction.java
--------------------------------------------------------------------------------
/安卓服务器/src/com/chengxusheji/action/JcAction.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/src/com/chengxusheji/action/JcAction.java
--------------------------------------------------------------------------------
/安卓服务器/src/com/chengxusheji/action/JubaoAction.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/src/com/chengxusheji/action/JubaoAction.java
--------------------------------------------------------------------------------
/安卓服务器/src/com/chengxusheji/action/LoginAction-login_CheckLogin-validation.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | admin
8 | true
9 | 管理员信息中
10 |
11 |
12 |
--------------------------------------------------------------------------------
/安卓服务器/src/com/chengxusheji/action/LoginAction.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/src/com/chengxusheji/action/LoginAction.java
--------------------------------------------------------------------------------
/安卓服务器/src/com/chengxusheji/action/RoomAction.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/src/com/chengxusheji/action/RoomAction.java
--------------------------------------------------------------------------------
/安卓服务器/src/com/chengxusheji/action/SeatAction.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/src/com/chengxusheji/action/SeatAction.java
--------------------------------------------------------------------------------
/安卓服务器/src/com/chengxusheji/action/SeatOrderAction.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/src/com/chengxusheji/action/SeatOrderAction.java
--------------------------------------------------------------------------------
/安卓服务器/src/com/chengxusheji/action/SeatStateAction.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/src/com/chengxusheji/action/SeatStateAction.java
--------------------------------------------------------------------------------
/安卓服务器/src/com/chengxusheji/action/SelectSeatAction.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/src/com/chengxusheji/action/SelectSeatAction.java
--------------------------------------------------------------------------------
/安卓服务器/src/com/chengxusheji/action/UserAction.java:
--------------------------------------------------------------------------------
1 | package com.chengxusheji.action;
2 |
3 | import org.springframework.context.annotation.Scope;
4 | import org.springframework.stereotype.Controller;
5 |
6 | @Controller @Scope("prototype")
7 | public class UserAction {
8 | public String UserQuery(){
9 | return "user_query_view";
10 | }
11 | }
12 |
--------------------------------------------------------------------------------
/安卓服务器/src/com/chengxusheji/action/UserInfoAction.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/src/com/chengxusheji/action/UserInfoAction.java
--------------------------------------------------------------------------------
/安卓服务器/src/com/chengxusheji/action/UserTypeAction.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/src/com/chengxusheji/action/UserTypeAction.java
--------------------------------------------------------------------------------
/安卓服务器/src/com/chengxusheji/dao/AdminDAO.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/src/com/chengxusheji/dao/AdminDAO.java
--------------------------------------------------------------------------------
/安卓服务器/src/com/chengxusheji/dao/ClassInfoDAO.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/src/com/chengxusheji/dao/ClassInfoDAO.java
--------------------------------------------------------------------------------
/安卓服务器/src/com/chengxusheji/dao/JcDAO.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/src/com/chengxusheji/dao/JcDAO.java
--------------------------------------------------------------------------------
/安卓服务器/src/com/chengxusheji/dao/JubaoDAO.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/src/com/chengxusheji/dao/JubaoDAO.java
--------------------------------------------------------------------------------
/安卓服务器/src/com/chengxusheji/dao/RoomDAO.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/src/com/chengxusheji/dao/RoomDAO.java
--------------------------------------------------------------------------------
/安卓服务器/src/com/chengxusheji/dao/SeatDAO.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/src/com/chengxusheji/dao/SeatDAO.java
--------------------------------------------------------------------------------
/安卓服务器/src/com/chengxusheji/dao/SeatOrderDAO.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/src/com/chengxusheji/dao/SeatOrderDAO.java
--------------------------------------------------------------------------------
/安卓服务器/src/com/chengxusheji/dao/SeatStateDAO.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/src/com/chengxusheji/dao/SeatStateDAO.java
--------------------------------------------------------------------------------
/安卓服务器/src/com/chengxusheji/dao/SelectSeatDAO.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/src/com/chengxusheji/dao/SelectSeatDAO.java
--------------------------------------------------------------------------------
/安卓服务器/src/com/chengxusheji/dao/UserInfoDAO.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/src/com/chengxusheji/dao/UserInfoDAO.java
--------------------------------------------------------------------------------
/安卓服务器/src/com/chengxusheji/dao/UserTypeDAO.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/src/com/chengxusheji/dao/UserTypeDAO.java
--------------------------------------------------------------------------------
/安卓服务器/src/com/chengxusheji/domain/Admin-admin-validation.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 | 用户名不能为空
9 |
10 |
11 |
12 | 1
13 | 20
14 | 用户名长度需要在${minLength} 和 ${maxLength}之间
15 |
16 |
17 |
18 |
19 |
20 |
21 | 密码不能为空
22 |
23 |
24 |
25 | 1
26 | 20
27 | 密码长度需要再 ${minLength} 和 ${maxLength}之间
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
--------------------------------------------------------------------------------
/安卓服务器/src/com/chengxusheji/domain/Admin.hbm.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/安卓服务器/src/com/chengxusheji/domain/Admin.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/src/com/chengxusheji/domain/Admin.java
--------------------------------------------------------------------------------
/安卓服务器/src/com/chengxusheji/domain/ClassInfo.hbm.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
21 |
22 |
23 |
29 |
30 |
31 |
37 |
38 |
39 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
--------------------------------------------------------------------------------
/安卓服务器/src/com/chengxusheji/domain/ClassInfo.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/src/com/chengxusheji/domain/ClassInfo.java
--------------------------------------------------------------------------------
/安卓服务器/src/com/chengxusheji/domain/Jc.hbm.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
21 |
22 |
23 |
29 |
30 |
31 |
37 |
38 |
39 |
46 |
47 |
48 |
53 |
54 |
55 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
--------------------------------------------------------------------------------
/安卓服务器/src/com/chengxusheji/domain/Jc.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/src/com/chengxusheji/domain/Jc.java
--------------------------------------------------------------------------------
/安卓服务器/src/com/chengxusheji/domain/Jubao.hbm.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
21 |
22 |
23 |
29 |
30 |
31 |
38 |
39 |
40 |
46 |
47 |
48 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
--------------------------------------------------------------------------------
/安卓服务器/src/com/chengxusheji/domain/Jubao.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/src/com/chengxusheji/domain/Jubao.java
--------------------------------------------------------------------------------
/安卓服务器/src/com/chengxusheji/domain/Room.hbm.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
21 |
22 |
23 |
29 |
30 |
31 |
37 |
38 |
39 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
--------------------------------------------------------------------------------
/安卓服务器/src/com/chengxusheji/domain/Room.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/src/com/chengxusheji/domain/Room.java
--------------------------------------------------------------------------------
/安卓服务器/src/com/chengxusheji/domain/Seat.hbm.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
22 |
23 |
24 |
30 |
31 |
32 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
--------------------------------------------------------------------------------
/安卓服务器/src/com/chengxusheji/domain/Seat.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/src/com/chengxusheji/domain/Seat.java
--------------------------------------------------------------------------------
/安卓服务器/src/com/chengxusheji/domain/SeatOrder.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/src/com/chengxusheji/domain/SeatOrder.java
--------------------------------------------------------------------------------
/安卓服务器/src/com/chengxusheji/domain/SeatState.hbm.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
--------------------------------------------------------------------------------
/安卓服务器/src/com/chengxusheji/domain/SeatState.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/src/com/chengxusheji/domain/SeatState.java
--------------------------------------------------------------------------------
/安卓服务器/src/com/chengxusheji/domain/SelectSeat.hbm.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
22 |
23 |
24 |
31 |
32 |
33 |
39 |
40 |
41 |
47 |
48 |
49 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
--------------------------------------------------------------------------------
/安卓服务器/src/com/chengxusheji/domain/SelectSeat.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/src/com/chengxusheji/domain/SelectSeat.java
--------------------------------------------------------------------------------
/安卓服务器/src/com/chengxusheji/domain/UserInfo.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/src/com/chengxusheji/domain/UserInfo.java
--------------------------------------------------------------------------------
/安卓服务器/src/com/chengxusheji/domain/UserType.hbm.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
--------------------------------------------------------------------------------
/安卓服务器/src/com/chengxusheji/domain/UserType.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/src/com/chengxusheji/domain/UserType.java
--------------------------------------------------------------------------------
/安卓服务器/src/com/chengxusheji/test/TestUtil.java:
--------------------------------------------------------------------------------
1 | package com.chengxusheji.test;
2 |
3 | import java.util.Calendar;
4 | import java.util.Date;
5 |
6 | public class TestUtil {
7 | public static String getDateString() {
8 | Calendar c = Calendar.getInstance();
9 | int year = c.get(Calendar.YEAR);
10 | int month = c.get(Calendar.MONTH) + 1;
11 | int date = c.get(Calendar.DATE);
12 | int hour = c.get(Calendar.HOUR_OF_DAY);
13 | int minute = c.get(Calendar.MINUTE);
14 | int second = c.get(Calendar.SECOND);
15 |
16 | return year + "-" + month + "-" + date + " " +hour + ":" +minute + ":" + second;
17 |
18 |
19 | }
20 | }
21 |
--------------------------------------------------------------------------------
/安卓服务器/src/com/chengxusheji/utils/CardIdFieldValidator.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/src/com/chengxusheji/utils/CardIdFieldValidator.java
--------------------------------------------------------------------------------
/安卓服务器/src/com/chengxusheji/utils/ExportExcelUtil.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/src/com/chengxusheji/utils/ExportExcelUtil.java
--------------------------------------------------------------------------------
/安卓服务器/src/com/chengxusheji/utils/FileTypeException.java:
--------------------------------------------------------------------------------
1 | package com.chengxusheji.utils;
2 | public class FileTypeException extends Exception {
3 |
4 | public FileTypeException(String msg){
5 | super(msg);
6 | }
7 |
8 | @Override
9 | public String getMessage() {
10 | // TODO Auto-generated method stub
11 | return super.getMessage();
12 | }
13 |
14 | @Override
15 | public String toString() {
16 | // TODO Auto-generated method stub
17 | return super.toString();
18 | }
19 |
20 |
21 |
22 | }
23 |
--------------------------------------------------------------------------------
/安卓服务器/src/com/mobileserver/dao/ClassInfoDAO.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/src/com/mobileserver/dao/ClassInfoDAO.java
--------------------------------------------------------------------------------
/安卓服务器/src/com/mobileserver/dao/JcDAO.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/src/com/mobileserver/dao/JcDAO.java
--------------------------------------------------------------------------------
/安卓服务器/src/com/mobileserver/dao/JubaoDAO.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/src/com/mobileserver/dao/JubaoDAO.java
--------------------------------------------------------------------------------
/安卓服务器/src/com/mobileserver/dao/RoomDAO.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/src/com/mobileserver/dao/RoomDAO.java
--------------------------------------------------------------------------------
/安卓服务器/src/com/mobileserver/dao/SeatDAO.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/src/com/mobileserver/dao/SeatDAO.java
--------------------------------------------------------------------------------
/安卓服务器/src/com/mobileserver/dao/SeatOrderDAO.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/src/com/mobileserver/dao/SeatOrderDAO.java
--------------------------------------------------------------------------------
/安卓服务器/src/com/mobileserver/dao/SeatStateDAO.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/src/com/mobileserver/dao/SeatStateDAO.java
--------------------------------------------------------------------------------
/安卓服务器/src/com/mobileserver/dao/SelectSeatDAO.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/src/com/mobileserver/dao/SelectSeatDAO.java
--------------------------------------------------------------------------------
/安卓服务器/src/com/mobileserver/dao/UserInfoDAO.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/src/com/mobileserver/dao/UserInfoDAO.java
--------------------------------------------------------------------------------
/安卓服务器/src/com/mobileserver/dao/UserTypeDAO.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/src/com/mobileserver/dao/UserTypeDAO.java
--------------------------------------------------------------------------------
/安卓服务器/src/com/mobileserver/domain/ClassInfo.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/src/com/mobileserver/domain/ClassInfo.java
--------------------------------------------------------------------------------
/安卓服务器/src/com/mobileserver/domain/Jc.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/src/com/mobileserver/domain/Jc.java
--------------------------------------------------------------------------------
/安卓服务器/src/com/mobileserver/domain/Jubao.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/src/com/mobileserver/domain/Jubao.java
--------------------------------------------------------------------------------
/安卓服务器/src/com/mobileserver/domain/Room.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/src/com/mobileserver/domain/Room.java
--------------------------------------------------------------------------------
/安卓服务器/src/com/mobileserver/domain/Seat.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/src/com/mobileserver/domain/Seat.java
--------------------------------------------------------------------------------
/安卓服务器/src/com/mobileserver/domain/SeatOrder.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/src/com/mobileserver/domain/SeatOrder.java
--------------------------------------------------------------------------------
/安卓服务器/src/com/mobileserver/domain/SeatState.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/src/com/mobileserver/domain/SeatState.java
--------------------------------------------------------------------------------
/安卓服务器/src/com/mobileserver/domain/SelectSeat.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/src/com/mobileserver/domain/SelectSeat.java
--------------------------------------------------------------------------------
/安卓服务器/src/com/mobileserver/domain/UserInfo.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/src/com/mobileserver/domain/UserInfo.java
--------------------------------------------------------------------------------
/安卓服务器/src/com/mobileserver/domain/UserType.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/src/com/mobileserver/domain/UserType.java
--------------------------------------------------------------------------------
/安卓服务器/src/com/mobileserver/servlet/ClassInfoServlet.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/src/com/mobileserver/servlet/ClassInfoServlet.java
--------------------------------------------------------------------------------
/安卓服务器/src/com/mobileserver/servlet/JcServlet.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/src/com/mobileserver/servlet/JcServlet.java
--------------------------------------------------------------------------------
/安卓服务器/src/com/mobileserver/servlet/JubaoServlet.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/src/com/mobileserver/servlet/JubaoServlet.java
--------------------------------------------------------------------------------
/安卓服务器/src/com/mobileserver/servlet/LoginServlet.java:
--------------------------------------------------------------------------------
1 | package com.mobileserver.servlet;
2 |
3 | import java.io.IOException;
4 | import java.io.PrintWriter;
5 | import java.net.URLDecoder;
6 | import java.sql.Connection;
7 | import java.sql.PreparedStatement;
8 | import java.sql.ResultSet;
9 | import java.sql.SQLException;
10 |
11 | import javax.servlet.ServletException;
12 | import javax.servlet.http.HttpServlet;
13 | import javax.servlet.http.HttpServletRequest;
14 | import javax.servlet.http.HttpServletResponse;
15 |
16 | import com.mobileserver.util.DBUtil;
17 |
18 | /**
19 | * Servlet implementation class LoginServlet
20 | */
21 | public class LoginServlet extends HttpServlet {
22 | private static final long serialVersionUID = 1L;
23 |
24 | /**
25 | * @see HttpServlet#HttpServlet()
26 | */
27 | public LoginServlet() {
28 | super();
29 | // TODO Auto-generated constructor stub
30 | }
31 |
32 | protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
33 | // TODO Auto-generated method stub
34 | this.doPost(request, response);
35 | }
36 |
37 | /**
38 | * @see HttpServlet#doPost(HttpServletRequest request, HttpServletResponse response)
39 | */
40 | protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
41 | // TODO Auto-generated method stub
42 | String userName = URLDecoder.decode(request.getParameter("userName"),"UTF-8");
43 | String password = URLDecoder.decode(request.getParameter("password"),"UTF-8");
44 | String sql = "select * from admin where username= '"+userName +"' and password='"+password+"'";
45 | DBUtil util = new DBUtil();
46 | Connection conn = util.openConnection();
47 | String result = "0";
48 | try {
49 | PreparedStatement pstmt = conn.prepareStatement(sql);
50 | ResultSet rs = pstmt.executeQuery();
51 | if(rs.next()) {
52 | result= userName;
53 | }
54 |
55 | }catch (SQLException e) {
56 | e.printStackTrace();
57 | } finally {
58 | util.closeConn(conn);
59 | }
60 | PrintWriter out = response.getWriter();
61 | out.print(result);
62 | }
63 |
64 | }
65 |
--------------------------------------------------------------------------------
/安卓服务器/src/com/mobileserver/servlet/RoomServlet.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/src/com/mobileserver/servlet/RoomServlet.java
--------------------------------------------------------------------------------
/安卓服务器/src/com/mobileserver/servlet/SeatOrderServlet.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/src/com/mobileserver/servlet/SeatOrderServlet.java
--------------------------------------------------------------------------------
/安卓服务器/src/com/mobileserver/servlet/SeatServlet.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/src/com/mobileserver/servlet/SeatServlet.java
--------------------------------------------------------------------------------
/安卓服务器/src/com/mobileserver/servlet/SeatStateServlet.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/src/com/mobileserver/servlet/SeatStateServlet.java
--------------------------------------------------------------------------------
/安卓服务器/src/com/mobileserver/servlet/SelectSeatServlet.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/src/com/mobileserver/servlet/SelectSeatServlet.java
--------------------------------------------------------------------------------
/安卓服务器/src/com/mobileserver/servlet/UpPhotoServlet.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/src/com/mobileserver/servlet/UpPhotoServlet.java
--------------------------------------------------------------------------------
/安卓服务器/src/com/mobileserver/servlet/UserInfoServlet.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/src/com/mobileserver/servlet/UserInfoServlet.java
--------------------------------------------------------------------------------
/安卓服务器/src/com/mobileserver/servlet/UserTypeServlet.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/src/com/mobileserver/servlet/UserTypeServlet.java
--------------------------------------------------------------------------------
/安卓服务器/src/com/mobileserver/util/ConnectionPool.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/src/com/mobileserver/util/ConnectionPool.java
--------------------------------------------------------------------------------
/安卓服务器/src/com/mobileserver/util/ConnectionPoolUtils.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/src/com/mobileserver/util/ConnectionPoolUtils.java
--------------------------------------------------------------------------------
/安卓服务器/src/com/mobileserver/util/DB.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/src/com/mobileserver/util/DB.java
--------------------------------------------------------------------------------
/安卓服务器/src/com/mobileserver/util/DBUtil.java:
--------------------------------------------------------------------------------
1 | package com.mobileserver.util;
2 |
3 | import java.sql.Connection;
4 | import java.sql.DriverManager;
5 | import java.sql.SQLException;
6 | import java.util.Properties;
7 |
8 | public class DBUtil {
9 | public void closeConn(Connection conn){
10 | try {
11 | conn.close();
12 | } catch (SQLException e) {
13 | e.printStackTrace();
14 | }
15 | }
16 |
17 | public Connection openConnection() {
18 | Properties prop = new Properties();
19 | String driver = null;
20 | String url = null;
21 | String username = null;
22 | String password = null;
23 |
24 | try {
25 | prop.load(this.getClass().getClassLoader().getResourceAsStream(
26 | "DBConfig.properties"));
27 |
28 | driver = prop.getProperty("driver");
29 | url = prop.getProperty("url");
30 | username = prop.getProperty("username");
31 | password = prop.getProperty("password");
32 |
33 | Class.forName(driver);
34 | return DriverManager.getConnection(url, username, password);
35 | } catch (Exception e) {
36 | e.printStackTrace();
37 | }
38 |
39 | return null;
40 | }
41 |
42 | }
43 |
--------------------------------------------------------------------------------
/安卓服务器/src/com/mobileserver/util/MD5Util.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wangjianlin1985/android_library_seat/e3eb9d06d8adc303d6fad0a2d6736cdb6d1a3406/安卓服务器/src/com/mobileserver/util/MD5Util.java
--------------------------------------------------------------------------------
/安卓服务器/src/validators.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
--------------------------------------------------------------------------------