├── .DS_Store ├── .gitattributes ├── README.md ├── WebRoot ├── META-INF │ └── MANIFEST.MF ├── WEB-INF │ ├── lib │ │ ├── antlr-2.7.6.jar │ │ ├── aopalliance-1.0.jar │ │ ├── asm-3.3.1.jar │ │ ├── aspectjweaver-1.6.9.jar │ │ ├── c3p0-0.9.1.2.jar │ │ ├── cglib-2.2.2.jar │ │ ├── cglib-nodep-2.2.jar │ │ ├── classworlds-1.1.jar │ │ ├── commons-beanutils-1.7.0.jar │ │ ├── commons-beanutils.jar │ │ ├── commons-chain-1.2.jar │ │ ├── commons-collections-3.2.1.jar │ │ ├── commons-dbcp-1.4.jar │ │ ├── commons-digester-2.0.jar │ │ ├── commons-fileupload-1.2.1.jar │ │ ├── commons-httpclient-3.1.jar │ │ ├── commons-io.jar │ │ ├── commons-lang-2.5.jar │ │ ├── commons-logging-1.1.1.jar │ │ ├── commons-logging-api-1.1.jar │ │ ├── commons-pool-1.5.3.jar │ │ ├── commons-validator-1.3.1.jar │ │ ├── dom4j-1.6.1.jar │ │ ├── dwr.jar │ │ ├── ehcache-1.2.3.jar │ │ ├── ejb3-persistence.jar │ │ ├── ezmorph-1.0.5.jar │ │ ├── javassist-3.17.1-GA.jar │ │ ├── javax.servlet.jsp.jstl.jar │ │ ├── jcommon-1.0.12.jar │ │ ├── jotm.jar │ │ ├── jsf-api.jar │ │ ├── jsf-impl.jar │ │ ├── json-lib-2.2-jdk15.jar │ │ ├── json_simple-1.1.jar │ │ ├── jsp-api.jar │ │ ├── jspsmartupload.jar │ │ ├── jstl-1.2.jar │ │ ├── jstl-impl.jar │ │ ├── jta-1.1.jar │ │ ├── jtds1.2.jar │ │ ├── jxl.jar │ │ ├── log4j-1.2.17.jar │ │ ├── mybatis-3.2.2.jar │ │ ├── mybatis-spring-1.2.2.jar │ │ ├── mysql-connector-java-5.1.34.jar │ │ ├── org.springframework.aop-3.1.1.RELEASE.jar │ │ ├── org.springframework.asm-3.1.1.RELEASE.jar │ │ ├── org.springframework.aspects-3.1.1.RELEASE.jar │ │ ├── org.springframework.beans-3.1.1.RELEASE.jar │ │ ├── org.springframework.context-3.1.1.RELEASE.jar │ │ ├── org.springframework.context.support-3.1.1.RELEASE.jar │ │ ├── org.springframework.core-3.1.1.RELEASE.jar │ │ ├── org.springframework.expression-3.1.1.RELEASE.jar │ │ ├── org.springframework.instrument-3.1.1.RELEASE.jar │ │ ├── org.springframework.instrument.tomcat-3.1.1.RELEASE.jar │ │ ├── org.springframework.jdbc-3.1.1.RELEASE.jar │ │ ├── org.springframework.jms-3.1.1.RELEASE.jar │ │ ├── org.springframework.orm-3.1.1.RELEASE.jar │ │ ├── org.springframework.oxm-3.1.1.RELEASE.jar │ │ ├── org.springframework.transaction-3.1.1.RELEASE.jar │ │ ├── org.springframework.web-3.1.1.RELEASE.jar │ │ ├── org.springframework.web.portlet-3.1.1.RELEASE.jar │ │ ├── org.springframework.web.servlet-3.1.1.RELEASE.jar │ │ ├── org.springframework.web.struts-3.1.1.RELEASE.jar │ │ ├── spring-beans-2.5.6.jar │ │ ├── spring-context-2.5.6.jar │ │ ├── spring-core-2.5.6.jar │ │ ├── spring-web-2.5.6.jar │ │ ├── struts2-convention-plugin-2.1.8.1.jar │ │ ├── struts2-core-2.1.8.1.jar │ │ ├── struts2-embeddedjsp-plugin-2.1.8.1.jar │ │ ├── struts2-jfreechart-plugin-2.1.8.1.jar │ │ ├── struts2-json-plugin-2.1.8.1.jar │ │ ├── struts2-spring-plugin-2.1.8.1.jar │ │ ├── xapool.jar │ │ └── xwork-core-2.1.6.jar │ └── web.xml ├── allusers_add.jsp ├── allusers_list.jsp ├── allusers_updt.jsp ├── echarts.min.js ├── hsgloginyanzheng.jsp ├── image.jsp ├── images │ ├── Particleground.js │ ├── content │ │ └── dotted.png │ ├── hsgcommon │ │ ├── bootbox.js │ │ ├── common.css │ │ ├── common.js │ │ ├── div.css │ │ ├── divqt.css │ │ └── jq.js │ ├── index.css │ ├── jquery.js │ ├── left │ │ ├── app.png │ │ ├── app_current.png │ │ ├── channel.png │ │ ├── channel_current.png │ │ ├── cloud.png │ │ ├── cloud_current.png │ │ ├── custom.png │ │ ├── custom_current.png │ │ ├── home.png │ │ ├── home_current.png │ │ ├── line_bg.png │ │ ├── select_xl.png │ │ ├── select_xl01.png │ │ ├── source.png │ │ ├── source_current.png │ │ ├── statistics.png │ │ ├── statistics_current.png │ │ ├── syetem_management.png │ │ ├── syetem_management_c.png │ │ ├── system.png │ │ └── system_current.png │ ├── loading.gif │ ├── style.css │ └── verificationNumbers.js ├── index.jsp ├── jiangchengxinxi_add.jsp ├── jiangchengxinxi_detail.jsp ├── jiangchengxinxi_list.jsp ├── jiangchengxinxi_list2.jsp ├── jiangchengxinxi_list_yanben.jsp ├── jiangchengxinxi_listxls.jsp ├── jiangchengxinxi_updt.jsp ├── jiaoshixinxi_add.jsp ├── jiaoshixinxi_detail.jsp ├── jiaoshixinxi_list.jsp ├── jiaoshixinxi_list_yanben.jsp ├── jiaoshixinxi_listxls.jsp ├── jiaoshixinxi_updt.jsp ├── jiaoshixinxi_updt2.jsp ├── js │ ├── My97DatePicker │ │ ├── WdatePicker.js │ │ ├── calendar.js │ │ ├── lang │ │ │ ├── en.js │ │ │ ├── zh-cn.js │ │ │ └── zh-tw.js │ │ └── skin │ │ │ ├── WdatePicker.css │ │ │ ├── datePicker.gif │ │ │ ├── default │ │ │ ├── datepicker.css │ │ │ └── img.gif │ │ │ └── whyGreen │ │ │ ├── bg.jpg │ │ │ ├── datepicker.css │ │ │ └── img.gif │ ├── ajax.js │ ├── dialogclose.gif │ ├── popup.js │ └── public.js ├── left_guanliyuan.jsp ├── left_jiaoshi.jsp ├── left_xuesheng.jsp ├── liuyanban_add.jsp ├── liuyanban_detail.jsp ├── liuyanban_list.jsp ├── liuyanban_list2.jsp ├── liuyanban_list_yanben.jsp ├── liuyanban_listxls.jsp ├── liuyanban_updt.jsp ├── liuyanban_updtlb.jsp ├── login.jsp ├── logout.jsp ├── main.jsp ├── mod.jsp ├── mygo.jsp ├── nenglijiafen_add.jsp ├── nenglijiafen_detail.jsp ├── nenglijiafen_list.jsp ├── nenglijiafen_list2.jsp ├── nenglijiafen_list_yanben.jsp ├── nenglijiafen_listxls.jsp ├── nenglijiafen_updt.jsp ├── postback.jsp ├── sh.jsp ├── sh2.jsp ├── sy.jsp ├── top.jsp ├── upload.jsp ├── upload │ ├── 1.zip │ ├── nopic.jpg │ ├── nopic1.jpg │ ├── nopic2.jpg │ ├── nopic3.jpg │ ├── nopic4.jpg │ └── nopic5.jpg ├── upload_re.jsp ├── xueshengchengji_add.jsp ├── xueshengchengji_detail.jsp ├── xueshengchengji_list.jsp ├── xueshengchengji_list2.jsp ├── xueshengchengji_list_yanben.jsp ├── xueshengchengji_listxls.jsp ├── xueshengchengji_updt.jsp ├── xueshengxinxi_add.jsp ├── xueshengxinxi_detail.jsp ├── xueshengxinxi_list.jsp ├── xueshengxinxi_list_yanben.jsp ├── xueshengxinxi_listxls.jsp ├── xueshengxinxi_tj_banji.jsp ├── xueshengxinxi_tj_xingbie.jsp ├── xueshengxinxi_updt.jsp ├── xueshengxinxi_updt2.jsp ├── yonghuzhuce_add.jsp ├── yonghuzhuce_detail.jsp ├── yonghuzhuce_list.jsp ├── yonghuzhuce_updt.jsp ├── yonghuzhuce_updt2.jsp ├── zongheceping_add.jsp ├── zongheceping_detail.jsp ├── zongheceping_list.jsp ├── zongheceping_list2.jsp ├── zongheceping_list_yanben.jsp ├── zongheceping_listjs.jsp ├── zongheceping_listxls.jsp └── zongheceping_updt.jsp └── src ├── applicationContext.xml ├── com ├── controller │ ├── AllusersController.java │ ├── IndexController.java │ ├── JiangchengxinxiController.java │ ├── JiaoshixinxiController.java │ ├── LiuyanbanController.java │ ├── NenglijiafenController.java │ ├── PinglunController.java │ ├── ShoucangjiluController.java │ ├── XinwentongzhiController.java │ ├── XueshengchengjiController.java │ ├── XueshengxinxiController.java │ ├── YonghuzhuceController.java │ ├── YouqinglianjieController.java │ ├── ZonghecepingController.java │ └── hsgloginController.java ├── dao │ ├── AllusersMapper.java │ ├── JiangchengxinxiMapper.java │ ├── JiaoshixinxiMapper.java │ ├── LiuyanbanMapper.java │ ├── NenglijiafenMapper.java │ ├── PinglunMapper.java │ ├── ShoucangjiluMapper.java │ ├── XinwentongzhiMapper.java │ ├── XueshengchengjiMapper.java │ ├── XueshengxinxiMapper.java │ ├── YonghuzhuceMapper.java │ ├── YouqinglianjieMapper.java │ └── ZonghecepingMapper.java ├── entity │ ├── Allusers.java │ ├── Jiangchengxinxi.java │ ├── Jiaoshixinxi.java │ ├── Liuyanban.java │ ├── Nenglijiafen.java │ ├── Pinglun.java │ ├── Shoucangjilu.java │ ├── Xinwentongzhi.java │ ├── Xueshengchengji.java │ ├── Xueshengxinxi.java │ ├── Yonghuzhuce.java │ ├── Youqinglianjie.java │ └── Zongheceping.java ├── mapper │ ├── AllusersMapper.xml │ ├── JiangchengxinxiMapper.xml │ ├── JiaoshixinxiMapper.xml │ ├── LiuyanbanMapper.xml │ ├── NenglijiafenMapper.xml │ ├── PinglunMapper.xml │ ├── ShoucangjiluMapper.xml │ ├── XinwentongzhiMapper.xml │ ├── XueshengchengjiMapper.xml │ ├── XueshengxinxiMapper.xml │ ├── YonghuzhuceMapper.xml │ ├── YouqinglianjieMapper.xml │ └── ZonghecepingMapper.xml ├── server │ ├── AllusersServer.java │ ├── JiangchengxinxiServer.java │ ├── JiaoshixinxiServer.java │ ├── LiuyanbanServer.java │ ├── NenglijiafenServer.java │ ├── PinglunServer.java │ ├── ShoucangjiluServer.java │ ├── XinwentongzhiServer.java │ ├── XueshengchengjiServer.java │ ├── XueshengxinxiServer.java │ ├── YonghuzhuceServer.java │ ├── YouqinglianjieServer.java │ ├── ZonghecepingServer.java │ └── impl │ │ ├── AllusersServerImpi.java │ │ ├── JiangchengxinxiServerImpi.java │ │ ├── JiaoshixinxiServerImpi.java │ │ ├── LiuyanbanServerImpi.java │ │ ├── NenglijiafenServerImpi.java │ │ ├── PinglunServerImpi.java │ │ ├── ShoucangjiluServerImpi.java │ │ ├── XinwentongzhiServerImpi.java │ │ ├── XueshengchengjiServerImpi.java │ │ ├── XueshengxinxiServerImpi.java │ │ ├── YonghuzhuceServerImpi.java │ │ ├── YouqinglianjieServerImpi.java │ │ └── ZonghecepingServerImpi.java └── util │ ├── CheckCode.java │ ├── Constant.java │ ├── Info.java │ ├── Md5.java │ ├── PageBean.java │ ├── PageInfo.java │ ├── SetChar.java │ ├── StrUtil.java │ ├── VeDate.java │ ├── db.java │ └── testFilter.java ├── mybatis-config.xml └── springMVC-config.xml /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/.DS_Store -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.js linguist-language=java 2 | *.css linguist-language=java 3 | *.html linguist-language=java 4 | *.vue linguist-language=java -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 全目录 2 | 3 | [更多系统、论文,供君选择 ~~>](https://www.yuque.com/wisebit/blog) 4 | 5 | # 157.StudentComprehensiveQualityEvaluationManagementSystem 6 | 7 |

群: 983063232(大佬群 2TB学习资料,讲解)(入群获取sql文件)

8 | 9 |

157.学生综合素质测评管理系统

10 | 11 | 12 |

13 | 14 | 15 | 16 | 17 |

18 | 19 | # 简介 20 | 21 | 22 | > 本代码来源于网络,仅供学习参考使用,请入群(983063232)后联系群主索要sql文件! 23 | > 24 | > 提供1.远程部署/2.修改代码/3.设计文档指导/4.框架代码讲解等服务 25 | 26 | >访问地址: http://localhost:8080/login.jsp 27 | 28 | >管理员登录账号: hsg hsg 29 | 30 | 31 | 32 | # 环境 33 | 34 | - IntelliJ IDEA 2009.3 35 | 36 | - Mysql 5.7.26 37 | 38 | - Tomcat 9.0.73 39 | 40 | - JDK 1.8 41 | 42 | 43 | 44 | 45 | ## 缩略图 46 | 47 | 48 | ![](https://bitwise.oss-cn-heyuan.aliyuncs.com/2024/9/10/49baa651-cf08-4c64-b799-6ba0c55f6212.png) 49 | ![](https://bitwise.oss-cn-heyuan.aliyuncs.com/2024/9/10/3bee39db-457e-4a37-8260-73795f13449f.png) 50 | ![](https://bitwise.oss-cn-heyuan.aliyuncs.com/2024/9/10/4c97979f-5f57-402e-a833-c2dbda1c1130.png) 51 | ![](https://bitwise.oss-cn-heyuan.aliyuncs.com/2024/9/10/0dea475d-9263-43e1-86fb-ed20d423520c.png) 52 | ![](https://bitwise.oss-cn-heyuan.aliyuncs.com/2024/9/10/287e0476-5815-4cac-bbe2-22956090cb47.png) 53 | 54 | 55 | 56 | 57 | -------------------------------------------------------------------------------- /WebRoot/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/antlr-2.7.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/WEB-INF/lib/antlr-2.7.6.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/aopalliance-1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/WEB-INF/lib/aopalliance-1.0.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/asm-3.3.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/WEB-INF/lib/asm-3.3.1.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/aspectjweaver-1.6.9.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/WEB-INF/lib/aspectjweaver-1.6.9.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/c3p0-0.9.1.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/WEB-INF/lib/c3p0-0.9.1.2.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/cglib-2.2.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/WEB-INF/lib/cglib-2.2.2.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/cglib-nodep-2.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/WEB-INF/lib/cglib-nodep-2.2.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/classworlds-1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/WEB-INF/lib/classworlds-1.1.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/commons-beanutils-1.7.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/WEB-INF/lib/commons-beanutils-1.7.0.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/commons-beanutils.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/WEB-INF/lib/commons-beanutils.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/commons-chain-1.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/WEB-INF/lib/commons-chain-1.2.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/commons-collections-3.2.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/WEB-INF/lib/commons-collections-3.2.1.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/commons-dbcp-1.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/WEB-INF/lib/commons-dbcp-1.4.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/commons-digester-2.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/WEB-INF/lib/commons-digester-2.0.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/commons-fileupload-1.2.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/WEB-INF/lib/commons-fileupload-1.2.1.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/commons-httpclient-3.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/WEB-INF/lib/commons-httpclient-3.1.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/commons-io.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/WEB-INF/lib/commons-io.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/commons-lang-2.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/WEB-INF/lib/commons-lang-2.5.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/commons-logging-1.1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/WEB-INF/lib/commons-logging-1.1.1.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/commons-logging-api-1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/WEB-INF/lib/commons-logging-api-1.1.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/commons-pool-1.5.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/WEB-INF/lib/commons-pool-1.5.3.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/commons-validator-1.3.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/WEB-INF/lib/commons-validator-1.3.1.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/dom4j-1.6.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/WEB-INF/lib/dom4j-1.6.1.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/dwr.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/WEB-INF/lib/dwr.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/ehcache-1.2.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/WEB-INF/lib/ehcache-1.2.3.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/ejb3-persistence.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/WEB-INF/lib/ejb3-persistence.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/ezmorph-1.0.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/WEB-INF/lib/ezmorph-1.0.5.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/javassist-3.17.1-GA.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/WEB-INF/lib/javassist-3.17.1-GA.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/javax.servlet.jsp.jstl.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/WEB-INF/lib/javax.servlet.jsp.jstl.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/jcommon-1.0.12.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/WEB-INF/lib/jcommon-1.0.12.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/jotm.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/WEB-INF/lib/jotm.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/jsf-api.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/WEB-INF/lib/jsf-api.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/jsf-impl.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/WEB-INF/lib/jsf-impl.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/json-lib-2.2-jdk15.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/WEB-INF/lib/json-lib-2.2-jdk15.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/json_simple-1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/WEB-INF/lib/json_simple-1.1.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/jsp-api.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/WEB-INF/lib/jsp-api.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/jspsmartupload.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/WEB-INF/lib/jspsmartupload.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/jstl-1.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/WEB-INF/lib/jstl-1.2.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/jstl-impl.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/WEB-INF/lib/jstl-impl.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/jta-1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/WEB-INF/lib/jta-1.1.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/jtds1.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/WEB-INF/lib/jtds1.2.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/jxl.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/WEB-INF/lib/jxl.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/log4j-1.2.17.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/WEB-INF/lib/log4j-1.2.17.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/mybatis-3.2.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/WEB-INF/lib/mybatis-3.2.2.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/mybatis-spring-1.2.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/WEB-INF/lib/mybatis-spring-1.2.2.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/mysql-connector-java-5.1.34.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/WEB-INF/lib/mysql-connector-java-5.1.34.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/org.springframework.aop-3.1.1.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/WEB-INF/lib/org.springframework.aop-3.1.1.RELEASE.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/org.springframework.asm-3.1.1.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/WEB-INF/lib/org.springframework.asm-3.1.1.RELEASE.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/org.springframework.aspects-3.1.1.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/WEB-INF/lib/org.springframework.aspects-3.1.1.RELEASE.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/org.springframework.beans-3.1.1.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/WEB-INF/lib/org.springframework.beans-3.1.1.RELEASE.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/org.springframework.context-3.1.1.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/WEB-INF/lib/org.springframework.context-3.1.1.RELEASE.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/org.springframework.context.support-3.1.1.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/WEB-INF/lib/org.springframework.context.support-3.1.1.RELEASE.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/org.springframework.core-3.1.1.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/WEB-INF/lib/org.springframework.core-3.1.1.RELEASE.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/org.springframework.expression-3.1.1.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/WEB-INF/lib/org.springframework.expression-3.1.1.RELEASE.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/org.springframework.instrument-3.1.1.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/WEB-INF/lib/org.springframework.instrument-3.1.1.RELEASE.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/org.springframework.instrument.tomcat-3.1.1.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/WEB-INF/lib/org.springframework.instrument.tomcat-3.1.1.RELEASE.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/org.springframework.jdbc-3.1.1.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/WEB-INF/lib/org.springframework.jdbc-3.1.1.RELEASE.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/org.springframework.jms-3.1.1.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/WEB-INF/lib/org.springframework.jms-3.1.1.RELEASE.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/org.springframework.orm-3.1.1.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/WEB-INF/lib/org.springframework.orm-3.1.1.RELEASE.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/org.springframework.oxm-3.1.1.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/WEB-INF/lib/org.springframework.oxm-3.1.1.RELEASE.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/org.springframework.transaction-3.1.1.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/WEB-INF/lib/org.springframework.transaction-3.1.1.RELEASE.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/org.springframework.web-3.1.1.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/WEB-INF/lib/org.springframework.web-3.1.1.RELEASE.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/org.springframework.web.portlet-3.1.1.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/WEB-INF/lib/org.springframework.web.portlet-3.1.1.RELEASE.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/org.springframework.web.servlet-3.1.1.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/WEB-INF/lib/org.springframework.web.servlet-3.1.1.RELEASE.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/org.springframework.web.struts-3.1.1.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/WEB-INF/lib/org.springframework.web.struts-3.1.1.RELEASE.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-beans-2.5.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/WEB-INF/lib/spring-beans-2.5.6.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-context-2.5.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/WEB-INF/lib/spring-context-2.5.6.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-core-2.5.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/WEB-INF/lib/spring-core-2.5.6.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-web-2.5.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/WEB-INF/lib/spring-web-2.5.6.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/struts2-convention-plugin-2.1.8.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/WEB-INF/lib/struts2-convention-plugin-2.1.8.1.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/struts2-core-2.1.8.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/WEB-INF/lib/struts2-core-2.1.8.1.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/struts2-embeddedjsp-plugin-2.1.8.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/WEB-INF/lib/struts2-embeddedjsp-plugin-2.1.8.1.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/struts2-jfreechart-plugin-2.1.8.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/WEB-INF/lib/struts2-jfreechart-plugin-2.1.8.1.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/struts2-json-plugin-2.1.8.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/WEB-INF/lib/struts2-json-plugin-2.1.8.1.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/struts2-spring-plugin-2.1.8.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/WEB-INF/lib/struts2-spring-plugin-2.1.8.1.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/xapool.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/WEB-INF/lib/xapool.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/xwork-core-2.1.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/WEB-INF/lib/xwork-core-2.1.6.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/web.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | automobikesys 4 | 5 | index.html 6 | index.htm 7 | index.jsp 8 | default.html 9 | default.htm 10 | default.jsp 11 | 12 | 13 | 14 | sMvc 15 | org.springframework.web.servlet.DispatcherServlet 16 | 17 | contextConfigLocation 18 | classpath:springMVC-config.xml 19 | 20 | 1 21 | 22 | 23 | sMvc 24 | *.do 25 | 26 | 27 | 28 | springencoding 29 | org.springframework.web.filter.CharacterEncodingFilter 30 | 31 | encoding 32 | utf-8 33 | 34 | 35 | 36 | 37 | springencoding 38 | /* 39 | 40 | 41 | 42 | org.springframework.web.context.ContextLoaderListener 43 | 44 | 45 | contextConfigLocation 46 | classpath:applicationContext.xml 47 | 48 | -------------------------------------------------------------------------------- /WebRoot/allusers_list.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="utf-8"%> 2 | <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%> 3 | 4 | 5 | 6 | 7 | 管理员账号查询 8 | 9 | 10 | 17 | 18 | 19 | 20 | 21 | 28 | 29 | 30 | 31 | 83 | 84 |
22 | 23 | 24 | 25 | 26 |
管理员账户列表
27 |
32 | 33 | 34 | 35 | 46 | 47 | 48 | 49 | 78 | 79 |
36 | 37 | 38 | 44 |
39 |
40 | 查询 用户名: 41 | 42 | 43 |
45 |
50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | <% 60 | int i=0; 61 | %> 62 | 63 | <% 64 | i++; 65 | %> 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 75 | 76 | 77 |
序号账号密码权限 添加时间 操作
<%=i%>${u.username}${u.pwd}${u.cx} ${u.addtime } 编辑 | 删除
80 | 81 | 82 |
85 |

86 | 87 | 首页 88 | 上一页 89 | 90 | 下一页 91 | 末页 92 | 93 |

94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | -------------------------------------------------------------------------------- /WebRoot/allusers_updt.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="utf-8"%> 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 修改管理员账户 13 | 14 | 15 | 16 | 17 | 18 | <% 19 | String id=""; 20 | //islbd1q 21 | %> 22 | 40 | 41 |
42 | 43 | 44 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 59 | 60 | 61 | 62 | 63 | 64 | 68 | 69 | 70 | 71 | 72 | 73 |
修改管理员账号 45 |
用户名: *
密码: *
权限:
  65 | 66 |   67 |
74 |
75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 96 | -------------------------------------------------------------------------------- /WebRoot/hsgloginyanzheng.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="utf-8" %> 2 | <%@ page language="java" import="java.sql.*" %> 3 | 4 | 5 | 6 | 7 | 8 | My JSP 'adminyanzheng.jsp' starting page 9 | 10 | 11 | 12 | 13 | <% 14 | 15 | String uid = request.getParameter("username"); 16 | String pwd = request.getParameter("pwd"); 17 | String cx = request.getParameter("cx"); 18 | String sql = ""; 19 | System.out.println(cx); 20 | if (cx.equals("管理员")) { 21 | sql = "select * from allusers where username='" + uid + "' and pwd='" + pwd + "'"; 22 | } 23 | if (cx.equals("教师")) { 24 | sql = "select * from jiaoshixinxi where gonghao='" + uid + "' and mima='" + pwd + "'"; 25 | } 26 | if (cx.equals("学生")) { 27 | sql = "select * from xueshengxinxi where xuehao='" + uid + "' and mima='" + pwd + "'"; 28 | } 29 | 30 | ResultSet RS_result = connDbBean.executeQuery(sql); 31 | if (RS_result == null || !RS_result.next()) { 32 | out.print(""); 33 | } else { 34 | session.setAttribute("username", uid); 35 | session.setAttribute("uid", RS_result.getString("id")); 36 | if (cx.equals("管理员")) { 37 | session.setAttribute("cx", RS_result.getString("cx")); 38 | } else { 39 | session.setAttribute("cx", cx); 40 | } 41 | response.sendRedirect("main.jsp"); 42 | RS_result.close(); 43 | } 44 | 45 | 46 | %> 47 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /WebRoot/image.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/image.jsp -------------------------------------------------------------------------------- /WebRoot/images/content/dotted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/images/content/dotted.png -------------------------------------------------------------------------------- /WebRoot/images/hsgcommon/div.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin-left: 10px; 3 | margin-right: 10px; 4 | } 5 | input[type=submit],input[name=submit]{ 6 | color: #fff; 7 | background-color:#FF66CC; 8 | border-color:#993399; 9 | display: inline-block; 10 | padding: 6px 12px; 11 | margin-bottom: 0; 12 | font-size: 14px; 13 | font-weight: 400; 14 | line-height: 1.42857143; 15 | text-align: center; 16 | white-space: nowrap; 17 | vertical-align: middle; 18 | -ms-touch-action: manipulation; 19 | touch-action: manipulation; 20 | cursor: pointer; 21 | -webkit-user-select: none; 22 | -moz-user-select: none; 23 | -ms-user-select: none; 24 | user-select: none; 25 | background-image: none; 26 | border: 1px solid transparent; 27 | border-radius: 4px; 28 | } 29 | #input[type=submit2]{ 30 | color: #fff; 31 | background-color: #337ab7; 32 | border-color: #2e6da4; 33 | display: inline-block; 34 | padding: 6px 12px; 35 | margin-bottom: 0; 36 | font-size: 14px; 37 | font-weight: 400; 38 | line-height: 1.42857143; 39 | text-align: center; 40 | white-space: nowrap; 41 | vertical-align: middle; 42 | -ms-touch-action: manipulation; 43 | touch-action: manipulation; 44 | cursor: pointer; 45 | -webkit-user-select: none; 46 | -moz-user-select: none; 47 | -ms-user-select: none; 48 | user-select: none; 49 | background-image: none; 50 | border: 1px solid transparent; 51 | border-radius: 4px; 52 | } 53 | a:active:hover{ 54 | color: #fff; 55 | background-color: #269abc; 56 | border-color: #1b6d85; 57 | background-image:none; 58 | display: inline-block; 59 | padding: 6px 12px; 60 | margin-bottom: 0; 61 | font-size: 14px; 62 | font-weight: 400; 63 | line-height: 1.42857143; 64 | text-align: center; 65 | white-space: nowrap; 66 | vertical-align: middle; 67 | -ms-touch-action: manipulation; 68 | touch-action: manipulation; 69 | cursor: pointer; 70 | -webkit-user-select: none; 71 | -moz-user-select: none; 72 | -ms-user-select: none; 73 | user-select: none; 74 | background-image: none; 75 | border: 1px solid transparent; 76 | border-radius: 4px; 77 | } 78 | 79 | .form-control{ 80 | width: 300px; 81 | margin: 10px; 82 | border:1px solid #9c5555 !important; 83 | float:left; 84 | 85 | 86 | } 87 | .form-control2{ 88 | width: 100px; 89 | margin: 10px; 90 | height:28px; 91 | border:1px solid #996666 !important; 92 | border-radius: 6px; 93 | } 94 | .form-control3{ 95 | width: 600px; 96 | margin: 10px; 97 | height:58px; 98 | border:1px solid #996666 !important; 99 | border-radius: 6px; 100 | } 101 | .form-control4{ 102 | width: 140px; 103 | margin: 10px; 104 | height:28px; 105 | border:1px solid #996666 !important; 106 | border-radius: 6px; 107 | } 108 | .form-control5{ 109 | width: 600px; 110 | margin: 10px; 111 | height:28px; 112 | border:1px solid #996666 !important; 113 | border-radius: 6px; 114 | } 115 | 116 | .fy{text-align:center;padding-top:20px} 117 | .fy a{display:inline-block;padding:4px 10px;border:1px solid #f5e703;margin:0 2px;color:#d75e15;text-decoration:none} 118 | .fy .ac{background:#3c9fee;border-color:#83c414;color:#fff} 119 | .fy a:hover{background:#FFCC99;border-color:#83c414;color:#fff} 120 | 121 | .button, button, input[type="button"]{ 122 | display: inline-block; 123 | 124 | background:#FF9966; 125 | color: #fff; 126 | text-decoration: none; 127 | -webkit-transition: all 0.2s ease-in-out; 128 | -moz-transition: all 0.2s ease-in-out; 129 | -ms-transition: all 0.2s ease-in-out; 130 | -o-transition: all 0.2s ease-in-out; 131 | transition: all 0.2s ease-in-out; 132 | font-weight: 800; 133 | height:30px; 134 | border-radius: 4px; 135 | border: 0; 136 | } 137 | .button:hover, .button:focus, button:hover, button:focus, input[type="button"]:hover, input[type="button"]:focus, input[type="reset"]:focus { 138 | outline: none; 139 | cursor: pointer; 140 | background:#CC3366; 141 | color: #fff 142 | border-radius: 4px; 143 | } 144 | 145 | .button1:hover { 146 | background-color:#FFCC99; 147 | color: white; 148 | } 149 | -------------------------------------------------------------------------------- /WebRoot/images/hsgcommon/divqt.css: -------------------------------------------------------------------------------- 1 | 2 | input[type=submit],input[name=submit]{ 3 | color: #fff; 4 | background-color:#FF66CC; 5 | border-color:#993399; 6 | display: inline-block; 7 | padding: 6px 12px; 8 | margin-bottom: 0; 9 | font-size: 14px; 10 | font-weight: 400; 11 | line-height: 1.42857143; 12 | text-align: center; 13 | white-space: nowrap; 14 | vertical-align: middle; 15 | -ms-touch-action: manipulation; 16 | touch-action: manipulation; 17 | cursor: pointer; 18 | -webkit-user-select: none; 19 | -moz-user-select: none; 20 | -ms-user-select: none; 21 | user-select: none; 22 | background-image: none; 23 | border: 1px solid transparent; 24 | border-radius: 4px; 25 | } 26 | #input[type=submit2]{ 27 | color: #fff; 28 | background-color: #337ab7; 29 | border-color: #2e6da4; 30 | display: inline-block; 31 | padding: 6px 12px; 32 | margin-bottom: 0; 33 | font-size: 14px; 34 | font-weight: 400; 35 | line-height: 1.42857143; 36 | text-align: center; 37 | white-space: nowrap; 38 | vertical-align: middle; 39 | -ms-touch-action: manipulation; 40 | touch-action: manipulation; 41 | cursor: pointer; 42 | -webkit-user-select: none; 43 | -moz-user-select: none; 44 | -ms-user-select: none; 45 | user-select: none; 46 | background-image: none; 47 | border: 1px solid transparent; 48 | border-radius: 4px; 49 | } 50 | a:active:hover{ 51 | color: #fff; 52 | background-color: #269abc; 53 | border-color: #1b6d85; 54 | background-image:none; 55 | display: inline-block; 56 | padding: 6px 12px; 57 | margin-bottom: 0; 58 | font-size: 14px; 59 | font-weight: 400; 60 | line-height: 1.42857143; 61 | text-align: center; 62 | white-space: nowrap; 63 | vertical-align: middle; 64 | -ms-touch-action: manipulation; 65 | touch-action: manipulation; 66 | cursor: pointer; 67 | -webkit-user-select: none; 68 | -moz-user-select: none; 69 | -ms-user-select: none; 70 | user-select: none; 71 | background-image: none; 72 | border: 1px solid transparent; 73 | border-radius: 4px; 74 | } 75 | 76 | .form-control{ 77 | width: 300px; 78 | margin: 10px; 79 | border:1px solid #9c5555 !important; 80 | float:left; 81 | 82 | 83 | } 84 | .form-control2{ 85 | width: 100px; 86 | margin: 10px; 87 | height:28px; 88 | border:1px solid #996666 !important; 89 | border-radius: 6px; 90 | } 91 | .form-control3{ 92 | width: 600px; 93 | margin: 10px; 94 | height:58px; 95 | border:1px solid #996666 !important; 96 | border-radius: 6px; 97 | } 98 | .form-control4{ 99 | width: 140px; 100 | margin: 10px; 101 | height:28px; 102 | border:1px solid #996666 !important; 103 | border-radius: 6px; 104 | } 105 | .form-control5{ 106 | width: 600px; 107 | margin: 10px; 108 | height:28px; 109 | border:1px solid #996666 !important; 110 | border-radius: 6px; 111 | } 112 | 113 | .fy{text-align:center;padding-top:20px} 114 | .fy a{display:inline-block;padding:4px 10px;border:1px solid #f5e703;margin:0 2px;color:#d75e15;text-decoration:none} 115 | .fy .ac{background:#3c9fee;border-color:#83c414;color:#fff} 116 | .fy a:hover{background:#FFCC99;border-color:#83c414;color:#fff} 117 | 118 | .button, button, input[type="button"]{ 119 | display: inline-block; 120 | 121 | background:#FF9966; 122 | color: #fff; 123 | text-decoration: none; 124 | -webkit-transition: all 0.2s ease-in-out; 125 | -moz-transition: all 0.2s ease-in-out; 126 | -ms-transition: all 0.2s ease-in-out; 127 | -o-transition: all 0.2s ease-in-out; 128 | transition: all 0.2s ease-in-out; 129 | font-weight: 800; 130 | 131 | border-radius: 4px; 132 | border: 0; 133 | } 134 | .button:hover, .button:focus, button:hover, button:focus, input[type="button"]:hover, input[type="button"]:focus, input[type="reset"]:focus { 135 | outline: none; 136 | cursor: pointer; 137 | background:#CC3366; 138 | color: #fff 139 | border-radius: 4px; 140 | } 141 | 142 | .button1:hover { 143 | background-color:#FFCC99; 144 | color: white; 145 | } 146 | -------------------------------------------------------------------------------- /WebRoot/images/index.css: -------------------------------------------------------------------------------- 1 | @CHARSET "UTF-8"; 2 | .top_box{ 3 | width: 100%; 4 | height: 55px; 5 | background-color: #339999; 6 | } -------------------------------------------------------------------------------- /WebRoot/images/left/app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/images/left/app.png -------------------------------------------------------------------------------- /WebRoot/images/left/app_current.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/images/left/app_current.png -------------------------------------------------------------------------------- /WebRoot/images/left/channel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/images/left/channel.png -------------------------------------------------------------------------------- /WebRoot/images/left/channel_current.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/images/left/channel_current.png -------------------------------------------------------------------------------- /WebRoot/images/left/cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/images/left/cloud.png -------------------------------------------------------------------------------- /WebRoot/images/left/cloud_current.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/images/left/cloud_current.png -------------------------------------------------------------------------------- /WebRoot/images/left/custom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/images/left/custom.png -------------------------------------------------------------------------------- /WebRoot/images/left/custom_current.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/images/left/custom_current.png -------------------------------------------------------------------------------- /WebRoot/images/left/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/images/left/home.png -------------------------------------------------------------------------------- /WebRoot/images/left/home_current.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/images/left/home_current.png -------------------------------------------------------------------------------- /WebRoot/images/left/line_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/images/left/line_bg.png -------------------------------------------------------------------------------- /WebRoot/images/left/select_xl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/images/left/select_xl.png -------------------------------------------------------------------------------- /WebRoot/images/left/select_xl01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/images/left/select_xl01.png -------------------------------------------------------------------------------- /WebRoot/images/left/source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/images/left/source.png -------------------------------------------------------------------------------- /WebRoot/images/left/source_current.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/images/left/source_current.png -------------------------------------------------------------------------------- /WebRoot/images/left/statistics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/images/left/statistics.png -------------------------------------------------------------------------------- /WebRoot/images/left/statistics_current.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/images/left/statistics_current.png -------------------------------------------------------------------------------- /WebRoot/images/left/syetem_management.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/images/left/syetem_management.png -------------------------------------------------------------------------------- /WebRoot/images/left/syetem_management_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/images/left/syetem_management_c.png -------------------------------------------------------------------------------- /WebRoot/images/left/system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/images/left/system.png -------------------------------------------------------------------------------- /WebRoot/images/left/system_current.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/images/left/system_current.png -------------------------------------------------------------------------------- /WebRoot/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/images/loading.gif -------------------------------------------------------------------------------- /WebRoot/images/verificationNumbers.js: -------------------------------------------------------------------------------- 1 | function showCheck(a){ 2 | var c = document.getElementById("myCanvas"); 3 | var ctx = c.getContext("2d"); 4 | ctx.clearRect(0,0,1000,1000); 5 | ctx.font = "80px 'Microsoft Yahei'"; 6 | ctx.fillText(a,0,100); 7 | ctx.fillStyle = "white"; 8 | } 9 | var code ; 10 | function createCode(){ 11 | code = ""; 12 | var codeLength = 4; 13 | var selectChar = new Array(1,2,3,4,5,6,7,8,9,'a','b','c','d','e','f','g','h','j','k','l','m','n','p','q','r','s','t','u','v','w','x','y','z','A','B','C','D','E','F','G','H','J','K','L','M','N','P','Q','R','S','T','U','V','W','X','Y','Z'); 14 | for(var i=0;i 2 | <%@taglib prefix="s" uri="/struts-tags"%> 3 | <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%> 4 | <% 5 | String path = request.getContextPath(); 6 | String basePath = request.getScheme() + "://" + request.getServerName() + ":" + request.getServerPort() + path + "/"; 7 | %> 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | <% 19 | response.sendRedirect(basePath + "login.jsp"); 20 | %> 21 | 22 | 23 | -------------------------------------------------------------------------------- /WebRoot/jiangchengxinxi_detail.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="utf-8"%> 2 | <%@ page language="java" import="java.sql.*" %> 3 | 4 | 5 | 6 | 奖惩信息详细 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 奖惩信息详细: 15 |

16 | 17 | 18 | 19 | 20 | 21 |
奖惩编号:${jiangchengxinxi.jiangchengbianhao} 奖惩标题:${jiangchengxinxi.jiangchengbiaoti}
奖惩内容:${jiangchengxinxi.jiangchengneirong} 奖惩分数:${jiangchengxinxi.jiangchengfenshu}
时间:${jiangchengxinxi.shijian} 录入人:${jiangchengxinxi.lururen}
 
22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /WebRoot/jiangchengxinxi_list_yanben.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/jiangchengxinxi_list_yanben.jsp -------------------------------------------------------------------------------- /WebRoot/jiangchengxinxi_listxls.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/jiangchengxinxi_listxls.jsp -------------------------------------------------------------------------------- /WebRoot/jiaoshixinxi_detail.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="utf-8"%> 2 | <%@ page language="java" import="java.sql.*" %> 3 | 4 | 5 | 6 | 教师信息详细 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 教师信息详细: 15 |

16 | 17 | 18 | 19 | 20 | 21 |
工号:${jiaoshixinxi.gonghao} 密码:${jiaoshixinxi.mima}
姓名:${jiaoshixinxi.xingming} 性别:${jiaoshixinxi.xingbie}
身份证:${jiaoshixinxi.shenfenzheng} 电话:${jiaoshixinxi.dianhua}
职称:${jiaoshixinxi.zhicheng} 备注:${jiaoshixinxi.beizhu}
 
22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /WebRoot/jiaoshixinxi_list_yanben.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/jiaoshixinxi_list_yanben.jsp -------------------------------------------------------------------------------- /WebRoot/jiaoshixinxi_listxls.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/jiaoshixinxi_listxls.jsp -------------------------------------------------------------------------------- /WebRoot/js/My97DatePicker/lang/en.js: -------------------------------------------------------------------------------- 1 | var $lang={ 2 | errAlertMsg: "Invalid date or the date out of range,redo or not?", 3 | aWeekStr: ["wk", "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"], 4 | aLongWeekStr:["wk","Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday","Sunday"], 5 | aMonStr: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"], 6 | aLongMonStr: ["January","February","March","April","May","June","July","August","September","October","November","December"], 7 | clearStr: "Clear", 8 | todayStr: "Today", 9 | okStr: "OK", 10 | updateStr: "OK", 11 | timeStr: "Time", 12 | quickStr: "Quick Selection", 13 | err_1: 'MinDate Cannot be bigger than MaxDate!' 14 | } -------------------------------------------------------------------------------- /WebRoot/js/My97DatePicker/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | var $lang={ 2 | errAlertMsg: "\u4E0D\u5408\u6CD5\u7684\u65E5\u671F\u683C\u5F0F\u6216\u8005\u65E5\u671F\u8D85\u51FA\u9650\u5B9A\u8303\u56F4,\u9700\u8981\u64A4\u9500\u5417?", 3 | aWeekStr: ["\u5468","\u65E5","\u4E00","\u4E8C","\u4E09","\u56DB","\u4E94","\u516D"], 4 | aLongWeekStr:["\u5468","\u661F\u671F\u65E5","\u661F\u671F\u4E00","\u661F\u671F\u4E8C","\u661F\u671F\u4E09","\u661F\u671F\u56DB","\u661F\u671F\u4E94","\u661F\u671F\u516D"], 5 | aMonStr: ["\u4E00\u6708","\u4E8C\u6708","\u4E09\u6708","\u56DB\u6708","\u4E94\u6708","\u516D\u6708","\u4E03\u6708","\u516B\u6708","\u4E5D\u6708","\u5341\u6708","\u5341\u4E00","\u5341\u4E8C"], 6 | aLongMonStr: ["\u4E00\u6708","\u4E8C\u6708","\u4E09\u6708","\u56DB\u6708","\u4E94\u6708","\u516D\u6708","\u4E03\u6708","\u516B\u6708","\u4E5D\u6708","\u5341\u6708","\u5341\u4E00\u6708","\u5341\u4E8C\u6708"], 7 | clearStr: "\u6E05\u7A7A", 8 | todayStr: "\u4ECA\u5929", 9 | okStr: "\u786E\u5B9A", 10 | updateStr: "\u786E\u5B9A", 11 | timeStr: "\u65F6\u95F4", 12 | quickStr: "\u5FEB\u901F\u9009\u62E9", 13 | err_1: '\u6700\u5C0F\u65E5\u671F\u4E0D\u80FD\u5927\u4E8E\u6700\u5927\u65E5\u671F!' 14 | } -------------------------------------------------------------------------------- /WebRoot/js/My97DatePicker/lang/zh-tw.js: -------------------------------------------------------------------------------- 1 | var $lang={ 2 | errAlertMsg: "\u4E0D\u5408\u6CD5\u7684\u65E5\u671F\u683C\u5F0F\u6216\u8005\u65E5\u671F\u8D85\u51FA\u9650\u5B9A\u7BC4\u570D,\u9700\u8981\u64A4\u92B7\u55CE?", 3 | aWeekStr: ["\u5468","\u65E5","\u4E00","\u4E8C","\u4E09","\u56DB","\u4E94","\u516D"], 4 | aLongWeekStr:["\u5468","\u661F\u671F\u65E5","\u661F\u671F\u4E00","\u661F\u671F\u4E8C","\u661F\u671F\u4E09","\u661F\u671F\u56DB","\u661F\u671F\u4E94","\u661F\u671F\u516D"], 5 | aMonStr: ["\u4E00\u6708","\u4E8C\u6708","\u4E09\u6708","\u56DB\u6708","\u4E94\u6708","\u516D\u6708","\u4E03\u6708","\u516B\u6708","\u4E5D\u6708","\u5341\u6708","\u5341\u4E00","\u5341\u4E8C"], 6 | aLongMonStr: ["\u4E00\u6708","\u4E8C\u6708","\u4E09\u6708","\u56DB\u6708","\u4E94\u6708","\u516D\u6708","\u4E03\u6708","\u516B\u6708","\u4E5D\u6708","\u5341\u6708","\u5341\u4E00\u6708","\u5341\u4E8C\u6708"], 7 | clearStr: "\u6E05\u7A7A", 8 | todayStr: "\u4ECA\u5929", 9 | okStr: "\u78BA\u5B9A", 10 | updateStr: "\u78BA\u5B9A", 11 | timeStr: "\u6642\u9593", 12 | quickStr: "\u5FEB\u901F\u9078\u64C7", 13 | err_1: '\u6700\u5C0F\u65E5\u671F\u4E0D\u80FD\u5927\u65BC\u6700\u5927\u65E5\u671F!' 14 | } -------------------------------------------------------------------------------- /WebRoot/js/My97DatePicker/skin/WdatePicker.css: -------------------------------------------------------------------------------- 1 | .Wdate{ 2 | border:#999 1px solid; 3 | height:20px; 4 | background:#fff url(datePicker.gif) no-repeat right; 5 | } 6 | 7 | .WdateFmtErr{ 8 | font-weight:bold; 9 | color:red; 10 | } -------------------------------------------------------------------------------- /WebRoot/js/My97DatePicker/skin/datePicker.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/js/My97DatePicker/skin/datePicker.gif -------------------------------------------------------------------------------- /WebRoot/js/My97DatePicker/skin/default/img.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/js/My97DatePicker/skin/default/img.gif -------------------------------------------------------------------------------- /WebRoot/js/My97DatePicker/skin/whyGreen/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/js/My97DatePicker/skin/whyGreen/bg.jpg -------------------------------------------------------------------------------- /WebRoot/js/My97DatePicker/skin/whyGreen/img.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/js/My97DatePicker/skin/whyGreen/img.gif -------------------------------------------------------------------------------- /WebRoot/js/ajax.js: -------------------------------------------------------------------------------- 1 | 2 | function AJAX() 3 | { 4 | this.Http = false; 5 | this.Http = this.createXMLHttpRequest(); 6 | this.value = null; 7 | this.xmlValue = null; 8 | this.state = false; 9 | } 10 | AJAX.prototype.author = function() 11 | { 12 | alert("ajax for liyuanchao\n2007-12-01"); 13 | } 14 | AJAX.prototype.help = function() 15 | { 16 | var str = "var ajax = new AJAX();\n"; 17 | str += "ajax.post(url);\n"; 18 | str += "if(ajax.isOK()) \n{\n var value = ajax.getValue();\n}"; 19 | alert(str); 20 | } 21 | AJAX.prototype.createXMLHttpRequest = function() 22 | { 23 | if(window.ActiveXObject) 24 | return new ActiveXObject("Microsoft.XMLHTTP"); 25 | else if(window.XMLHttpRequest) 26 | return new XMLHttpRequest(); 27 | } 28 | AJAX.prototype.post = function(url) 29 | { 30 | this.Http.open("POST", url, false); 31 | this.Http.send(null); 32 | if(this.Http.readyState==4) 33 | { 34 | if(this.Http.status==200) 35 | { 36 | this.state = true; 37 | this.value = this.Http.responseText; 38 | this.xmlValue = this.Http.responseXML; 39 | } 40 | } 41 | } 42 | AJAX.prototype.getValue = function() 43 | { 44 | return this.value; 45 | } 46 | AJAX.prototype.getXmlValue = function() 47 | { 48 | return this.xmlValue; 49 | } 50 | AJAX.prototype.isOK = function() 51 | { 52 | return this.state; 53 | } 54 | -------------------------------------------------------------------------------- /WebRoot/js/dialogclose.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/js/dialogclose.gif -------------------------------------------------------------------------------- /WebRoot/left_jiaoshi.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="utf-8"%> 2 | <%request.setCharacterEncoding("utf-8");%> 3 | 4 | 5 | 6 | 7 | 左侧导航 8 | 9 | 10 | 38 | 39 | 40 |
41 | 77 | 78 |
79 | 80 | 97 | 98 | -------------------------------------------------------------------------------- /WebRoot/liuyanban_detail.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="utf-8"%> 2 | <%@ page language="java" import="java.sql.*" %> 3 | 4 | 5 | 6 | 留言板详细 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 留言板详细: 15 |

16 | 17 | 18 | 19 | 20 | 21 |
学号:${liuyanban.xuehao} 姓名:${liuyanban.xingming}
班级:${liuyanban.banji} 留言内容:${liuyanban.liuyanneirong}
回复:${liuyanban.huifu}   
 
22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /WebRoot/liuyanban_list_yanben.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/liuyanban_list_yanben.jsp -------------------------------------------------------------------------------- /WebRoot/liuyanban_listxls.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/liuyanban_listxls.jsp -------------------------------------------------------------------------------- /WebRoot/login.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="utf-8"%> 2 | 3 | <%@taglib prefix="s" uri="/struts-tags"%> 4 | <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%> 5 | <% 6 | String path = request.getContextPath(); 7 | String basePath = request.getScheme() + "://" + request.getServerName() + ":" + request.getServerPort() + path + "/"; 8 | %> 9 | 10 | 11 | 12 | 无标题文档 13 | 14 | 15 | 16 | 23 | 24 | 25 | 26 | 41 | 42 | 57 | 58 | 101 | 102 | 103 | -------------------------------------------------------------------------------- /WebRoot/logout.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="utf-8"%> 2 | <% 3 | String path = request.getContextPath(); 4 | String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; 5 | %> 6 | 7 | 8 | 9 | 10 | 11 | 12 | My JSP 'adminyanzheng.jsp' starting page 13 | 14 | 15 | 16 | 17 | 18 | <% 19 | 20 | 21 | session.invalidate(); 22 | response.sendRedirect("login.jsp"); 23 | 24 | 25 | %> 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /WebRoot/main.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="utf-8"%> 2 | <%request.setCharacterEncoding("utf-8");%> 3 | 4 | 5 | 6 | 7 | 8 | 综合素质测评 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | <body> 18 | </body> 19 | 20 | -------------------------------------------------------------------------------- /WebRoot/mod.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> 2 | <%@ page language="java" import="java.sql.*" %> 3 | 4 | <%@ page isELIgnored="false" %> 5 | 6 | 7 | 8 | 9 | 修改密码 10 | 11 | 12 | 13 | 14 | 15 | 16 | 48 | <% 49 | if(request.getParameter("updt")!=null) 50 | { 51 | String sql=""; 52 | sql="select id from allusers where username='"+request.getSession().getAttribute("username")+"' and pwd='"+request.getParameter("ymm")+"'"; 53 | ResultSet RS_result=connDbBean.executeQuery(sql); 54 | if(RS_result.next()) 55 | { 56 | sql="update allusers set pwd='"+request.getParameter("xmm1")+"' where username='"+request.getSession().getAttribute("username")+"' "; 57 | connDbBean.hsgexecute(sql); 58 | out.print(""); 59 | } 60 | else 61 | { 62 | out.print(""); 63 | } 64 | } 65 | %> 66 | 67 |
68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 88 | 89 |
修改密码
原密码:
新密码:
确认密码:
86 | 87 |
90 |
91 | 92 | 93 | 94 | 95 | 96 | 97 | -------------------------------------------------------------------------------- /WebRoot/mygo.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="utf-8"%> 2 | 3 | 4 | 5 | 6 | 7 | 8 | <% 9 | if(request.getSession().getAttribute("cx").equals("超级管理员") || request.getSession().getAttribute("cx").equals("普通管理员")){response.sendRedirect("left_guanliyuan.jsp");} if(request.getSession().getAttribute("cx").equals("教师")){response.sendRedirect("left_jiaoshi.jsp");} if(request.getSession().getAttribute("cx").equals("学生")){response.sendRedirect("left_xuesheng.jsp");} 10 | %> 11 | 12 | -------------------------------------------------------------------------------- /WebRoot/nenglijiafen_detail.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="utf-8"%> 2 | <%@ page language="java" import="java.sql.*" %> 3 | 4 | 5 | 6 | 能力加分详细 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 能力加分详细: 15 |

16 | 17 | 18 | 19 | 20 | 21 |
学号:${nenglijiafen.xuehao} 姓名:${nenglijiafen.xingming}
班级:${nenglijiafen.banji} 是否过英语四级:${nenglijiafen.shifouguoyingyusiji}
是否过英语六级:${nenglijiafen.shifouguoyingyuliuji} 是否取得教师资格证:${nenglijiafen.shifouqudejiaoshizigezheng}
是否为应征入伍返校学习者:${nenglijiafen.shifouweiyingzhengruwufanxiaoxuexizhe} 服役期间是否立功:${nenglijiafen.fuyiqijianshifouligong}
其它:${nenglijiafen.qita} 加分数:${nenglijiafen.jiafenshu}
 
22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /WebRoot/nenglijiafen_list_yanben.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/nenglijiafen_list_yanben.jsp -------------------------------------------------------------------------------- /WebRoot/nenglijiafen_listxls.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/nenglijiafen_listxls.jsp -------------------------------------------------------------------------------- /WebRoot/postback.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="utf-8"%> 2 | 3 | 4 | 5 | 6 | 跳转去向 7 | 8 | 9 |

 

10 |

 

11 |

 

12 |

13 | 17 | 18 |

19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /WebRoot/sh.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> 2 | <%@ page language="java" import="java.sql.*" %> 3 | 4 | <%@ page isELIgnored="false" %> 5 | 6 | 7 | <% 8 | String yuan=request.getParameter("yuan"); 9 | String id=request.getParameter("id"); 10 | String tablename=request.getParameter("tablename"); 11 | String sql=""; 12 | if(yuan.equals("是")) 13 | { 14 | sql="update "+request.getParameter("tablename")+" set issh='否' where id="+request.getParameter("id"); 15 | } 16 | else 17 | { 18 | sql="update "+request.getParameter("tablename")+" set issh='是' where id="+request.getParameter("id"); 19 | } 20 | 21 | 22 | connDbBean.hsgexecute(sql); 23 | out.print(""); 24 | 25 | 26 | %> 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /WebRoot/sh2.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="utf-8"%> 2 | <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%> 3 | <%@ page language="java" import="java.sql.*" %> 4 | 5 | 6 | 7 | 8 | 9 | 审核 10 | 11 | 12 | 13 | <% 14 | if(request.getParameter("ac")!=null){ 15 | String sql; 16 | sql="update "+request.getParameter("tablename")+" set issh='"+request.getParameter("issh")+"',shhf='"+request.getParameter("shhf")+"' where id="+request.getParameter("id"); 17 | connDbBean.hsgexecute(sql); 18 | out.print(""); 19 | } 20 | 21 | %> 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 | 32 | 38 | 39 | 40 | 41 | 42 | 43 | 46 | 47 | 48 | 50 | 51 |
在线审核
审核结果: 37 | ">">
审核回复:
49 |
52 |
53 | 54 | 55 | 56 | 57 | -------------------------------------------------------------------------------- /WebRoot/sy.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="utf-8"%> 2 | <%request.setCharacterEncoding("utf-8");%> 3 | 4 | 5 | 6 | 7 | 8 | 综合素质测评 9 | 10 | 17 | 18 | 19 | 20 | 22 | 23 | 24 | 26 | 27 | 28 | 29 | 30 | 31 | 33 | 34 | 39 | 40 | 41 | 42 | 44 | 45 | 46 | 47 | 48 | 49 | 51 | 52 | 53 | 54 | 56 | 57 | 58 |
系统基本信息
当前用户:${sessionScope.username}您的权限:${sessionScope.cx}
当前日期:<%java.util.Date date = new java.util.Date(); 35 | java.text.SimpleDateFormat format = new java.text.SimpleDateFormat("yyyy-MM-dd", java.util.Locale.CHINA); 36 | 37 | String result = format.format(date); 38 | out.print(result);%>您的IP:<%=request.getRemoteAddr() %>
浏览器版本:<%=request.getHeader("User-Agent")%>操作系统:<%=System.getProperty("os.name")%>
服务器端口:<%=request.getServerPort()%>开发日期:<% 55 | out.print(result);%>
59 |

 

60 | 61 | 62 | 64 | 65 | 66 | 68 | 69 | 70 | 71 | 73 | 74 | 75 | 76 | 78 | 79 | 80 | 81 | 82 |
综合素质测评
系统作者:xxxxxx
指导老师:xxxxxxx
联系方式:xxxxxxxxxxxxxxx
83 |

 

84 |

 

85 | 86 | 87 | 88 | -------------------------------------------------------------------------------- /WebRoot/top.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="utf-8"%> 2 | <%request.setCharacterEncoding("utf-8");%> 3 | 4 | 5 | 6 | 7 | 8 | <% 9 | if((String)request.getSession().getAttribute("username")==null || (String)request.getSession().getAttribute("username")=="") 10 | { 11 | out.print(""); 12 | out.close(); 13 | } 14 | %> 15 | 16 | 17 | 18 | 36 | 37 |
19 | 20 | 27 | 28 | 34 | 35 |
21 | 22 | 25 | 26 |
23 |
综合素质测评
24 |
29 | 30 | 31 | 32 | 33 |
当前用户:${sessionScope.username}  权限:${sessionScope.cx}    退出
38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /WebRoot/upload.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="utf-8"%> 2 | <% 3 | String path = request.getContextPath(); 4 | String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; 5 | %> 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 26 | 27 | 28 | 29 |
" name="formAdd" method="post" enctype="multipart/form-data"> 30 | 31 | 32 |
33 | 34 | 35 | -------------------------------------------------------------------------------- /WebRoot/upload/1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/upload/1.zip -------------------------------------------------------------------------------- /WebRoot/upload/nopic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/upload/nopic.jpg -------------------------------------------------------------------------------- /WebRoot/upload/nopic1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/upload/nopic1.jpg -------------------------------------------------------------------------------- /WebRoot/upload/nopic2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/upload/nopic2.jpg -------------------------------------------------------------------------------- /WebRoot/upload/nopic3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/upload/nopic3.jpg -------------------------------------------------------------------------------- /WebRoot/upload/nopic4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/upload/nopic4.jpg -------------------------------------------------------------------------------- /WebRoot/upload/nopic5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/upload/nopic5.jpg -------------------------------------------------------------------------------- /WebRoot/upload_re.jsp: -------------------------------------------------------------------------------- 1 | <%@ page contentType="text/html;charset=utf-8" language="java" import="com.jspsmart.upload.*"%> 2 | <%@ page import="com.jspsmart.upload.*"%> 3 | <%@ page import="java.util.*"%> 4 | <% 5 | String path = request.getContextPath(); 6 | %> 7 | <% 8 | 9 | String newFile1Name=null; 10 | String file_name=null; 11 | 12 | SmartUpload mySmartUpload = new SmartUpload(); 13 | 14 | //初始化上传 15 | mySmartUpload.initialize(pageContext); 16 | 17 | //只允许上载此类文件 18 | try 19 | { 20 | //mySmartUpload.setAllowedFilesList("jpg,Jpg,JPG,GIF,gif,Gif,png"); 21 | mySmartUpload.upload(); 22 | } 23 | catch (Exception e) 24 | { 25 | //out.println(""); 26 | //return; 27 | } 28 | 29 | try 30 | { 31 | com.jspsmart.upload.File myFile = mySmartUpload.getFiles().getFile(0); 32 | if (myFile.isMissing()) 33 | { 34 | out.println(""); 35 | return; 36 | 37 | } 38 | else 39 | { 40 | int file_size = myFile.getSize(); //取得文件的大小 (单位是b) 41 | file_name=myFile.getFileName(); 42 | System.out.println("文件大小:"+file_size+"文件名称:"+file_name); 43 | //if (file_size > 10*1024*1024) 44 | //{ 45 | //out.println(""); 46 | //return; 47 | //} 48 | //else 49 | //{ 50 | newFile1Name=new Date().getTime()+file_name.substring(file_name.indexOf(".")); 51 | System.out.println("新文件名称:"+newFile1Name); 52 | 53 | String saveurl = request.getSession().getServletContext().getRealPath("upload"); 54 | 55 | saveurl = saveurl+"/"+newFile1Name; 56 | myFile.saveAs(saveurl, mySmartUpload.SAVE_PHYSICAL); 57 | 58 | // } 59 | } 60 | } 61 | catch (Exception e) 62 | { 63 | e.toString(); 64 | } 65 | %> 66 | 67 | -------------------------------------------------------------------------------- /WebRoot/xueshengchengji_detail.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="utf-8"%> 2 | <%@ page language="java" import="java.sql.*" %> 3 | 4 | 5 | 6 | 学生成绩详细 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 学生成绩详细: 15 |

16 | 17 | 18 | 19 | 20 | 21 |
学号:${xueshengchengji.xuehao} 姓名:${xueshengchengji.xingming}
性别:${xueshengchengji.xingbie} 班级:${xueshengchengji.banji}
学年:${xueshengchengji.xuenian} 学期:${xueshengchengji.xueqi}
科目:${xueshengchengji.kemu} 分数:${xueshengchengji.fenshu}
 
22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /WebRoot/xueshengchengji_list_yanben.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/xueshengchengji_list_yanben.jsp -------------------------------------------------------------------------------- /WebRoot/xueshengchengji_listxls.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/xueshengchengji_listxls.jsp -------------------------------------------------------------------------------- /WebRoot/xueshengxinxi_detail.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="utf-8"%> 2 | <%@ page language="java" import="java.sql.*" %> 3 | 4 | 5 | 6 | 学生信息详细 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 学生信息详细: 15 |

16 | 17 | 18 | 19 | 20 | 21 |
学号:${xueshengxinxi.xuehao} 密码:${xueshengxinxi.mima}
姓名:${xueshengxinxi.xingming} 性别:${xueshengxinxi.xingbie}
身份证:${xueshengxinxi.shenfenzheng} 电话:${xueshengxinxi.dianhua}
班级:${xueshengxinxi.banji} 是否挂科:${xueshengxinxi.shifouguake}
是否参加新媒体设计大赛:${xueshengxinxi.shifoucanjiaxinmeitishejidasai} 是否在贫困库中:${xueshengxinxi.shifouzaipinkunkuzhong}
是否建档立卡:${xueshengxinxi.shifoujiandanglika} 计算出学生操行测评分:${xueshengxinxi.jisuanchuxueshengcaoxingcepingfen}
智育测评得分:${xueshengxinxi.zhiyucepingdefen} 能力加分项得分:${xueshengxinxi.nenglijiafenxiangdefen}
 
22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /WebRoot/xueshengxinxi_list_yanben.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/xueshengxinxi_list_yanben.jsp -------------------------------------------------------------------------------- /WebRoot/xueshengxinxi_listxls.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/xueshengxinxi_listxls.jsp -------------------------------------------------------------------------------- /WebRoot/xueshengxinxi_tj_banji.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> 2 | <%@ page language="java" import="java.sql.*" %> 3 | 4 | <%@ page isELIgnored="false" %> 5 | 6 | 7 | 班级统计 8 | 9 | 10 | 11 | <% 12 | String sql; 13 | int i=0; 14 | String tleixing=""; 15 | sql="select distinct(banji) as ss from xueshengxinxi"; 16 | ResultSet RS_resultxwlb=connDbBean.executeQuery(sql); 17 | while(RS_resultxwlb.next()){ 18 | i++; 19 | tleixing=tleixing+"'"+RS_resultxwlb.getString("ss")+"',"; 20 | } 21 | if(i>0) 22 | { 23 | tleixing=tleixing.substring(0,tleixing.length()-1); 24 | } 25 | String[] b = tleixing.split(","); 26 | String x=""; 27 | String ttz=""; 28 | for(int i2=0;i2 39 |
40 | 76 | 77 | 78 | 79 | 80 | 81 | -------------------------------------------------------------------------------- /WebRoot/xueshengxinxi_tj_xingbie.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> 2 | <%@ page language="java" import="java.sql.*" %> 3 | 4 | <%@ page isELIgnored="false" %> 5 | 6 | 7 | 性别统计 8 | 9 | 10 | 11 | <% 12 | String sql; 13 | int i=0; 14 | String tleixing=""; 15 | sql="select distinct(xingbie) as ss from xueshengxinxi"; 16 | ResultSet RS_resultxwlb=connDbBean.executeQuery(sql); 17 | while(RS_resultxwlb.next()){ 18 | i++; 19 | tleixing=tleixing+"'"+RS_resultxwlb.getString("ss")+"',"; 20 | } 21 | if(i>0) 22 | { 23 | tleixing=tleixing.substring(0,tleixing.length()-1); 24 | } 25 | String[] b = tleixing.split(","); 26 | String x=""; 27 | String ttz=""; 28 | for(int i2=0;i2 39 |
40 | 76 | 77 | 78 | 79 | 80 | 81 | -------------------------------------------------------------------------------- /WebRoot/yonghuzhuce_detail.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="utf-8"%> 2 | <%@ page language="java" import="java.sql.*" %> 3 | 4 | 5 | 6 | 用户注册详细 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 用户注册详细: 15 |

16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 |
用户名:${yonghuzhuce.yonghuming}
密码:${yonghuzhuce.mima}
姓名:${yonghuzhuce.xingming}
性别:${yonghuzhuce.xingbie}
出生年月:${yonghuzhuce.chushengnianyue}
QQ:${yonghuzhuce.QQ}
邮箱:${yonghuzhuce.youxiang}
手机:${yonghuzhuce.shouji}
身份证:${yonghuzhuce.shenfenzheng}
地址:${yonghuzhuce.dizhi}
备注:${yonghuzhuce.beizhu}
 
44 | 45 | 46 | 47 | 48 | -------------------------------------------------------------------------------- /WebRoot/zongheceping_detail.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="utf-8"%> 2 | <%@ page language="java" import="java.sql.*" %> 3 | 4 | 5 | 6 | 综合测评详细 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 综合测评详细: 15 |

16 | 17 | 18 | 19 | 20 | 21 |
学号:${zongheceping.xuehao} 姓名:${zongheceping.xingming}
班级:${zongheceping.banji} 计算出学生操行测评分:${zongheceping.jisuanchuxueshengcaoxingcepingfen}
智育测评得分:${zongheceping.zhiyucepingdefen} 能力加分项得分:${zongheceping.nenglijiafenxiangdefen}
综合得分:${zongheceping.zonghedefen}   
 
22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /WebRoot/zongheceping_list_yanben.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/zongheceping_list_yanben.jsp -------------------------------------------------------------------------------- /WebRoot/zongheceping_listxls.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/WebRoot/zongheceping_listxls.jsp -------------------------------------------------------------------------------- /src/applicationContext.xml: -------------------------------------------------------------------------------- 1 |  2 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | -------------------------------------------------------------------------------- /src/com/controller/IndexController.java: -------------------------------------------------------------------------------- 1 | package com.controller; 2 | 3 | import java.io.File; 4 | 5 | import java.io.IOException; 6 | import java.sql.Timestamp; 7 | import java.util.HashMap; 8 | import java.util.List; 9 | import java.util.Map; 10 | 11 | import javax.annotation.Resource; 12 | import javax.servlet.http.HttpServletRequest; 13 | import javax.servlet.http.HttpSession; 14 | 15 | import org.springframework.stereotype.Controller; 16 | import org.springframework.ui.ModelMap; 17 | import org.springframework.web.bind.annotation.RequestMapping; 18 | import org.springframework.web.bind.annotation.RequestParam; 19 | import org.springframework.web.multipart.MultipartFile; 20 | 21 | 22 | import com.entity.Xinwentongzhi; 23 | import com.entity.Yonghuzhuce; 24 | //jixacxishxu1 25 | 26 | import com.server.XinwentongzhiServer; 27 | import com.server.YonghuzhuceServer; 28 | //jixacxishxu2 29 | 30 | import com.util.PageBean; 31 | 32 | @Controller 33 | public class IndexController { 34 | 35 | 36 | @Resource 37 | private XinwentongzhiServer xinwentongzhiService; 38 | @Resource 39 | private YonghuzhuceServer yonghuzhuceServer; 40 | //jixacxishxu3 41 | 42 | 43 | 44 | // 首页显示内容 45 | @RequestMapping("index.do") 46 | public String showIndex(ModelMap map){ 47 | 48 | List syxinwentongzhi1=xinwentongzhiService.getsyxinwentongzhi1(null); 49 | List syxinwentongzhi2=xinwentongzhiService.getsyxinwentongzhi2(null); 50 | List syxinwentongzhi3=xinwentongzhiService.getsyxinwentongzhi3(null); 51 | 52 | List syyonghuzhuce1=yonghuzhuceServer.getsyyonghuzhuce1(null); 53 | //jixacxishxu4 54 | 55 | map.put("syxinwentongzhi1", syxinwentongzhi1); 56 | map.put("syxinwentongzhi2", syxinwentongzhi2); 57 | map.put("syxinwentongzhi3", syxinwentongzhi3); 58 | map.put("syyonghuzhuce1", syyonghuzhuce1); 59 | //jixacxishxu5 60 | 61 | return "default"; 62 | } 63 | 64 | 65 | 66 | 67 | } 68 | -------------------------------------------------------------------------------- /src/com/controller/XinwentongzhiController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/src/com/controller/XinwentongzhiController.java -------------------------------------------------------------------------------- /src/com/controller/hsgloginController.java: -------------------------------------------------------------------------------- 1 | package com.controller; 2 | 3 | import java.io.File; 4 | import java.io.IOException; 5 | 6 | import java.sql.Timestamp; 7 | import java.util.ArrayList; 8 | import java.util.HashMap; 9 | import java.util.List; 10 | import java.util.Map; 11 | import java.io.PrintWriter; 12 | 13 | import javax.annotation.Resource; 14 | import javax.servlet.http.HttpServletRequest; 15 | import javax.servlet.http.HttpServletResponse; 16 | import javax.servlet.http.HttpSession; 17 | 18 | import org.springframework.stereotype.Controller; 19 | import org.springframework.ui.ModelMap; 20 | import org.springframework.web.bind.annotation.RequestMapping; 21 | import org.springframework.web.bind.annotation.RequestParam; 22 | import org.springframework.web.multipart.MultipartFile; 23 | 24 | import com.entity.Allusers; 25 | import com.server.AllusersServer; 26 | 27 | 28 | import com.util.PageBean; 29 | import net.sf.json.JSONObject; 30 | 31 | @Controller 32 | public class hsgloginController { 33 | @Resource 34 | private AllusersServer allusersService; 35 | 36 | 37 | 38 | 39 | 40 | @RequestMapping("hsglogin.do") 41 | public String checkAllusersLogin(Allusers allusers, HttpSession session) { 42 | Map u=new HashMap(); 43 | System.out.println("name===" + allusers.getUsername()); 44 | u.put("username",allusers.getUsername()); 45 | //u.put("utype", "用户"); 46 | //Md5.MD5HexEncode(user.getPassword()) 47 | u.put("pwd",allusers.getPwd()); 48 | allusers = allusersService.allusersLogin(u); 49 | if (allusers != null) { 50 | session.setAttribute("username", allusers); 51 | System.out.println("username=" + allusers); 52 | session.removeAttribute("suc"); 53 | return "redirect:index.do"; 54 | } else { 55 | System.out.println("usernafwfwwme="); 56 | session.setAttribute("suc", "登录失败!用户名或密码错误!"); 57 | return "login"; 58 | } 59 | 60 | } 61 | } 62 | -------------------------------------------------------------------------------- /src/com/dao/AllusersMapper.java: -------------------------------------------------------------------------------- 1 | package com.dao; 2 | 3 | import java.util.List; 4 | import java.util.Map; 5 | 6 | import com.entity.Allusers; 7 | 8 | 9 | public interface AllusersMapper { 10 | int deleteByPrimaryKey(Integer id); 11 | 12 | int insert(Allusers record); 13 | 14 | int insertSelective(Allusers record); 15 | 16 | Allusers selectByPrimaryKey(Integer id); 17 | 18 | int updateByPrimaryKeySelective(Allusers record); 19 | 20 | int updateByPrimaryKey(Allusers record); 21 | public Allusers quchongAllusers(Map uname); 22 | public List getAll(Map map); 23 | public int getCount(Map po); 24 | public List getByPage(Map map); 25 | public List select(Map map); 26 | 27 | public Allusers allusersLogin(Map po); 28 | // 所有List 29 | } 30 | 31 | -------------------------------------------------------------------------------- /src/com/dao/JiangchengxinxiMapper.java: -------------------------------------------------------------------------------- 1 | package com.dao; 2 | 3 | import java.util.List; 4 | import java.util.Map; 5 | 6 | import com.entity.Jiangchengxinxi; 7 | 8 | public interface JiangchengxinxiMapper { 9 | int deleteByPrimaryKey(Integer id); 10 | 11 | int insert(Jiangchengxinxi record); 12 | 13 | int insertSelective(Jiangchengxinxi record); 14 | 15 | Jiangchengxinxi selectByPrimaryKey(Integer id); 16 | 17 | int updateByPrimaryKeySelective(Jiangchengxinxi record); 18 | 19 | int updateByPrimaryKey(Jiangchengxinxi record); 20 | public Jiangchengxinxi quchongJiangchengxinxi(Map lururen); 21 | public List getAll(Map map); 22 | public List getsyjiangchengxinxi1(Map map); 23 | public List getsyjiangchengxinxi3(Map map); 24 | public List getsyjiangchengxinxi2(Map map); 25 | public int getCount(Map po); 26 | public List getByPage(Map map); 27 | public List select(Map map); 28 | // 所有List 29 | } 30 | 31 | -------------------------------------------------------------------------------- /src/com/dao/JiaoshixinxiMapper.java: -------------------------------------------------------------------------------- 1 | package com.dao; 2 | 3 | import java.util.List; 4 | import java.util.Map; 5 | 6 | import com.entity.Jiaoshixinxi; 7 | 8 | public interface JiaoshixinxiMapper { 9 | int deleteByPrimaryKey(Integer id); 10 | 11 | int insert(Jiaoshixinxi record); 12 | 13 | int insertSelective(Jiaoshixinxi record); 14 | 15 | Jiaoshixinxi selectByPrimaryKey(Integer id); 16 | 17 | int updateByPrimaryKeySelective(Jiaoshixinxi record); 18 | 19 | int updateByPrimaryKey(Jiaoshixinxi record); 20 | public Jiaoshixinxi quchongJiaoshixinxi(Map gonghao); 21 | public List getAll(Map map); 22 | public List getsyjiaoshixinxi1(Map map); 23 | public List getsyjiaoshixinxi3(Map map); 24 | public List getsyjiaoshixinxi2(Map map); 25 | public int getCount(Map po); 26 | public List getByPage(Map map); 27 | public List select(Map map); 28 | // 所有List 29 | } 30 | 31 | -------------------------------------------------------------------------------- /src/com/dao/LiuyanbanMapper.java: -------------------------------------------------------------------------------- 1 | package com.dao; 2 | 3 | import java.util.List; 4 | import java.util.Map; 5 | 6 | import com.entity.Liuyanban; 7 | 8 | public interface LiuyanbanMapper { 9 | int deleteByPrimaryKey(Integer id); 10 | 11 | int insert(Liuyanban record); 12 | 13 | int insertSelective(Liuyanban record); 14 | 15 | Liuyanban selectByPrimaryKey(Integer id); 16 | 17 | int updateByPrimaryKeySelective(Liuyanban record); 18 | int updateByPrimaryKeySelectivelb(Liuyanban record); 19 | int updateByPrimaryKey(Liuyanban record); 20 | public Liuyanban quchongLiuyanban(Map xuehao); 21 | public List getAll(Map map); 22 | public List getsyliuyanban1(Map map); 23 | public List getsyliuyanban3(Map map); 24 | public List getsyliuyanban2(Map map); 25 | public int getCount(Map po); 26 | public List getByPage(Map map); 27 | public List select(Map map); 28 | // 所有List 29 | } 30 | 31 | -------------------------------------------------------------------------------- /src/com/dao/NenglijiafenMapper.java: -------------------------------------------------------------------------------- 1 | package com.dao; 2 | 3 | import java.util.List; 4 | import java.util.Map; 5 | 6 | import com.entity.Nenglijiafen; 7 | 8 | public interface NenglijiafenMapper { 9 | int deleteByPrimaryKey(Integer id); 10 | 11 | int insert(Nenglijiafen record); 12 | 13 | int insertSelective(Nenglijiafen record); 14 | 15 | Nenglijiafen selectByPrimaryKey(Integer id); 16 | 17 | int updateByPrimaryKeySelective(Nenglijiafen record); 18 | 19 | int updateByPrimaryKey(Nenglijiafen record); 20 | public Nenglijiafen quchongNenglijiafen(Map xuehao); 21 | public List getAll(Map map); 22 | public List getsynenglijiafen1(Map map); 23 | public List getsynenglijiafen3(Map map); 24 | public List getsynenglijiafen2(Map map); 25 | public int getCount(Map po); 26 | public List getByPage(Map map); 27 | public List select(Map map); 28 | // 所有List 29 | } 30 | 31 | -------------------------------------------------------------------------------- /src/com/dao/PinglunMapper.java: -------------------------------------------------------------------------------- 1 | package com.dao; 2 | 3 | import java.util.List; 4 | import java.util.Map; 5 | 6 | import com.entity.Pinglun; 7 | 8 | public interface PinglunMapper { 9 | int deleteByPrimaryKey(Integer id); 10 | 11 | int insert(Pinglun record); 12 | 13 | int insertSelective(Pinglun record); 14 | 15 | Pinglun selectByPrimaryKey(Integer id); 16 | 17 | int updateByPrimaryKeySelective(Pinglun record); 18 | 19 | int updateByPrimaryKey(Pinglun record); 20 | public Pinglun quchongPinglun(Map uname); 21 | public List getAll(Map map); 22 | public int getCount(Map po); 23 | public List getByPage(Map map); 24 | public List select(Map map); 25 | // 所有List 26 | } 27 | 28 | -------------------------------------------------------------------------------- /src/com/dao/ShoucangjiluMapper.java: -------------------------------------------------------------------------------- 1 | package com.dao; 2 | 3 | import java.util.List; 4 | import java.util.Map; 5 | 6 | import com.entity.Shoucangjilu; 7 | 8 | public interface ShoucangjiluMapper { 9 | int deleteByPrimaryKey(Integer id); 10 | 11 | int insert(Shoucangjilu record); 12 | 13 | int insertSelective(Shoucangjilu record); 14 | 15 | Shoucangjilu selectByPrimaryKey(Integer id); 16 | 17 | int updateByPrimaryKeySelective(Shoucangjilu record); 18 | 19 | int updateByPrimaryKey(Shoucangjilu record); 20 | public Shoucangjilu quchongShoucangjilu(Map uname); 21 | public List getAll(Map map); 22 | public int getCount(Map po); 23 | public List getByPage(Map map); 24 | public List select(Map map); 25 | // 所有List 26 | } 27 | 28 | -------------------------------------------------------------------------------- /src/com/dao/XinwentongzhiMapper.java: -------------------------------------------------------------------------------- 1 | package com.dao; 2 | 3 | import java.util.List; 4 | import java.util.Map; 5 | 6 | import com.entity.Xinwentongzhi; 7 | 8 | public interface XinwentongzhiMapper { 9 | int deleteByPrimaryKey(Integer id); 10 | 11 | int insert(Xinwentongzhi record); 12 | 13 | int insertSelective(Xinwentongzhi record); 14 | 15 | Xinwentongzhi selectByPrimaryKey(Integer id); 16 | 17 | int updateByPrimaryKeySelective(Xinwentongzhi record); 18 | 19 | int updateByPrimaryKey(Xinwentongzhi record); 20 | public Xinwentongzhi quchongXinwentongzhi(Map uname); 21 | public List getAll(Map map); 22 | 23 | public List getsyxinwentongzhi1(Map map); 24 | public List getsyxinwentongzhi2(Map map); 25 | public List getsyxinwentongzhi3(Map map); 26 | 27 | public int getCount(Map po); 28 | public List getByPage(Map map); 29 | public List select(Map map); 30 | // 所有List 31 | } 32 | 33 | -------------------------------------------------------------------------------- /src/com/dao/XueshengchengjiMapper.java: -------------------------------------------------------------------------------- 1 | package com.dao; 2 | 3 | import java.util.List; 4 | import java.util.Map; 5 | 6 | import com.entity.Xueshengchengji; 7 | 8 | public interface XueshengchengjiMapper { 9 | int deleteByPrimaryKey(Integer id); 10 | 11 | int insert(Xueshengchengji record); 12 | 13 | int insertSelective(Xueshengchengji record); 14 | 15 | Xueshengchengji selectByPrimaryKey(Integer id); 16 | 17 | int updateByPrimaryKeySelective(Xueshengchengji record); 18 | 19 | int updateByPrimaryKey(Xueshengchengji record); 20 | public Xueshengchengji quchongXueshengchengji(Map xuehao); 21 | public List getAll(Map map); 22 | public List getsyxueshengchengji1(Map map); 23 | public List getsyxueshengchengji3(Map map); 24 | public List getsyxueshengchengji2(Map map); 25 | public int getCount(Map po); 26 | public List getByPage(Map map); 27 | public List select(Map map); 28 | // 所有List 29 | } 30 | 31 | -------------------------------------------------------------------------------- /src/com/dao/XueshengxinxiMapper.java: -------------------------------------------------------------------------------- 1 | package com.dao; 2 | 3 | import java.util.List; 4 | import java.util.Map; 5 | 6 | import com.entity.Xueshengxinxi; 7 | 8 | public interface XueshengxinxiMapper { 9 | int deleteByPrimaryKey(Integer id); 10 | 11 | int insert(Xueshengxinxi record); 12 | 13 | int insertSelective(Xueshengxinxi record); 14 | 15 | Xueshengxinxi selectByPrimaryKey(Integer id); 16 | 17 | int updateByPrimaryKeySelective(Xueshengxinxi record); 18 | 19 | int updateByPrimaryKey(Xueshengxinxi record); 20 | public Xueshengxinxi quchongXueshengxinxi(Map xuehao); 21 | public List getAll(Map map); 22 | public List getsyxueshengxinxi1(Map map); 23 | public List getsyxueshengxinxi3(Map map); 24 | public List getsyxueshengxinxi2(Map map); 25 | public int getCount(Map po); 26 | public List getByPage(Map map); 27 | public List select(Map map); 28 | // 所有List 29 | } 30 | 31 | -------------------------------------------------------------------------------- /src/com/dao/YonghuzhuceMapper.java: -------------------------------------------------------------------------------- 1 | package com.dao; 2 | 3 | import java.util.List; 4 | import java.util.Map; 5 | 6 | import com.entity.Yonghuzhuce; 7 | 8 | public interface YonghuzhuceMapper { 9 | int deleteByPrimaryKey(Integer id); 10 | 11 | int insert(Yonghuzhuce record); 12 | 13 | int insertSelective(Yonghuzhuce record); 14 | 15 | Yonghuzhuce selectByPrimaryKey(Integer id); 16 | 17 | int updateByPrimaryKeySelective(Yonghuzhuce record); 18 | 19 | int updateByPrimaryKey(Yonghuzhuce record); 20 | public Yonghuzhuce quchongYonghuzhuce(Map yonghuming); 21 | public List getAll(Map map); 22 | public List getsyyonghuzhuce1(Map map); 23 | public List getsyyonghuzhuce3(Map map); 24 | public List getsyyonghuzhuce2(Map map); 25 | public int getCount(Map po); 26 | public List getByPage(Map map); 27 | public List select(Map map); 28 | // 所有List 29 | } 30 | 31 | -------------------------------------------------------------------------------- /src/com/dao/YouqinglianjieMapper.java: -------------------------------------------------------------------------------- 1 | package com.dao; 2 | 3 | import java.util.List; 4 | import java.util.Map; 5 | 6 | import com.entity.Youqinglianjie; 7 | 8 | public interface YouqinglianjieMapper { 9 | int deleteByPrimaryKey(Integer id); 10 | 11 | int insert(Youqinglianjie record); 12 | 13 | int insertSelective(Youqinglianjie record); 14 | 15 | Youqinglianjie selectByPrimaryKey(Integer id); 16 | 17 | int updateByPrimaryKeySelective(Youqinglianjie record); 18 | 19 | int updateByPrimaryKey(Youqinglianjie record); 20 | public Youqinglianjie quchongYouqinglianjie(Map wangzhanmingcheng); 21 | public List getAll(Map map); 22 | public List getsyyouqinglianjie1(Map map); 23 | public List getsyyouqinglianjie3(Map map); 24 | public List getsyyouqinglianjie2(Map map); 25 | public int getCount(Map po); 26 | public List getByPage(Map map); 27 | public List select(Map map); 28 | // 所有List 29 | } 30 | 31 | -------------------------------------------------------------------------------- /src/com/dao/ZonghecepingMapper.java: -------------------------------------------------------------------------------- 1 | package com.dao; 2 | 3 | import java.util.List; 4 | import java.util.Map; 5 | 6 | import com.entity.Zongheceping; 7 | 8 | public interface ZonghecepingMapper { 9 | int deleteByPrimaryKey(Integer id); 10 | 11 | int insert(Zongheceping record); 12 | 13 | int insertSelective(Zongheceping record); 14 | 15 | Zongheceping selectByPrimaryKey(Integer id); 16 | 17 | int updateByPrimaryKeySelective(Zongheceping record); 18 | 19 | int updateByPrimaryKey(Zongheceping record); 20 | public Zongheceping quchongZongheceping(Map xuehao); 21 | public List getAll(Map map); 22 | public List getsyzongheceping1(Map map); 23 | public List getsyzongheceping3(Map map); 24 | public List getsyzongheceping2(Map map); 25 | public int getCount(Map po); 26 | public List getByPage(Map map); 27 | public List select(Map map); 28 | // 所有List 29 | } 30 | 31 | -------------------------------------------------------------------------------- /src/com/entity/Allusers.java: -------------------------------------------------------------------------------- 1 | package com.entity; 2 | 3 | public class Allusers { 4 | private Integer id; 5 | private String username; 6 | private String pwd; 7 | private String cx; 8 | 9 | private String addtime; 10 | 11 | 12 | 13 | public Integer getId() { 14 | return id; 15 | } 16 | public void setId(Integer id) { 17 | this.id = id; 18 | } 19 | 20 | public String getUsername() { 21 | return username; 22 | } 23 | public void setUsername(String username) { 24 | this.username = username == null ? null : username.trim(); 25 | } 26 | public String getPwd() { 27 | return pwd; 28 | } 29 | public void setPwd(String pwd) { 30 | this.pwd = pwd == null ? null : pwd.trim(); 31 | } 32 | public String getCx() { 33 | return cx; 34 | } 35 | public void setCx(String cx) { 36 | this.cx = cx == null ? null : cx.trim(); 37 | } 38 | 39 | 40 | 41 | public String getAddtime() { 42 | return addtime; 43 | } 44 | public void setAddtime(String addtime) { 45 | this.addtime = addtime == null ? null : addtime.trim(); 46 | } 47 | } 48 | // 设置字段信息 49 | -------------------------------------------------------------------------------- /src/com/entity/Jiangchengxinxi.java: -------------------------------------------------------------------------------- 1 | package com.entity; 2 | 3 | public class Jiangchengxinxi { 4 | private Integer id; 5 | private String jiangchengbianhao; 6 | private String jiangchengbiaoti; 7 | private String jiangchengneirong; 8 | private String jiangchengfenshu; 9 | private String shijian; 10 | private String lururen; 11 | 12 | private String addtime; 13 | 14 | 15 | 16 | public Integer getId() { 17 | return id; 18 | } 19 | public void setId(Integer id) { 20 | this.id = id; 21 | } 22 | 23 | public String getJiangchengbianhao() { 24 | return jiangchengbianhao; 25 | } 26 | public void setJiangchengbianhao(String jiangchengbianhao) { 27 | this.jiangchengbianhao = jiangchengbianhao == null ? null : jiangchengbianhao.trim(); 28 | } 29 | public String getJiangchengbiaoti() { 30 | return jiangchengbiaoti; 31 | } 32 | public void setJiangchengbiaoti(String jiangchengbiaoti) { 33 | this.jiangchengbiaoti = jiangchengbiaoti == null ? null : jiangchengbiaoti.trim(); 34 | } 35 | public String getJiangchengneirong() { 36 | return jiangchengneirong; 37 | } 38 | public void setJiangchengneirong(String jiangchengneirong) { 39 | this.jiangchengneirong = jiangchengneirong == null ? null : jiangchengneirong.trim(); 40 | } 41 | public String getJiangchengfenshu() { 42 | return jiangchengfenshu; 43 | } 44 | public void setJiangchengfenshu(String jiangchengfenshu) { 45 | this.jiangchengfenshu = jiangchengfenshu == null ? null : jiangchengfenshu.trim(); 46 | } 47 | public String getShijian() { 48 | return shijian; 49 | } 50 | public void setShijian(String shijian) { 51 | this.shijian = shijian == null ? null : shijian.trim(); 52 | } 53 | public String getLururen() { 54 | return lururen; 55 | } 56 | public void setLururen(String lururen) { 57 | this.lururen = lururen == null ? null : lururen.trim(); 58 | } 59 | 60 | 61 | 62 | public String getAddtime() { 63 | return addtime; 64 | } 65 | public void setAddtime(String addtime) { 66 | this.addtime = addtime == null ? null : addtime.trim(); 67 | } 68 | } 69 | // 设置字段信息 70 | -------------------------------------------------------------------------------- /src/com/entity/Jiaoshixinxi.java: -------------------------------------------------------------------------------- 1 | package com.entity; 2 | 3 | public class Jiaoshixinxi { 4 | private Integer id; 5 | private String gonghao; 6 | private String mima; 7 | private String xingming; 8 | private String xingbie; 9 | private String shenfenzheng; 10 | private String dianhua; 11 | private String zhicheng; 12 | private String beizhu; 13 | 14 | private String addtime; 15 | 16 | 17 | 18 | public Integer getId() { 19 | return id; 20 | } 21 | public void setId(Integer id) { 22 | this.id = id; 23 | } 24 | 25 | public String getGonghao() { 26 | return gonghao; 27 | } 28 | public void setGonghao(String gonghao) { 29 | this.gonghao = gonghao == null ? null : gonghao.trim(); 30 | } 31 | public String getMima() { 32 | return mima; 33 | } 34 | public void setMima(String mima) { 35 | this.mima = mima == null ? null : mima.trim(); 36 | } 37 | public String getXingming() { 38 | return xingming; 39 | } 40 | public void setXingming(String xingming) { 41 | this.xingming = xingming == null ? null : xingming.trim(); 42 | } 43 | public String getXingbie() { 44 | return xingbie; 45 | } 46 | public void setXingbie(String xingbie) { 47 | this.xingbie = xingbie == null ? null : xingbie.trim(); 48 | } 49 | public String getShenfenzheng() { 50 | return shenfenzheng; 51 | } 52 | public void setShenfenzheng(String shenfenzheng) { 53 | this.shenfenzheng = shenfenzheng == null ? null : shenfenzheng.trim(); 54 | } 55 | public String getDianhua() { 56 | return dianhua; 57 | } 58 | public void setDianhua(String dianhua) { 59 | this.dianhua = dianhua == null ? null : dianhua.trim(); 60 | } 61 | public String getZhicheng() { 62 | return zhicheng; 63 | } 64 | public void setZhicheng(String zhicheng) { 65 | this.zhicheng = zhicheng == null ? null : zhicheng.trim(); 66 | } 67 | public String getBeizhu() { 68 | return beizhu; 69 | } 70 | public void setBeizhu(String beizhu) { 71 | this.beizhu = beizhu == null ? null : beizhu.trim(); 72 | } 73 | 74 | 75 | 76 | public String getAddtime() { 77 | return addtime; 78 | } 79 | public void setAddtime(String addtime) { 80 | this.addtime = addtime == null ? null : addtime.trim(); 81 | } 82 | } 83 | // 设置字段信息 84 | -------------------------------------------------------------------------------- /src/com/entity/Liuyanban.java: -------------------------------------------------------------------------------- 1 | package com.entity; 2 | 3 | public class Liuyanban { 4 | private Integer id; 5 | private String xuehao; 6 | private String xingming; 7 | private String banji; 8 | private String liuyanneirong; 9 | private String huifu; 10 | 11 | private String addtime; 12 | 13 | 14 | 15 | public Integer getId() { 16 | return id; 17 | } 18 | public void setId(Integer id) { 19 | this.id = id; 20 | } 21 | 22 | public String getXuehao() { 23 | return xuehao; 24 | } 25 | public void setXuehao(String xuehao) { 26 | this.xuehao = xuehao == null ? null : xuehao.trim(); 27 | } 28 | public String getXingming() { 29 | return xingming; 30 | } 31 | public void setXingming(String xingming) { 32 | this.xingming = xingming == null ? null : xingming.trim(); 33 | } 34 | public String getBanji() { 35 | return banji; 36 | } 37 | public void setBanji(String banji) { 38 | this.banji = banji == null ? null : banji.trim(); 39 | } 40 | public String getLiuyanneirong() { 41 | return liuyanneirong; 42 | } 43 | public void setLiuyanneirong(String liuyanneirong) { 44 | this.liuyanneirong = liuyanneirong == null ? null : liuyanneirong.trim(); 45 | } 46 | public String getHuifu() { 47 | return huifu; 48 | } 49 | public void setHuifu(String huifu) { 50 | this.huifu = huifu == null ? null : huifu.trim(); 51 | } 52 | 53 | 54 | 55 | public String getAddtime() { 56 | return addtime; 57 | } 58 | public void setAddtime(String addtime) { 59 | this.addtime = addtime == null ? null : addtime.trim(); 60 | } 61 | } 62 | // 设置字段信息 63 | -------------------------------------------------------------------------------- /src/com/entity/Nenglijiafen.java: -------------------------------------------------------------------------------- 1 | package com.entity; 2 | 3 | public class Nenglijiafen { 4 | private Integer id; 5 | private String xuehao; 6 | private String xingming; 7 | private String banji; 8 | private String shifouguoyingyusiji; 9 | private String shifouguoyingyuliuji; 10 | private String shifouqudejiaoshizigezheng; 11 | private String shifouweiyingzhengruwufanxiaoxuexizhe; 12 | private String fuyiqijianshifouligong; 13 | private String qita; 14 | private String jiafenshu; 15 | 16 | private String addtime; 17 | 18 | 19 | 20 | public Integer getId() { 21 | return id; 22 | } 23 | public void setId(Integer id) { 24 | this.id = id; 25 | } 26 | 27 | public String getXuehao() { 28 | return xuehao; 29 | } 30 | public void setXuehao(String xuehao) { 31 | this.xuehao = xuehao == null ? null : xuehao.trim(); 32 | } 33 | public String getXingming() { 34 | return xingming; 35 | } 36 | public void setXingming(String xingming) { 37 | this.xingming = xingming == null ? null : xingming.trim(); 38 | } 39 | public String getBanji() { 40 | return banji; 41 | } 42 | public void setBanji(String banji) { 43 | this.banji = banji == null ? null : banji.trim(); 44 | } 45 | public String getShifouguoyingyusiji() { 46 | return shifouguoyingyusiji; 47 | } 48 | public void setShifouguoyingyusiji(String shifouguoyingyusiji) { 49 | this.shifouguoyingyusiji = shifouguoyingyusiji == null ? null : shifouguoyingyusiji.trim(); 50 | } 51 | public String getShifouguoyingyuliuji() { 52 | return shifouguoyingyuliuji; 53 | } 54 | public void setShifouguoyingyuliuji(String shifouguoyingyuliuji) { 55 | this.shifouguoyingyuliuji = shifouguoyingyuliuji == null ? null : shifouguoyingyuliuji.trim(); 56 | } 57 | public String getShifouqudejiaoshizigezheng() { 58 | return shifouqudejiaoshizigezheng; 59 | } 60 | public void setShifouqudejiaoshizigezheng(String shifouqudejiaoshizigezheng) { 61 | this.shifouqudejiaoshizigezheng = shifouqudejiaoshizigezheng == null ? null : shifouqudejiaoshizigezheng.trim(); 62 | } 63 | public String getShifouweiyingzhengruwufanxiaoxuexizhe() { 64 | return shifouweiyingzhengruwufanxiaoxuexizhe; 65 | } 66 | public void setShifouweiyingzhengruwufanxiaoxuexizhe(String shifouweiyingzhengruwufanxiaoxuexizhe) { 67 | this.shifouweiyingzhengruwufanxiaoxuexizhe = shifouweiyingzhengruwufanxiaoxuexizhe == null ? null : shifouweiyingzhengruwufanxiaoxuexizhe.trim(); 68 | } 69 | public String getFuyiqijianshifouligong() { 70 | return fuyiqijianshifouligong; 71 | } 72 | public void setFuyiqijianshifouligong(String fuyiqijianshifouligong) { 73 | this.fuyiqijianshifouligong = fuyiqijianshifouligong == null ? null : fuyiqijianshifouligong.trim(); 74 | } 75 | public String getQita() { 76 | return qita; 77 | } 78 | public void setQita(String qita) { 79 | this.qita = qita == null ? null : qita.trim(); 80 | } 81 | public String getJiafenshu() { 82 | return jiafenshu; 83 | } 84 | public void setJiafenshu(String jiafenshu) { 85 | this.jiafenshu = jiafenshu == null ? null : jiafenshu.trim(); 86 | } 87 | 88 | 89 | 90 | public String getAddtime() { 91 | return addtime; 92 | } 93 | public void setAddtime(String addtime) { 94 | this.addtime = addtime == null ? null : addtime.trim(); 95 | } 96 | } 97 | // 设置字段信息 98 | -------------------------------------------------------------------------------- /src/com/entity/Pinglun.java: -------------------------------------------------------------------------------- 1 | package com.entity; 2 | 3 | public class Pinglun { 4 | private Integer id; 5 | private String xinwenID; 6 | private String pinglunneirong; 7 | private String pinglunren; 8 | private String pingfen; 9 | private String biao; 10 | 11 | private String addtime; 12 | 13 | 14 | 15 | public Integer getId() { 16 | return id; 17 | } 18 | public void setId(Integer id) { 19 | this.id = id; 20 | } 21 | 22 | public String getXinwenID() { 23 | return xinwenID; 24 | } 25 | public void setXinwenID(String xinwenID) { 26 | this.xinwenID = xinwenID == null ? null : xinwenID.trim(); 27 | } 28 | public String getPinglunneirong() { 29 | return pinglunneirong; 30 | } 31 | public void setPinglunneirong(String pinglunneirong) { 32 | this.pinglunneirong = pinglunneirong == null ? null : pinglunneirong.trim(); 33 | } 34 | public String getPinglunren() { 35 | return pinglunren; 36 | } 37 | public void setPinglunren(String pinglunren) { 38 | this.pinglunren = pinglunren == null ? null : pinglunren.trim(); 39 | } 40 | public String getPingfen() { 41 | return pingfen; 42 | } 43 | public void setPingfen(String pingfen) { 44 | this.pingfen = pingfen == null ? null : pingfen.trim(); 45 | } 46 | public String getBiao() { 47 | return biao; 48 | } 49 | public void setBiao(String biao) { 50 | this.biao = biao == null ? null : biao.trim(); 51 | } 52 | 53 | 54 | 55 | public String getAddtime() { 56 | return addtime; 57 | } 58 | public void setAddtime(String addtime) { 59 | this.addtime = addtime == null ? null : addtime.trim(); 60 | } 61 | } 62 | // 设置字段信息 63 | -------------------------------------------------------------------------------- /src/com/entity/Shoucangjilu.java: -------------------------------------------------------------------------------- 1 | package com.entity; 2 | 3 | public class Shoucangjilu { 4 | private Integer id; 5 | private String username; 6 | private String xwid; 7 | private String ziduan; 8 | private String biao; 9 | private String biaoj; 10 | private String addtime; 11 | 12 | 13 | 14 | public Integer getId() { 15 | return id; 16 | } 17 | public void setId(Integer id) { 18 | this.id = id; 19 | } 20 | 21 | public String getUsername() { 22 | return username; 23 | } 24 | public void setUsername(String username) { 25 | this.username = username == null ? null : username.trim(); 26 | } 27 | public String getXwid() { 28 | return xwid; 29 | } 30 | public void setXwid(String xwid) { 31 | this.xwid = xwid == null ? null : xwid.trim(); 32 | } 33 | public String getZiduan() { 34 | return ziduan; 35 | } 36 | public void setZiduan(String ziduan) { 37 | this.ziduan = ziduan == null ? null : ziduan.trim(); 38 | } 39 | public String getBiao() { 40 | return biao; 41 | } 42 | public void setBiao(String biao) { 43 | this.biao = biao == null ? null : biao.trim(); 44 | } 45 | public String getBiaoj() { 46 | return biaoj; 47 | } 48 | public void setBiaoj(String biaoj) { 49 | this.biaoj = biaoj == null ? null : biaoj.trim(); 50 | } 51 | 52 | 53 | 54 | public String getAddtime() { 55 | return addtime; 56 | } 57 | public void setAddtime(String addtime) { 58 | this.addtime = addtime == null ? null : addtime.trim(); 59 | } 60 | } 61 | // 设置字段信息 62 | -------------------------------------------------------------------------------- /src/com/entity/Xinwentongzhi.java: -------------------------------------------------------------------------------- 1 | package com.entity; 2 | 3 | public class Xinwentongzhi { 4 | private Integer id; 5 | private String biaoti; 6 | private String leibie; 7 | private String neirong; 8 | private String shouyetupian; 9 | private String dianjilv; 10 | private String tianjiaren; 11 | private String zhaiyao; 12 | private String addtime; 13 | 14 | 15 | 16 | public Integer getId() { 17 | return id; 18 | } 19 | public void setId(Integer id) { 20 | this.id = id; 21 | } 22 | 23 | public String getBiaoti() { 24 | return biaoti; 25 | } 26 | public void setBiaoti(String biaoti) { 27 | this.biaoti = biaoti == null ? null : biaoti.trim(); 28 | } 29 | public String getLeibie() { 30 | return leibie; 31 | } 32 | public void setLeibie(String leibie) { 33 | this.leibie = leibie == null ? null : leibie.trim(); 34 | } 35 | public String getNeirong() { 36 | return neirong; 37 | } 38 | public void setNeirong(String neirong) { 39 | this.neirong = neirong == null ? null : neirong.trim(); 40 | } 41 | public String getShouyetupian() { 42 | return shouyetupian; 43 | } 44 | public void setShouyetupian(String shouyetupian) { 45 | this.shouyetupian = shouyetupian == null ? null : shouyetupian.trim(); 46 | } 47 | public String getDianjilv() { 48 | return dianjilv; 49 | } 50 | public void setDianjilv(String dianjilv) { 51 | this.dianjilv = dianjilv == null ? null : dianjilv.trim(); 52 | } 53 | public String getTianjiaren() { 54 | return tianjiaren; 55 | } 56 | public void setTianjiaren(String tianjiaren) { 57 | this.tianjiaren = tianjiaren == null ? null : tianjiaren.trim(); 58 | } 59 | public String getZhaiyao() { 60 | return zhaiyao; 61 | } 62 | public void setZhaiyao(String zhaiyao) { 63 | this.zhaiyao = zhaiyao == null ? null : zhaiyao.trim(); 64 | } 65 | 66 | 67 | public String getAddtime() { 68 | return addtime; 69 | } 70 | public void setAddtime(String addtime) { 71 | this.addtime = addtime == null ? null : addtime.trim(); 72 | } 73 | } 74 | // 设置字段信息 75 | -------------------------------------------------------------------------------- /src/com/entity/Xueshengchengji.java: -------------------------------------------------------------------------------- 1 | package com.entity; 2 | 3 | public class Xueshengchengji { 4 | private Integer id; 5 | private String xuehao; 6 | private String xingming; 7 | private String xingbie; 8 | private String banji; 9 | private String xuenian; 10 | private String xueqi; 11 | private String kemu; 12 | private String fenshu; 13 | 14 | private String addtime; 15 | 16 | 17 | 18 | public Integer getId() { 19 | return id; 20 | } 21 | public void setId(Integer id) { 22 | this.id = id; 23 | } 24 | 25 | public String getXuehao() { 26 | return xuehao; 27 | } 28 | public void setXuehao(String xuehao) { 29 | this.xuehao = xuehao == null ? null : xuehao.trim(); 30 | } 31 | public String getXingming() { 32 | return xingming; 33 | } 34 | public void setXingming(String xingming) { 35 | this.xingming = xingming == null ? null : xingming.trim(); 36 | } 37 | public String getXingbie() { 38 | return xingbie; 39 | } 40 | public void setXingbie(String xingbie) { 41 | this.xingbie = xingbie == null ? null : xingbie.trim(); 42 | } 43 | public String getBanji() { 44 | return banji; 45 | } 46 | public void setBanji(String banji) { 47 | this.banji = banji == null ? null : banji.trim(); 48 | } 49 | public String getXuenian() { 50 | return xuenian; 51 | } 52 | public void setXuenian(String xuenian) { 53 | this.xuenian = xuenian == null ? null : xuenian.trim(); 54 | } 55 | public String getXueqi() { 56 | return xueqi; 57 | } 58 | public void setXueqi(String xueqi) { 59 | this.xueqi = xueqi == null ? null : xueqi.trim(); 60 | } 61 | public String getKemu() { 62 | return kemu; 63 | } 64 | public void setKemu(String kemu) { 65 | this.kemu = kemu == null ? null : kemu.trim(); 66 | } 67 | public String getFenshu() { 68 | return fenshu; 69 | } 70 | public void setFenshu(String fenshu) { 71 | this.fenshu = fenshu == null ? null : fenshu.trim(); 72 | } 73 | 74 | 75 | 76 | public String getAddtime() { 77 | return addtime; 78 | } 79 | public void setAddtime(String addtime) { 80 | this.addtime = addtime == null ? null : addtime.trim(); 81 | } 82 | } 83 | // 设置字段信息 84 | -------------------------------------------------------------------------------- /src/com/entity/Yonghuzhuce.java: -------------------------------------------------------------------------------- 1 | package com.entity; 2 | 3 | public class Yonghuzhuce { 4 | private Integer id; 5 | private String yonghuming; 6 | private String mima; 7 | private String xingming; 8 | private String xingbie; 9 | private String chushengnianyue; 10 | private String QQ; 11 | private String youxiang; 12 | private String shouji; 13 | private String shenfenzheng; 14 | private String touxiang; 15 | private String dizhi; 16 | private String beizhu; 17 | private String issh; 18 | 19 | private String addtime; 20 | 21 | 22 | 23 | public Integer getId() { 24 | return id; 25 | } 26 | public void setId(Integer id) { 27 | this.id = id; 28 | } 29 | 30 | public String getYonghuming() { 31 | return yonghuming; 32 | } 33 | public void setYonghuming(String yonghuming) { 34 | this.yonghuming = yonghuming == null ? null : yonghuming.trim(); 35 | } 36 | public String getMima() { 37 | return mima; 38 | } 39 | public void setMima(String mima) { 40 | this.mima = mima == null ? null : mima.trim(); 41 | } 42 | public String getXingming() { 43 | return xingming; 44 | } 45 | public void setXingming(String xingming) { 46 | this.xingming = xingming == null ? null : xingming.trim(); 47 | } 48 | public String getXingbie() { 49 | return xingbie; 50 | } 51 | public void setXingbie(String xingbie) { 52 | this.xingbie = xingbie == null ? null : xingbie.trim(); 53 | } 54 | public String getChushengnianyue() { 55 | return chushengnianyue; 56 | } 57 | public void setChushengnianyue(String chushengnianyue) { 58 | this.chushengnianyue = chushengnianyue == null ? null : chushengnianyue.trim(); 59 | } 60 | public String getQQ() { 61 | return QQ; 62 | } 63 | public void setQQ(String QQ) { 64 | this.QQ = QQ == null ? null : QQ.trim(); 65 | } 66 | public String getYouxiang() { 67 | return youxiang; 68 | } 69 | public void setYouxiang(String youxiang) { 70 | this.youxiang = youxiang == null ? null : youxiang.trim(); 71 | } 72 | public String getShouji() { 73 | return shouji; 74 | } 75 | public void setShouji(String shouji) { 76 | this.shouji = shouji == null ? null : shouji.trim(); 77 | } 78 | public String getShenfenzheng() { 79 | return shenfenzheng; 80 | } 81 | public void setShenfenzheng(String shenfenzheng) { 82 | this.shenfenzheng = shenfenzheng == null ? null : shenfenzheng.trim(); 83 | } 84 | public String getTouxiang() { 85 | return touxiang; 86 | } 87 | public void setTouxiang(String touxiang) { 88 | this.touxiang = touxiang == null ? null : touxiang.trim(); 89 | } 90 | public String getDizhi() { 91 | return dizhi; 92 | } 93 | public void setDizhi(String dizhi) { 94 | this.dizhi = dizhi == null ? null : dizhi.trim(); 95 | } 96 | public String getBeizhu() { 97 | return beizhu; 98 | } 99 | public void setBeizhu(String beizhu) { 100 | this.beizhu = beizhu == null ? null : beizhu.trim(); 101 | } 102 | public String getIssh() { 103 | return issh; 104 | } 105 | public void setIssh(String issh) { 106 | this.issh = issh == null ? null : issh.trim(); 107 | } 108 | 109 | 110 | 111 | public String getAddtime() { 112 | return addtime; 113 | } 114 | public void setAddtime(String addtime) { 115 | this.addtime = addtime == null ? null : addtime.trim(); 116 | } 117 | } 118 | // 设置字段信息 119 | -------------------------------------------------------------------------------- /src/com/entity/Youqinglianjie.java: -------------------------------------------------------------------------------- 1 | package com.entity; 2 | 3 | public class Youqinglianjie { 4 | private Integer id; 5 | private String wangzhanmingcheng; 6 | private String wangzhi; 7 | private String LOGO; 8 | 9 | private String addtime; 10 | 11 | 12 | 13 | public Integer getId() { 14 | return id; 15 | } 16 | public void setId(Integer id) { 17 | this.id = id; 18 | } 19 | 20 | public String getWangzhanmingcheng() { 21 | return wangzhanmingcheng; 22 | } 23 | public void setWangzhanmingcheng(String wangzhanmingcheng) { 24 | this.wangzhanmingcheng = wangzhanmingcheng == null ? null : wangzhanmingcheng.trim(); 25 | } 26 | public String getWangzhi() { 27 | return wangzhi; 28 | } 29 | public void setWangzhi(String wangzhi) { 30 | this.wangzhi = wangzhi == null ? null : wangzhi.trim(); 31 | } 32 | public String getLOGO() { 33 | return LOGO; 34 | } 35 | public void setLOGO(String LOGO) { 36 | this.LOGO = LOGO == null ? null : LOGO.trim(); 37 | } 38 | 39 | 40 | 41 | public String getAddtime() { 42 | return addtime; 43 | } 44 | public void setAddtime(String addtime) { 45 | this.addtime = addtime == null ? null : addtime.trim(); 46 | } 47 | } 48 | // 设置字段信息 49 | -------------------------------------------------------------------------------- /src/com/entity/Zongheceping.java: -------------------------------------------------------------------------------- 1 | package com.entity; 2 | 3 | public class Zongheceping { 4 | private Integer id; 5 | private String xuehao; 6 | private String xingming; 7 | private String banji; 8 | private String jisuanchuxueshengcaoxingcepingfen; 9 | private String zhiyucepingdefen; 10 | private String nenglijiafenxiangdefen; 11 | private String zonghedefen; 12 | 13 | private String addtime; 14 | 15 | 16 | 17 | public Integer getId() { 18 | return id; 19 | } 20 | public void setId(Integer id) { 21 | this.id = id; 22 | } 23 | 24 | public String getXuehao() { 25 | return xuehao; 26 | } 27 | public void setXuehao(String xuehao) { 28 | this.xuehao = xuehao == null ? null : xuehao.trim(); 29 | } 30 | public String getXingming() { 31 | return xingming; 32 | } 33 | public void setXingming(String xingming) { 34 | this.xingming = xingming == null ? null : xingming.trim(); 35 | } 36 | public String getBanji() { 37 | return banji; 38 | } 39 | public void setBanji(String banji) { 40 | this.banji = banji == null ? null : banji.trim(); 41 | } 42 | public String getJisuanchuxueshengcaoxingcepingfen() { 43 | return jisuanchuxueshengcaoxingcepingfen; 44 | } 45 | public void setJisuanchuxueshengcaoxingcepingfen(String jisuanchuxueshengcaoxingcepingfen) { 46 | this.jisuanchuxueshengcaoxingcepingfen = jisuanchuxueshengcaoxingcepingfen == null ? null : jisuanchuxueshengcaoxingcepingfen.trim(); 47 | } 48 | public String getZhiyucepingdefen() { 49 | return zhiyucepingdefen; 50 | } 51 | public void setZhiyucepingdefen(String zhiyucepingdefen) { 52 | this.zhiyucepingdefen = zhiyucepingdefen == null ? null : zhiyucepingdefen.trim(); 53 | } 54 | public String getNenglijiafenxiangdefen() { 55 | return nenglijiafenxiangdefen; 56 | } 57 | public void setNenglijiafenxiangdefen(String nenglijiafenxiangdefen) { 58 | this.nenglijiafenxiangdefen = nenglijiafenxiangdefen == null ? null : nenglijiafenxiangdefen.trim(); 59 | } 60 | public String getZonghedefen() { 61 | return zonghedefen; 62 | } 63 | public void setZonghedefen(String zonghedefen) { 64 | this.zonghedefen = zonghedefen == null ? null : zonghedefen.trim(); 65 | } 66 | 67 | 68 | 69 | public String getAddtime() { 70 | return addtime; 71 | } 72 | public void setAddtime(String addtime) { 73 | this.addtime = addtime == null ? null : addtime.trim(); 74 | } 75 | } 76 | // 设置字段信息 77 | -------------------------------------------------------------------------------- /src/com/server/AllusersServer.java: -------------------------------------------------------------------------------- 1 | package com.server; 2 | 3 | import java.util.List; 4 | 5 | import java.util.Map; 6 | 7 | import com.entity.Allusers; 8 | 9 | public interface AllusersServer { 10 | 11 | // 验证后台登录 12 | public Allusers allusersLogin(Map po); 13 | 14 | public int add(Allusers po); 15 | 16 | public int update(Allusers po); 17 | 18 | public int delete(int id); 19 | 20 | public List getAll(Map map); 21 | 22 | public Allusers quchongAllusers(Map map); 23 | 24 | public Allusers getById( int id); 25 | 26 | public List getByPage(Map map); 27 | 28 | public int getCount(Map map); 29 | 30 | public List select(Map map); 31 | } 32 | // 所有List 33 | -------------------------------------------------------------------------------- /src/com/server/JiangchengxinxiServer.java: -------------------------------------------------------------------------------- 1 | package com.server; 2 | 3 | import java.util.List; 4 | 5 | import java.util.Map; 6 | 7 | import com.entity.Jiangchengxinxi; 8 | 9 | public interface JiangchengxinxiServer { 10 | 11 | public int add(Jiangchengxinxi po); 12 | 13 | public int update(Jiangchengxinxi po); 14 | 15 | 16 | 17 | public int delete(int id); 18 | 19 | public List getAll(Map map); 20 | public List getsyjiangchengxinxi1(Map map); 21 | public List getsyjiangchengxinxi2(Map map); 22 | public List getsyjiangchengxinxi3(Map map); 23 | public Jiangchengxinxi quchongJiangchengxinxi(Map acount); 24 | 25 | public Jiangchengxinxi getById( int id); 26 | 27 | public List getByPage(Map map); 28 | 29 | public int getCount(Map map); 30 | 31 | public List select(Map map); 32 | } 33 | // 所有List 34 | -------------------------------------------------------------------------------- /src/com/server/JiaoshixinxiServer.java: -------------------------------------------------------------------------------- 1 | package com.server; 2 | 3 | import java.util.List; 4 | 5 | import java.util.Map; 6 | 7 | import com.entity.Jiaoshixinxi; 8 | 9 | public interface JiaoshixinxiServer { 10 | 11 | public int add(Jiaoshixinxi po); 12 | 13 | public int update(Jiaoshixinxi po); 14 | 15 | 16 | 17 | public int delete(int id); 18 | 19 | public List getAll(Map map); 20 | public List getsyjiaoshixinxi1(Map map); 21 | public List getsyjiaoshixinxi2(Map map); 22 | public List getsyjiaoshixinxi3(Map map); 23 | public Jiaoshixinxi quchongJiaoshixinxi(Map acount); 24 | 25 | public Jiaoshixinxi getById( int id); 26 | 27 | public List getByPage(Map map); 28 | 29 | public int getCount(Map map); 30 | 31 | public List select(Map map); 32 | } 33 | // 所有List 34 | -------------------------------------------------------------------------------- /src/com/server/LiuyanbanServer.java: -------------------------------------------------------------------------------- 1 | package com.server; 2 | 3 | import java.util.List; 4 | 5 | import java.util.Map; 6 | 7 | import com.entity.Liuyanban; 8 | 9 | public interface LiuyanbanServer { 10 | 11 | public int add(Liuyanban po); 12 | 13 | public int update(Liuyanban po); 14 | 15 | public int updatelb(Liuyanban po); 16 | 17 | public int delete(int id); 18 | 19 | public List getAll(Map map); 20 | public List getsyliuyanban1(Map map); 21 | public List getsyliuyanban2(Map map); 22 | public List getsyliuyanban3(Map map); 23 | public Liuyanban quchongLiuyanban(Map acount); 24 | 25 | public Liuyanban getById( int id); 26 | 27 | public List getByPage(Map map); 28 | 29 | public int getCount(Map map); 30 | 31 | public List select(Map map); 32 | } 33 | // 所有List 34 | -------------------------------------------------------------------------------- /src/com/server/NenglijiafenServer.java: -------------------------------------------------------------------------------- 1 | package com.server; 2 | 3 | import java.util.List; 4 | 5 | import java.util.Map; 6 | 7 | import com.entity.Nenglijiafen; 8 | 9 | public interface NenglijiafenServer { 10 | 11 | public int add(Nenglijiafen po); 12 | 13 | public int update(Nenglijiafen po); 14 | 15 | 16 | 17 | public int delete(int id); 18 | 19 | public List getAll(Map map); 20 | public List getsynenglijiafen1(Map map); 21 | public List getsynenglijiafen2(Map map); 22 | public List getsynenglijiafen3(Map map); 23 | public Nenglijiafen quchongNenglijiafen(Map acount); 24 | 25 | public Nenglijiafen getById( int id); 26 | 27 | public List getByPage(Map map); 28 | 29 | public int getCount(Map map); 30 | 31 | public List select(Map map); 32 | } 33 | // 所有List 34 | -------------------------------------------------------------------------------- /src/com/server/PinglunServer.java: -------------------------------------------------------------------------------- 1 | package com.server; 2 | 3 | import java.util.List; 4 | 5 | import java.util.Map; 6 | 7 | import com.entity.Pinglun; 8 | 9 | public interface PinglunServer { 10 | 11 | public int add(Pinglun po); 12 | 13 | public int update(Pinglun po); 14 | 15 | public int delete(int id); 16 | 17 | public List getAll(Map map); 18 | 19 | public Pinglun quchongPinglun(Map map); 20 | 21 | public Pinglun getById( int id); 22 | 23 | public List getByPage(Map map); 24 | 25 | public int getCount(Map map); 26 | 27 | public List select(Map map); 28 | } 29 | // 所有List 30 | -------------------------------------------------------------------------------- /src/com/server/ShoucangjiluServer.java: -------------------------------------------------------------------------------- 1 | package com.server; 2 | 3 | import java.util.List; 4 | 5 | import java.util.Map; 6 | 7 | import com.entity.Shoucangjilu; 8 | 9 | public interface ShoucangjiluServer { 10 | 11 | public int add(Shoucangjilu po); 12 | 13 | public int update(Shoucangjilu po); 14 | 15 | public int delete(int id); 16 | 17 | public List getAll(Map map); 18 | 19 | public Shoucangjilu quchongShoucangjilu(Map map); 20 | 21 | public Shoucangjilu getById( int id); 22 | 23 | public List getByPage(Map map); 24 | 25 | public int getCount(Map map); 26 | 27 | public List select(Map map); 28 | } 29 | // 所有List 30 | -------------------------------------------------------------------------------- /src/com/server/XinwentongzhiServer.java: -------------------------------------------------------------------------------- 1 | package com.server; 2 | 3 | import java.util.List; 4 | 5 | import java.util.Map; 6 | 7 | import com.entity.Xinwentongzhi; 8 | 9 | public interface XinwentongzhiServer { 10 | 11 | public int add(Xinwentongzhi po); 12 | 13 | public int update(Xinwentongzhi po); 14 | 15 | public int delete(int id); 16 | 17 | public List getAll(Map map); 18 | public List getsyxinwentongzhi1(Map map); 19 | public List getsyxinwentongzhi2(Map map); 20 | public List getsyxinwentongzhi3(Map map); 21 | 22 | public Xinwentongzhi quchongXinwentongzhi(String account); 23 | 24 | public Xinwentongzhi getById( int id); 25 | 26 | public List getByPage(Map map); 27 | 28 | public int getCount(Map map); 29 | 30 | public List select(Map map); 31 | } 32 | // 所有List 33 | -------------------------------------------------------------------------------- /src/com/server/XueshengchengjiServer.java: -------------------------------------------------------------------------------- 1 | package com.server; 2 | 3 | import java.util.List; 4 | 5 | import java.util.Map; 6 | 7 | import com.entity.Xueshengchengji; 8 | 9 | public interface XueshengchengjiServer { 10 | 11 | public int add(Xueshengchengji po); 12 | 13 | public int update(Xueshengchengji po); 14 | 15 | 16 | 17 | public int delete(int id); 18 | 19 | public List getAll(Map map); 20 | public List getsyxueshengchengji1(Map map); 21 | public List getsyxueshengchengji2(Map map); 22 | public List getsyxueshengchengji3(Map map); 23 | public Xueshengchengji quchongXueshengchengji(Map acount); 24 | 25 | public Xueshengchengji getById( int id); 26 | 27 | public List getByPage(Map map); 28 | 29 | public int getCount(Map map); 30 | 31 | public List select(Map map); 32 | } 33 | // 所有List 34 | -------------------------------------------------------------------------------- /src/com/server/XueshengxinxiServer.java: -------------------------------------------------------------------------------- 1 | package com.server; 2 | 3 | import java.util.List; 4 | 5 | import java.util.Map; 6 | 7 | import com.entity.Xueshengxinxi; 8 | 9 | public interface XueshengxinxiServer { 10 | 11 | public int add(Xueshengxinxi po); 12 | 13 | public int update(Xueshengxinxi po); 14 | 15 | 16 | 17 | public int delete(int id); 18 | 19 | public List getAll(Map map); 20 | public List getsyxueshengxinxi1(Map map); 21 | public List getsyxueshengxinxi2(Map map); 22 | public List getsyxueshengxinxi3(Map map); 23 | public Xueshengxinxi quchongXueshengxinxi(Map acount); 24 | 25 | public Xueshengxinxi getById( int id); 26 | 27 | public List getByPage(Map map); 28 | 29 | public int getCount(Map map); 30 | 31 | public List select(Map map); 32 | } 33 | // 所有List 34 | -------------------------------------------------------------------------------- /src/com/server/YonghuzhuceServer.java: -------------------------------------------------------------------------------- 1 | package com.server; 2 | 3 | import java.util.List; 4 | 5 | import java.util.Map; 6 | 7 | import com.entity.Yonghuzhuce; 8 | 9 | public interface YonghuzhuceServer { 10 | 11 | public int add(Yonghuzhuce po); 12 | 13 | public int update(Yonghuzhuce po); 14 | 15 | 16 | 17 | public int delete(int id); 18 | 19 | public List getAll(Map map); 20 | public List getsyyonghuzhuce1(Map map); 21 | public List getsyyonghuzhuce2(Map map); 22 | public List getsyyonghuzhuce3(Map map); 23 | public Yonghuzhuce quchongYonghuzhuce(Map acount); 24 | 25 | public Yonghuzhuce getById( int id); 26 | 27 | public List getByPage(Map map); 28 | 29 | public int getCount(Map map); 30 | 31 | public List select(Map map); 32 | } 33 | // 所有List 34 | -------------------------------------------------------------------------------- /src/com/server/YouqinglianjieServer.java: -------------------------------------------------------------------------------- 1 | package com.server; 2 | 3 | import java.util.List; 4 | 5 | import java.util.Map; 6 | 7 | import com.entity.Youqinglianjie; 8 | 9 | public interface YouqinglianjieServer { 10 | 11 | public int add(Youqinglianjie po); 12 | 13 | public int update(Youqinglianjie po); 14 | 15 | 16 | 17 | public int delete(int id); 18 | 19 | public List getAll(Map map); 20 | public List getsyyouqinglianjie1(Map map); 21 | public List getsyyouqinglianjie2(Map map); 22 | public List getsyyouqinglianjie3(Map map); 23 | public Youqinglianjie quchongYouqinglianjie(Map acount); 24 | 25 | public Youqinglianjie getById( int id); 26 | 27 | public List getByPage(Map map); 28 | 29 | public int getCount(Map map); 30 | 31 | public List select(Map map); 32 | } 33 | // 所有List 34 | -------------------------------------------------------------------------------- /src/com/server/ZonghecepingServer.java: -------------------------------------------------------------------------------- 1 | package com.server; 2 | 3 | import java.util.List; 4 | 5 | import java.util.Map; 6 | 7 | import com.entity.Zongheceping; 8 | 9 | public interface ZonghecepingServer { 10 | 11 | public int add(Zongheceping po); 12 | 13 | public int update(Zongheceping po); 14 | 15 | 16 | 17 | public int delete(int id); 18 | 19 | public List getAll(Map map); 20 | public List getsyzongheceping1(Map map); 21 | public List getsyzongheceping2(Map map); 22 | public List getsyzongheceping3(Map map); 23 | public Zongheceping quchongZongheceping(Map acount); 24 | 25 | public Zongheceping getById( int id); 26 | 27 | public List getByPage(Map map); 28 | 29 | public int getCount(Map map); 30 | 31 | public List select(Map map); 32 | } 33 | // 所有List 34 | -------------------------------------------------------------------------------- /src/com/server/impl/AllusersServerImpi.java: -------------------------------------------------------------------------------- 1 | package com.server.impl; 2 | 3 | import java.util.List; 4 | 5 | import java.util.Map; 6 | 7 | import javax.annotation.Resource; 8 | 9 | import org.springframework.stereotype.Service; 10 | 11 | import com.dao.AllusersMapper; 12 | import com.entity.Allusers; 13 | 14 | import com.server.AllusersServer; 15 | @Service 16 | public class AllusersServerImpi implements AllusersServer { 17 | @Resource 18 | private AllusersMapper gdao; 19 | 20 | @Override 21 | public Allusers allusersLogin(Map po) { 22 | System.out.println("userdao---"); 23 | return gdao.allusersLogin(po); 24 | } 25 | 26 | @Override 27 | public int add(Allusers po) { 28 | return gdao.insert(po); 29 | } 30 | 31 | @Override 32 | public int update(Allusers po) { 33 | return gdao.updateByPrimaryKeySelective(po); 34 | } 35 | 36 | @Override 37 | public int delete(int id) { 38 | return gdao.deleteByPrimaryKey(id); 39 | } 40 | 41 | @Override 42 | public List getAll(Map map) { 43 | return gdao.getAll(map); 44 | } 45 | 46 | @Override 47 | public Allusers quchongAllusers(Map account) { 48 | return null; 49 | } 50 | 51 | @Override 52 | public List getByPage(Map map) { 53 | return gdao.getByPage(map); 54 | } 55 | 56 | @Override 57 | public int getCount(Map map) { 58 | return gdao.getCount(map); 59 | } 60 | 61 | @Override 62 | public List select(Map map) { 63 | return gdao.select(map); 64 | } 65 | 66 | @Override 67 | public Allusers getById(int id) { 68 | return gdao.selectByPrimaryKey(id); 69 | } 70 | 71 | } 72 | 73 | -------------------------------------------------------------------------------- /src/com/server/impl/JiangchengxinxiServerImpi.java: -------------------------------------------------------------------------------- 1 | package com.server.impl; 2 | 3 | import java.util.List; 4 | 5 | import java.util.Map; 6 | 7 | import javax.annotation.Resource; 8 | 9 | import org.springframework.stereotype.Service; 10 | 11 | import com.dao.JiangchengxinxiMapper; 12 | import com.entity.Jiangchengxinxi; 13 | import com.server.JiangchengxinxiServer; 14 | @Service 15 | public class JiangchengxinxiServerImpi implements JiangchengxinxiServer { 16 | @Resource 17 | private JiangchengxinxiMapper gdao; 18 | @Override 19 | public int add(Jiangchengxinxi po) { 20 | return gdao.insert(po); 21 | } 22 | 23 | @Override 24 | public int update(Jiangchengxinxi po) { 25 | return gdao.updateByPrimaryKeySelective(po); 26 | } 27 | 28 | 29 | 30 | @Override 31 | public int delete(int id) { 32 | return gdao.deleteByPrimaryKey(id); 33 | } 34 | 35 | @Override 36 | public List getAll(Map map) { 37 | return gdao.getAll(map); 38 | } 39 | 40 | public List getsyjiangchengxinxi1(Map map) { 41 | return gdao.getsyjiangchengxinxi1(map); 42 | } 43 | public List getsyjiangchengxinxi2(Map map) { 44 | return gdao.getsyjiangchengxinxi2(map); 45 | } 46 | public List getsyjiangchengxinxi3(Map map) { 47 | return gdao.getsyjiangchengxinxi3(map); 48 | } 49 | 50 | @Override 51 | public Jiangchengxinxi quchongJiangchengxinxi(Map account) { 52 | return gdao.quchongJiangchengxinxi(account); 53 | } 54 | 55 | @Override 56 | public List getByPage(Map map) { 57 | return gdao.getByPage(map); 58 | } 59 | 60 | @Override 61 | public int getCount(Map map) { 62 | return gdao.getCount(map); 63 | } 64 | 65 | @Override 66 | public List select(Map map) { 67 | return gdao.select(map); 68 | } 69 | 70 | @Override 71 | public Jiangchengxinxi getById(int id) { 72 | return gdao.selectByPrimaryKey(id); 73 | } 74 | 75 | } 76 | 77 | -------------------------------------------------------------------------------- /src/com/server/impl/JiaoshixinxiServerImpi.java: -------------------------------------------------------------------------------- 1 | package com.server.impl; 2 | 3 | import java.util.List; 4 | 5 | import java.util.Map; 6 | 7 | import javax.annotation.Resource; 8 | 9 | import org.springframework.stereotype.Service; 10 | 11 | import com.dao.JiaoshixinxiMapper; 12 | import com.entity.Jiaoshixinxi; 13 | import com.server.JiaoshixinxiServer; 14 | @Service 15 | public class JiaoshixinxiServerImpi implements JiaoshixinxiServer { 16 | @Resource 17 | private JiaoshixinxiMapper gdao; 18 | @Override 19 | public int add(Jiaoshixinxi po) { 20 | return gdao.insert(po); 21 | } 22 | 23 | @Override 24 | public int update(Jiaoshixinxi po) { 25 | return gdao.updateByPrimaryKeySelective(po); 26 | } 27 | 28 | 29 | 30 | @Override 31 | public int delete(int id) { 32 | return gdao.deleteByPrimaryKey(id); 33 | } 34 | 35 | @Override 36 | public List getAll(Map map) { 37 | return gdao.getAll(map); 38 | } 39 | 40 | public List getsyjiaoshixinxi1(Map map) { 41 | return gdao.getsyjiaoshixinxi1(map); 42 | } 43 | public List getsyjiaoshixinxi2(Map map) { 44 | return gdao.getsyjiaoshixinxi2(map); 45 | } 46 | public List getsyjiaoshixinxi3(Map map) { 47 | return gdao.getsyjiaoshixinxi3(map); 48 | } 49 | 50 | @Override 51 | public Jiaoshixinxi quchongJiaoshixinxi(Map account) { 52 | return gdao.quchongJiaoshixinxi(account); 53 | } 54 | 55 | @Override 56 | public List getByPage(Map map) { 57 | return gdao.getByPage(map); 58 | } 59 | 60 | @Override 61 | public int getCount(Map map) { 62 | return gdao.getCount(map); 63 | } 64 | 65 | @Override 66 | public List select(Map map) { 67 | return gdao.select(map); 68 | } 69 | 70 | @Override 71 | public Jiaoshixinxi getById(int id) { 72 | return gdao.selectByPrimaryKey(id); 73 | } 74 | 75 | } 76 | 77 | -------------------------------------------------------------------------------- /src/com/server/impl/LiuyanbanServerImpi.java: -------------------------------------------------------------------------------- 1 | package com.server.impl; 2 | 3 | import java.util.List; 4 | 5 | import java.util.Map; 6 | 7 | import javax.annotation.Resource; 8 | 9 | import org.springframework.stereotype.Service; 10 | 11 | import com.dao.LiuyanbanMapper; 12 | import com.entity.Liuyanban; 13 | import com.server.LiuyanbanServer; 14 | @Service 15 | public class LiuyanbanServerImpi implements LiuyanbanServer { 16 | @Resource 17 | private LiuyanbanMapper gdao; 18 | @Override 19 | public int add(Liuyanban po) { 20 | return gdao.insert(po); 21 | } 22 | 23 | @Override 24 | public int update(Liuyanban po) { 25 | return gdao.updateByPrimaryKeySelective(po); 26 | } 27 | 28 | @Override 29 | public int updatelb(Liuyanban po) { 30 | return gdao.updateByPrimaryKeySelectivelb(po); 31 | } 32 | 33 | @Override 34 | public int delete(int id) { 35 | return gdao.deleteByPrimaryKey(id); 36 | } 37 | 38 | @Override 39 | public List getAll(Map map) { 40 | return gdao.getAll(map); 41 | } 42 | 43 | public List getsyliuyanban1(Map map) { 44 | return gdao.getsyliuyanban1(map); 45 | } 46 | public List getsyliuyanban2(Map map) { 47 | return gdao.getsyliuyanban2(map); 48 | } 49 | public List getsyliuyanban3(Map map) { 50 | return gdao.getsyliuyanban3(map); 51 | } 52 | 53 | @Override 54 | public Liuyanban quchongLiuyanban(Map account) { 55 | return gdao.quchongLiuyanban(account); 56 | } 57 | 58 | @Override 59 | public List getByPage(Map map) { 60 | return gdao.getByPage(map); 61 | } 62 | 63 | @Override 64 | public int getCount(Map map) { 65 | return gdao.getCount(map); 66 | } 67 | 68 | @Override 69 | public List select(Map map) { 70 | return gdao.select(map); 71 | } 72 | 73 | @Override 74 | public Liuyanban getById(int id) { 75 | return gdao.selectByPrimaryKey(id); 76 | } 77 | 78 | } 79 | 80 | -------------------------------------------------------------------------------- /src/com/server/impl/NenglijiafenServerImpi.java: -------------------------------------------------------------------------------- 1 | package com.server.impl; 2 | 3 | import java.util.List; 4 | 5 | import java.util.Map; 6 | 7 | import javax.annotation.Resource; 8 | 9 | import org.springframework.stereotype.Service; 10 | 11 | import com.dao.NenglijiafenMapper; 12 | import com.entity.Nenglijiafen; 13 | import com.server.NenglijiafenServer; 14 | @Service 15 | public class NenglijiafenServerImpi implements NenglijiafenServer { 16 | @Resource 17 | private NenglijiafenMapper gdao; 18 | @Override 19 | public int add(Nenglijiafen po) { 20 | return gdao.insert(po); 21 | } 22 | 23 | @Override 24 | public int update(Nenglijiafen po) { 25 | return gdao.updateByPrimaryKeySelective(po); 26 | } 27 | 28 | 29 | 30 | @Override 31 | public int delete(int id) { 32 | return gdao.deleteByPrimaryKey(id); 33 | } 34 | 35 | @Override 36 | public List getAll(Map map) { 37 | return gdao.getAll(map); 38 | } 39 | 40 | public List getsynenglijiafen1(Map map) { 41 | return gdao.getsynenglijiafen1(map); 42 | } 43 | public List getsynenglijiafen2(Map map) { 44 | return gdao.getsynenglijiafen2(map); 45 | } 46 | public List getsynenglijiafen3(Map map) { 47 | return gdao.getsynenglijiafen3(map); 48 | } 49 | 50 | @Override 51 | public Nenglijiafen quchongNenglijiafen(Map account) { 52 | return gdao.quchongNenglijiafen(account); 53 | } 54 | 55 | @Override 56 | public List getByPage(Map map) { 57 | return gdao.getByPage(map); 58 | } 59 | 60 | @Override 61 | public int getCount(Map map) { 62 | return gdao.getCount(map); 63 | } 64 | 65 | @Override 66 | public List select(Map map) { 67 | return gdao.select(map); 68 | } 69 | 70 | @Override 71 | public Nenglijiafen getById(int id) { 72 | return gdao.selectByPrimaryKey(id); 73 | } 74 | 75 | } 76 | 77 | -------------------------------------------------------------------------------- /src/com/server/impl/PinglunServerImpi.java: -------------------------------------------------------------------------------- 1 | package com.server.impl; 2 | 3 | import java.util.List; 4 | 5 | import java.util.Map; 6 | 7 | import javax.annotation.Resource; 8 | 9 | import org.springframework.stereotype.Service; 10 | 11 | import com.dao.PinglunMapper; 12 | import com.entity.Pinglun; 13 | import com.server.PinglunServer; 14 | @Service 15 | public class PinglunServerImpi implements PinglunServer { 16 | @Resource 17 | private PinglunMapper gdao; 18 | @Override 19 | public int add(Pinglun po) { 20 | return gdao.insert(po); 21 | } 22 | 23 | @Override 24 | public int update(Pinglun po) { 25 | return gdao.updateByPrimaryKeySelective(po); 26 | } 27 | 28 | @Override 29 | public int delete(int id) { 30 | return gdao.deleteByPrimaryKey(id); 31 | } 32 | 33 | @Override 34 | public List getAll(Map map) { 35 | return gdao.getAll(map); 36 | } 37 | 38 | @Override 39 | public Pinglun quchongPinglun(Map account) { 40 | return null; 41 | } 42 | 43 | @Override 44 | public List getByPage(Map map) { 45 | return gdao.getByPage(map); 46 | } 47 | 48 | @Override 49 | public int getCount(Map map) { 50 | return gdao.getCount(map); 51 | } 52 | 53 | @Override 54 | public List select(Map map) { 55 | return gdao.select(map); 56 | } 57 | 58 | @Override 59 | public Pinglun getById(int id) { 60 | return gdao.selectByPrimaryKey(id); 61 | } 62 | 63 | } 64 | 65 | -------------------------------------------------------------------------------- /src/com/server/impl/ShoucangjiluServerImpi.java: -------------------------------------------------------------------------------- 1 | package com.server.impl; 2 | 3 | import java.util.List; 4 | 5 | import java.util.Map; 6 | 7 | import javax.annotation.Resource; 8 | 9 | import org.springframework.stereotype.Service; 10 | 11 | import com.dao.ShoucangjiluMapper; 12 | import com.entity.Shoucangjilu; 13 | import com.server.ShoucangjiluServer; 14 | @Service 15 | public class ShoucangjiluServerImpi implements ShoucangjiluServer { 16 | @Resource 17 | private ShoucangjiluMapper gdao; 18 | @Override 19 | public int add(Shoucangjilu po) { 20 | return gdao.insert(po); 21 | } 22 | 23 | @Override 24 | public int update(Shoucangjilu po) { 25 | return gdao.updateByPrimaryKeySelective(po); 26 | } 27 | 28 | @Override 29 | public int delete(int id) { 30 | return gdao.deleteByPrimaryKey(id); 31 | } 32 | 33 | @Override 34 | public List getAll(Map map) { 35 | return gdao.getAll(map); 36 | } 37 | 38 | @Override 39 | public Shoucangjilu quchongShoucangjilu(Map account) { 40 | return null; 41 | } 42 | 43 | @Override 44 | public List getByPage(Map map) { 45 | return gdao.getByPage(map); 46 | } 47 | 48 | @Override 49 | public int getCount(Map map) { 50 | return gdao.getCount(map); 51 | } 52 | 53 | @Override 54 | public List select(Map map) { 55 | return gdao.select(map); 56 | } 57 | 58 | @Override 59 | public Shoucangjilu getById(int id) { 60 | return gdao.selectByPrimaryKey(id); 61 | } 62 | 63 | } 64 | 65 | -------------------------------------------------------------------------------- /src/com/server/impl/XinwentongzhiServerImpi.java: -------------------------------------------------------------------------------- 1 | package com.server.impl; 2 | 3 | import java.util.List; 4 | 5 | import java.util.Map; 6 | 7 | import javax.annotation.Resource; 8 | 9 | import org.springframework.stereotype.Service; 10 | 11 | import com.dao.XinwentongzhiMapper; 12 | import com.entity.Xinwentongzhi; 13 | import com.server.XinwentongzhiServer; 14 | @Service 15 | public class XinwentongzhiServerImpi implements XinwentongzhiServer { 16 | @Resource 17 | private XinwentongzhiMapper gdao; 18 | @Override 19 | public int add(Xinwentongzhi po) { 20 | return gdao.insert(po); 21 | } 22 | 23 | @Override 24 | public int update(Xinwentongzhi po) { 25 | return gdao.updateByPrimaryKeySelective(po); 26 | } 27 | 28 | @Override 29 | public int delete(int id) { 30 | return gdao.deleteByPrimaryKey(id); 31 | } 32 | 33 | @Override 34 | public List getAll(Map map) { 35 | return gdao.getAll(map); 36 | } 37 | 38 | 39 | @Override 40 | public List getsyxinwentongzhi1(Map map) { 41 | return gdao.getsyxinwentongzhi1(map); 42 | } 43 | @Override 44 | public List getsyxinwentongzhi2(Map map) { 45 | return gdao.getsyxinwentongzhi2(map); 46 | } 47 | @Override 48 | public List getsyxinwentongzhi3(Map map) { 49 | return gdao.getsyxinwentongzhi3(map); 50 | } 51 | 52 | 53 | @Override 54 | public Xinwentongzhi quchongXinwentongzhi(String account) { 55 | return null; 56 | } 57 | 58 | @Override 59 | public List getByPage(Map map) { 60 | return gdao.getByPage(map); 61 | } 62 | 63 | @Override 64 | public int getCount(Map map) { 65 | return gdao.getCount(map); 66 | } 67 | 68 | @Override 69 | public List select(Map map) { 70 | return gdao.select(map); 71 | } 72 | 73 | @Override 74 | public Xinwentongzhi getById(int id) { 75 | return gdao.selectByPrimaryKey(id); 76 | } 77 | 78 | } 79 | 80 | -------------------------------------------------------------------------------- /src/com/server/impl/XueshengchengjiServerImpi.java: -------------------------------------------------------------------------------- 1 | package com.server.impl; 2 | 3 | import java.util.List; 4 | 5 | import java.util.Map; 6 | 7 | import javax.annotation.Resource; 8 | 9 | import org.springframework.stereotype.Service; 10 | 11 | import com.dao.XueshengchengjiMapper; 12 | import com.entity.Xueshengchengji; 13 | import com.server.XueshengchengjiServer; 14 | @Service 15 | public class XueshengchengjiServerImpi implements XueshengchengjiServer { 16 | @Resource 17 | private XueshengchengjiMapper gdao; 18 | @Override 19 | public int add(Xueshengchengji po) { 20 | return gdao.insert(po); 21 | } 22 | 23 | @Override 24 | public int update(Xueshengchengji po) { 25 | return gdao.updateByPrimaryKeySelective(po); 26 | } 27 | 28 | 29 | 30 | @Override 31 | public int delete(int id) { 32 | return gdao.deleteByPrimaryKey(id); 33 | } 34 | 35 | @Override 36 | public List getAll(Map map) { 37 | return gdao.getAll(map); 38 | } 39 | 40 | public List getsyxueshengchengji1(Map map) { 41 | return gdao.getsyxueshengchengji1(map); 42 | } 43 | public List getsyxueshengchengji2(Map map) { 44 | return gdao.getsyxueshengchengji2(map); 45 | } 46 | public List getsyxueshengchengji3(Map map) { 47 | return gdao.getsyxueshengchengji3(map); 48 | } 49 | 50 | @Override 51 | public Xueshengchengji quchongXueshengchengji(Map account) { 52 | return gdao.quchongXueshengchengji(account); 53 | } 54 | 55 | @Override 56 | public List getByPage(Map map) { 57 | return gdao.getByPage(map); 58 | } 59 | 60 | @Override 61 | public int getCount(Map map) { 62 | return gdao.getCount(map); 63 | } 64 | 65 | @Override 66 | public List select(Map map) { 67 | return gdao.select(map); 68 | } 69 | 70 | @Override 71 | public Xueshengchengji getById(int id) { 72 | return gdao.selectByPrimaryKey(id); 73 | } 74 | 75 | } 76 | 77 | -------------------------------------------------------------------------------- /src/com/server/impl/XueshengxinxiServerImpi.java: -------------------------------------------------------------------------------- 1 | package com.server.impl; 2 | 3 | import java.util.List; 4 | 5 | import java.util.Map; 6 | 7 | import javax.annotation.Resource; 8 | 9 | import org.springframework.stereotype.Service; 10 | 11 | import com.dao.XueshengxinxiMapper; 12 | import com.entity.Xueshengxinxi; 13 | import com.server.XueshengxinxiServer; 14 | @Service 15 | public class XueshengxinxiServerImpi implements XueshengxinxiServer { 16 | @Resource 17 | private XueshengxinxiMapper gdao; 18 | @Override 19 | public int add(Xueshengxinxi po) { 20 | return gdao.insert(po); 21 | } 22 | 23 | @Override 24 | public int update(Xueshengxinxi po) { 25 | return gdao.updateByPrimaryKeySelective(po); 26 | } 27 | 28 | 29 | 30 | @Override 31 | public int delete(int id) { 32 | return gdao.deleteByPrimaryKey(id); 33 | } 34 | 35 | @Override 36 | public List getAll(Map map) { 37 | return gdao.getAll(map); 38 | } 39 | 40 | public List getsyxueshengxinxi1(Map map) { 41 | return gdao.getsyxueshengxinxi1(map); 42 | } 43 | public List getsyxueshengxinxi2(Map map) { 44 | return gdao.getsyxueshengxinxi2(map); 45 | } 46 | public List getsyxueshengxinxi3(Map map) { 47 | return gdao.getsyxueshengxinxi3(map); 48 | } 49 | 50 | @Override 51 | public Xueshengxinxi quchongXueshengxinxi(Map account) { 52 | return gdao.quchongXueshengxinxi(account); 53 | } 54 | 55 | @Override 56 | public List getByPage(Map map) { 57 | return gdao.getByPage(map); 58 | } 59 | 60 | @Override 61 | public int getCount(Map map) { 62 | return gdao.getCount(map); 63 | } 64 | 65 | @Override 66 | public List select(Map map) { 67 | return gdao.select(map); 68 | } 69 | 70 | @Override 71 | public Xueshengxinxi getById(int id) { 72 | return gdao.selectByPrimaryKey(id); 73 | } 74 | 75 | } 76 | 77 | -------------------------------------------------------------------------------- /src/com/server/impl/YonghuzhuceServerImpi.java: -------------------------------------------------------------------------------- 1 | package com.server.impl; 2 | 3 | import java.util.List; 4 | 5 | import java.util.Map; 6 | 7 | import javax.annotation.Resource; 8 | 9 | import org.springframework.stereotype.Service; 10 | 11 | import com.dao.YonghuzhuceMapper; 12 | import com.entity.Yonghuzhuce; 13 | import com.server.YonghuzhuceServer; 14 | @Service 15 | public class YonghuzhuceServerImpi implements YonghuzhuceServer { 16 | @Resource 17 | private YonghuzhuceMapper gdao; 18 | @Override 19 | public int add(Yonghuzhuce po) { 20 | return gdao.insert(po); 21 | } 22 | 23 | @Override 24 | public int update(Yonghuzhuce po) { 25 | return gdao.updateByPrimaryKeySelective(po); 26 | } 27 | 28 | 29 | 30 | @Override 31 | public int delete(int id) { 32 | return gdao.deleteByPrimaryKey(id); 33 | } 34 | 35 | @Override 36 | public List getAll(Map map) { 37 | return gdao.getAll(map); 38 | } 39 | 40 | public List getsyyonghuzhuce1(Map map) { 41 | return gdao.getsyyonghuzhuce1(map); 42 | } 43 | public List getsyyonghuzhuce2(Map map) { 44 | return gdao.getsyyonghuzhuce2(map); 45 | } 46 | public List getsyyonghuzhuce3(Map map) { 47 | return gdao.getsyyonghuzhuce3(map); 48 | } 49 | 50 | @Override 51 | public Yonghuzhuce quchongYonghuzhuce(Map account) { 52 | return gdao.quchongYonghuzhuce(account); 53 | } 54 | 55 | @Override 56 | public List getByPage(Map map) { 57 | return gdao.getByPage(map); 58 | } 59 | 60 | @Override 61 | public int getCount(Map map) { 62 | return gdao.getCount(map); 63 | } 64 | 65 | @Override 66 | public List select(Map map) { 67 | return gdao.select(map); 68 | } 69 | 70 | @Override 71 | public Yonghuzhuce getById(int id) { 72 | return gdao.selectByPrimaryKey(id); 73 | } 74 | 75 | } 76 | 77 | -------------------------------------------------------------------------------- /src/com/server/impl/YouqinglianjieServerImpi.java: -------------------------------------------------------------------------------- 1 | package com.server.impl; 2 | 3 | import java.util.List; 4 | 5 | import java.util.Map; 6 | 7 | import javax.annotation.Resource; 8 | 9 | import org.springframework.stereotype.Service; 10 | 11 | import com.dao.YouqinglianjieMapper; 12 | import com.entity.Youqinglianjie; 13 | import com.server.YouqinglianjieServer; 14 | @Service 15 | public class YouqinglianjieServerImpi implements YouqinglianjieServer { 16 | @Resource 17 | private YouqinglianjieMapper gdao; 18 | @Override 19 | public int add(Youqinglianjie po) { 20 | return gdao.insert(po); 21 | } 22 | 23 | @Override 24 | public int update(Youqinglianjie po) { 25 | return gdao.updateByPrimaryKeySelective(po); 26 | } 27 | 28 | 29 | 30 | @Override 31 | public int delete(int id) { 32 | return gdao.deleteByPrimaryKey(id); 33 | } 34 | 35 | @Override 36 | public List getAll(Map map) { 37 | return gdao.getAll(map); 38 | } 39 | 40 | public List getsyyouqinglianjie1(Map map) { 41 | return gdao.getsyyouqinglianjie1(map); 42 | } 43 | public List getsyyouqinglianjie2(Map map) { 44 | return gdao.getsyyouqinglianjie2(map); 45 | } 46 | public List getsyyouqinglianjie3(Map map) { 47 | return gdao.getsyyouqinglianjie3(map); 48 | } 49 | 50 | @Override 51 | public Youqinglianjie quchongYouqinglianjie(Map account) { 52 | return gdao.quchongYouqinglianjie(account); 53 | } 54 | 55 | @Override 56 | public List getByPage(Map map) { 57 | return gdao.getByPage(map); 58 | } 59 | 60 | @Override 61 | public int getCount(Map map) { 62 | return gdao.getCount(map); 63 | } 64 | 65 | @Override 66 | public List select(Map map) { 67 | return gdao.select(map); 68 | } 69 | 70 | @Override 71 | public Youqinglianjie getById(int id) { 72 | return gdao.selectByPrimaryKey(id); 73 | } 74 | 75 | } 76 | 77 | -------------------------------------------------------------------------------- /src/com/server/impl/ZonghecepingServerImpi.java: -------------------------------------------------------------------------------- 1 | package com.server.impl; 2 | 3 | import java.util.List; 4 | 5 | import java.util.Map; 6 | 7 | import javax.annotation.Resource; 8 | 9 | import org.springframework.stereotype.Service; 10 | 11 | import com.dao.ZonghecepingMapper; 12 | import com.entity.Zongheceping; 13 | import com.server.ZonghecepingServer; 14 | @Service 15 | public class ZonghecepingServerImpi implements ZonghecepingServer { 16 | @Resource 17 | private ZonghecepingMapper gdao; 18 | @Override 19 | public int add(Zongheceping po) { 20 | return gdao.insert(po); 21 | } 22 | 23 | @Override 24 | public int update(Zongheceping po) { 25 | return gdao.updateByPrimaryKeySelective(po); 26 | } 27 | 28 | 29 | 30 | @Override 31 | public int delete(int id) { 32 | return gdao.deleteByPrimaryKey(id); 33 | } 34 | 35 | @Override 36 | public List getAll(Map map) { 37 | return gdao.getAll(map); 38 | } 39 | 40 | public List getsyzongheceping1(Map map) { 41 | return gdao.getsyzongheceping1(map); 42 | } 43 | public List getsyzongheceping2(Map map) { 44 | return gdao.getsyzongheceping2(map); 45 | } 46 | public List getsyzongheceping3(Map map) { 47 | return gdao.getsyzongheceping3(map); 48 | } 49 | 50 | @Override 51 | public Zongheceping quchongZongheceping(Map account) { 52 | return gdao.quchongZongheceping(account); 53 | } 54 | 55 | @Override 56 | public List getByPage(Map map) { 57 | return gdao.getByPage(map); 58 | } 59 | 60 | @Override 61 | public int getCount(Map map) { 62 | return gdao.getCount(map); 63 | } 64 | 65 | @Override 66 | public List select(Map map) { 67 | return gdao.select(map); 68 | } 69 | 70 | @Override 71 | public Zongheceping getById(int id) { 72 | return gdao.selectByPrimaryKey(id); 73 | } 74 | 75 | } 76 | 77 | -------------------------------------------------------------------------------- /src/com/util/CheckCode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/src/com/util/CheckCode.java -------------------------------------------------------------------------------- /src/com/util/Constant.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StudentComprehensiveQualityEvaluationManagementSystem/11c558e99e32be5ec865c96ac1f83680f8ed6535/src/com/util/Constant.java -------------------------------------------------------------------------------- /src/com/util/Md5.java: -------------------------------------------------------------------------------- 1 | package com.util; 2 | 3 | import java.security.MessageDigest; 4 | 5 | public class Md5 { 6 | private static final String[] hexDigits = { "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "A", "B", "C", "D", 7 | "E", "F" }; 8 | 9 | private static String byteArrayToHexString(byte[] b) { 10 | StringBuffer resultSb = new StringBuffer(); 11 | for (int i = 0; i < b.length; i++) { 12 | resultSb.append(byteToHexString(b[i])); 13 | } 14 | return resultSb.toString(); 15 | } 16 | 17 | private static String byteToHexString(byte b) { 18 | int n = b; 19 | if (n < 0) { 20 | n += 256; 21 | } 22 | int d1 = n / 16; 23 | int d2 = n % 16; 24 | return hexDigits[d1] + hexDigits[d2]; 25 | } 26 | 27 | public static String MD5HexEncode(String origin) { 28 | String resultString = null; 29 | try { 30 | resultString = new String(origin); 31 | MessageDigest md = MessageDigest.getInstance("MD5"); 32 | resultString = byteArrayToHexString(md.digest(resultString.getBytes())); 33 | } catch (Exception localException) { 34 | } 35 | return resultString; 36 | } 37 | 38 | /*public static void main(String[] args) { 39 | String strPwd = "testtest"; 40 | System.out.println(MD5HexEncode(strPwd)); 41 | }*/ 42 | } 43 | -------------------------------------------------------------------------------- /src/com/util/PageBean.java: -------------------------------------------------------------------------------- 1 | package com.util; 2 | 3 | /** 4 | * 分页Model类 5 | * 6 | * @author 7 | * 8 | */ 9 | public class PageBean { 10 | /** 11 | * 总记录数 12 | */ 13 | private int total; 14 | /** 15 | * 总页数 16 | */ 17 | private int totalPage; 18 | private int page; // 第几页 19 | private int pageSize; // 每页记录数 20 | private int start; // 起始页 21 | public static final int PAGESIZE = 5; 22 | public int getTotal() { 23 | return total; 24 | } 25 | 26 | public void setTotal(int total) { 27 | this.total = total; 28 | } 29 | 30 | public int getTotalPage() { 31 | 32 | return total % pageSize == 0 ? total / pageSize : (total / pageSize + 1); 33 | } 34 | 35 | public void setTotalPage(int totalPage) { 36 | this.totalPage = totalPage; 37 | } 38 | 39 | public PageBean(int page, int pageSize) { 40 | super(); 41 | this.page = page; 42 | this.pageSize = pageSize; 43 | } 44 | 45 | public int getPage() { 46 | return page; 47 | } 48 | 49 | public void setPage(int page) { 50 | this.page = page; 51 | } 52 | 53 | public int getPageSize() { 54 | return pageSize; 55 | } 56 | 57 | public void setPageSize(int pageSize) { 58 | this.pageSize = pageSize; 59 | } 60 | 61 | public int getStart() { 62 | return (page - 1) * pageSize; 63 | } 64 | 65 | } 66 | -------------------------------------------------------------------------------- /src/com/util/PageInfo.java: -------------------------------------------------------------------------------- 1 | package com.util; 2 | 3 | import java.util.List; 4 | 5 | //分页的工具类 6 | public class PageInfo { 7 | public static final int PAGESIZE = 10; 8 | // 统计总条数 9 | private int count; 10 | // 当前页的数据集合 11 | private List pageList; 12 | // 当前页码 13 | private int pageIndex = 1; 14 | // 总的页数 15 | private int totalpages; 16 | 17 | public int getCount() { 18 | return count; 19 | } 20 | 21 | public void setCount(int count) { 22 | this.count = count; 23 | } 24 | 25 | public List getPageList() { 26 | return pageList; 27 | } 28 | 29 | public void setPageList(List pageList) { 30 | this.pageList = pageList; 31 | } 32 | 33 | public int getPageIndex() { 34 | return pageIndex; 35 | } 36 | 37 | public void setPageIndex(int pageIndex) { 38 | this.pageIndex = pageIndex; 39 | } 40 | 41 | public void setTotalpages(int totalpages) { 42 | this.totalpages = totalpages; 43 | } 44 | 45 | // 计算总页数 46 | public int getTotalpages() { 47 | 48 | this.totalpages = this.count / this.PAGESIZE; 49 | if (this.count % this.PAGESIZE != 0) { 50 | 51 | this.totalpages++; 52 | } 53 | return this.totalpages; 54 | 55 | } 56 | 57 | } 58 | -------------------------------------------------------------------------------- /src/com/util/SetChar.java: -------------------------------------------------------------------------------- 1 | package com.util; 2 | 3 | import javax.servlet.*; 4 | 5 | 6 | import javax.servlet.http.*; 7 | 8 | import java.io.*; 9 | 10 | public class SetChar extends HttpServlet implements Filter { 11 | private FilterConfig filterConfig; 12 | 13 | // Handle the passed-in FilterConfig 14 | public void init(FilterConfig filterConfig) throws ServletException { 15 | this.filterConfig = filterConfig; 16 | } 17 | 18 | // Process the request/response pair 19 | public void doFilter(ServletRequest request, ServletResponse response, 20 | FilterChain filterChain) { 21 | try { 22 | ((HttpServletResponse) response).setHeader("Pragma", "No-cache"); 23 | ((HttpServletResponse) response).setHeader("Cache-Control", "no-cache"); 24 | ((HttpServletResponse) response).setHeader("Expires", "0"); 25 | //request.setCharacterEncoding("UTF-8"); 26 | response.setCharacterEncoding("UTF-8"); 27 | request.setCharacterEncoding("UTF-8"); 28 | filterChain.doFilter(request, response); 29 | } catch (ServletException sx) { 30 | filterConfig.getServletContext().log(sx.getMessage()); 31 | } catch (IOException iox) { 32 | filterConfig.getServletContext().log(iox.getMessage()); 33 | } 34 | } 35 | 36 | // Clean up resources 37 | public void destroy() { 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /src/com/util/StrUtil.java: -------------------------------------------------------------------------------- 1 | // Decompiled by Jad v1.5.7g. Copyright 2000 Pavel Kouznetsov. 2 | // Jad home page: http://www.geocities.com/SiliconValley/Bridge/8617/jad.html 3 | // Decompiler options: packimports(3) fieldsfirst ansi 4 | // Source File Name: MD5.java 5 | 6 | package com.util; 7 | 8 | import java.text.ParseException; 9 | 10 | 11 | import java.text.SimpleDateFormat; 12 | import java.util.Date; 13 | import java.util.regex.Matcher; 14 | import java.util.regex.Pattern; 15 | 16 | 17 | public class StrUtil { 18 | private static int idSequence=10000; 19 | 20 | public static String checkStr(Object obj) { 21 | if(obj==null){ 22 | return ""; 23 | }else{ 24 | return obj.toString(); 25 | } 26 | } 27 | 28 | public synchronized static String generalSrid() { 29 | StringBuffer ret = new StringBuffer(20); 30 | ret.append(StrUtil.getFormatDate("yyyyMMddHHmmss")); 31 | idSequence++; 32 | if(idSequence>20000) 33 | idSequence-=10000; 34 | ret.append(String.valueOf(idSequence).substring(1)); 35 | //System.out.println("生成ID="+ret); 36 | return ret.toString(); 37 | } 38 | public static String generalFileName(String srcFileName) { 39 | try{ 40 | int index=srcFileName.lastIndexOf("."); 41 | return StrUtil.generalSrid()+srcFileName.substring(index).toLowerCase(); 42 | }catch(Exception e){ 43 | return StrUtil.generalSrid(); 44 | } 45 | } 46 | public static String parseOS(String agent) { 47 | 48 | String system="Other"; 49 | if(agent.indexOf("Windows NT 5.2")!=-1) 50 | system="Win2003"; 51 | else if(agent.indexOf("Windows NT 5.1")!=-1) 52 | system="WinXP"; 53 | else if(agent.indexOf("Windows NT 5.0")!=-1) 54 | system="Win2000"; 55 | else if(agent.indexOf("Windows NT")!=-1) 56 | system="WinNT"; 57 | else if(agent.indexOf("Windows 9")!=-1) 58 | system="Win9x"; 59 | else if(agent.indexOf("unix")!=-1) 60 | system="unix"; 61 | else if(agent.indexOf("SunOS")!=-1) 62 | system="SunOS"; 63 | else if(agent.indexOf("BSD")!=-1) 64 | system="BSD"; 65 | else if(agent.indexOf("linux")!=-1) 66 | system="linux"; 67 | else if(agent.indexOf("Mac")!=-1) 68 | system="Mac"; 69 | else 70 | system = "Other"; 71 | return system; 72 | } 73 | 74 | /** 75 | * 得到当前日期的格式化字符串 76 | * 77 | * @param formatString 78 | * 如:yyyy(年)-MM(月)-dd(日)-HH(时)-mm(分)-ss(秒)-SSS(毫秒) 79 | 80 | * @return 格式化过的当前日期字符串 81 | */ 82 | public static String getFormatDate(String formatString) { 83 | Date now =new Date(System.currentTimeMillis()); 84 | SimpleDateFormat sdf=new SimpleDateFormat(formatString); 85 | String ret=sdf.format(now); 86 | return ret; 87 | } 88 | /** 89 | * @param 无 90 | * @return 当前日期 91 | */ 92 | public static Date getCurrentDate() { 93 | Date now =new Date(System.currentTimeMillis()); 94 | return now; 95 | } 96 | /** 97 | * 将格式化的日期字符串转换为日期。 98 | * 99 | * @param formatString 100 | * 如:yyyy(年)-MM(月)-dd(日)-HH(时)-mm(分)-ss(秒)-SSS(毫秒) 101 | 102 | * @return 字符串转换后的日期。 103 | */ 104 | public static Date formatDate(String dateString) { 105 | try { 106 | SimpleDateFormat sdf=new SimpleDateFormat(); 107 | Date date=sdf.parse(dateString); 108 | return date; 109 | } catch (ParseException e) { 110 | return new Date(); 111 | } 112 | } 113 | public static String nowdate(){ 114 | SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd");//设置日期格式 115 | return df.format(new Date());// new Date()为获取当前系统时间 116 | } 117 | 118 | public static int parseInt(String numberStr) { 119 | //Pattern pattern=Pattern.compile("[0-9]*"); 120 | //Pattern pattern=Pattern.compile("^[\\-\\d][0-9]*[\\.]{0,1}[0-9]+$"); 121 | if(numberStr==null) 122 | return 0; 123 | Pattern pattern=Pattern.compile("^[\\-]{0,1}[0-9]+$"); 124 | Matcher matcher = pattern.matcher(numberStr); 125 | if(matcher.find()){ 126 | return Integer.parseInt(numberStr); 127 | }else{ 128 | return 0; 129 | } 130 | } 131 | 132 | } 133 | -------------------------------------------------------------------------------- /src/com/util/testFilter.java: -------------------------------------------------------------------------------- 1 | package com.util; 2 | 3 | import javax.servlet.*; 4 | 5 | import javax.servlet.http.*; 6 | 7 | import java.io.*; 8 | import java.util.HashMap; 9 | 10 | public class testFilter extends HttpServlet implements Filter { 11 | private FilterConfig filterConfig; 12 | 13 | // Handle the passed-in FilterConfig 14 | public void init(FilterConfig filterConfig) throws ServletException { 15 | this.filterConfig = filterConfig; 16 | } 17 | 18 | // Process the request/response pair 19 | public void doFilter(ServletRequest request, ServletResponse response, 20 | FilterChain filterChain) { 21 | /*try { 22 | ((HttpServletResponse) response).setHeader("Pragma", "No-cache"); 23 | ((HttpServletResponse) response).setHeader("Cache-Control", "no-cache"); 24 | ((HttpServletResponse) response).setHeader("Expires", "0"); 25 | //request.setCharacterEncoding("UTF-8"); 26 | response.setCharacterEncoding("UTF-8"); 27 | request.setCharacterEncoding("UTF-8"); 28 | filterChain.doFilter(request, response); 29 | } catch (ServletException sx) { 30 | filterConfig.getServletContext().log(sx.getMessage()); 31 | } catch (IOException iox) { 32 | filterConfig.getServletContext().log(iox.getMessage()); 33 | }*/ 34 | /*HttpServletRequest req = null; 35 | HttpSession session = req.getSession(); 36 | HashMap user = (HashMap)session.getAttribute("admin"); 37 | System.out.println("bbbbbbbbbbbbbbbbbbb--==="+user.get("uname"));*/ 38 | try { 39 | //request.getRequestDispatcher("http://localhost:8080/xsgl").forward(request, response); 40 | ((HttpServletResponse)response).sendRedirect("http://localhost:808/tbm/index.jsp"); 41 | } catch (Exception e) { 42 | // TODO Auto-generated catch block 43 | e.printStackTrace(); 44 | } 45 | } 46 | 47 | // Clean up resources 48 | public void destroy() { 49 | } 50 | } 51 | -------------------------------------------------------------------------------- /src/mybatis-config.xml: -------------------------------------------------------------------------------- 1 |  2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /src/springMVC-config.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 10 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | --------------------------------------------------------------------------------