首页 星云 工具 资源 星选 资讯 热门工具
:

PDF转图片 完全免费 小红书视频下载 无水印 抖音视频下载 无水印 数字星空

attendanceManagement.zip

行业研究 23.73MB 3 需要积分: 1
立即下载

资源介绍:

attendanceManagement.zip
package demo.action; import java.io.IOException; import java.io.PrintWriter; import java.io.UnsupportedEncodingException; import java.sql.Date; import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.ArrayList; import java.util.Arrays; import java.util.List; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import net.sf.json.JSONObject; import org.apache.struts2.ServletActionContext; import com.opensymphony.xwork2.ActionContext; import com.opensymphony.xwork2.ActionSupport; import demo.bean.ResultBean; import demo.bean.SignInfo; import demo.bean.Staff; import demo.service.SignInfoService; import demo.service.StaffService; public class SignInfoAction extends ActionSupport { /** * */ private static final long serialVersionUID = 1L; private Integer signId; private Staff staff; private String signDate; private String signStatus; private String appeal; private String appealResult; private String dataSources; private String startDate; private String endDate; private String branch; private List signInfos = new ArrayList(); private SignInfo signInfo; private int staffId; private String chooseBranch[]; private String startD; private String endD; private String type; private String datasourceJudge; private String operation; public String getDatasourceJudge() { return datasourceJudge; } public void setDatasourceJudge(String datasourceJudge) { this.datasourceJudge = datasourceJudge; } public String getOperation() { return operation; } public void setOperation(String operation) { this.operation = operation; } public String getType() { return type; } public void setType(String type) { this.type = type; } public String getStartD() { return startD; } public void setStartD(String startD) { this.startD = startD; } public String getEndD() { return endD; } public void setEndD(String endD) { this.endD = endD; } public String[] getChooseBranch() { return chooseBranch; } public void setChooseBranch(String[] chooseBranch) { this.chooseBranch = chooseBranch; } private SignInfoService signInfoService; private StaffService staffService; public static long getSerialVersionUID() { return serialVersionUID; } public StaffService getStaffService() { return staffService; } public void setStaffService(StaffService staffService) { this.staffService = staffService; } public String getSignDate() { return signDate; } public void setSignDate(String signDate) { this.signDate = signDate; } public void setSignStatus(String signStatus) { this.signStatus = signStatus; } public SignInfo getSignInfo() { return signInfo; } public void setSignInfo(SignInfo signInfo) { this.signInfo = signInfo; } public List getSignInfos() { return signInfos; } public void setSignInfos(List signInfos) { this.signInfos = signInfos; } public void setStaffId(int staffId) { this.staffId = staffId; } public void setBranch(String branch) { this.branch = branch; } public void setStartDate(String startDate) { this.startDate = startDate; } public void setEndDate(String endDate) { this.endDate = endDate; } public void setSignId(Integer signId) { this.signId = signId; } public Staff getStaff() { return staff; } public void setStaff(Staff staff) { this.staff = staff; } public void setAppeal(String appeal) { this.appeal = appeal; } public void setAppealResult(String appealResult) { this.appealResult = appealResult; } public void setDataSources(String dataSources) { this.dataSources = dataSources; } public void setSignInfoService(SignInfoService signInfoService) { this.signInfoService = signInfoService; } public Integer getSignId() { return signId; } public String getSignStatus() { return signStatus; } public String getAppeal() { return appeal; } public String getAppealResult() { return appealResult; } public String getDataSources() { return dataSources; } public String getStartDate() { return startDate; } public String getEndDate() { return endDate; } public String getBranch() { return branch; } public int getStaffId() { return staffId; } public SignInfoService getSignInfoService() { return signInfoService; } @SuppressWarnings("unchecked") public String findByBranchAndDate() { Date start=Date.valueOf(startDate); Date end=Date.valueOf(endDate); this.signInfos=signInfoService.findByBranchDate(branch, start, end); return SUCCESS; } @SuppressWarnings("unchecked") public String findByBranch(){ HttpServletRequest request = ServletActionContext.getRequest(); try { request.setCharacterEncoding("utf-8"); } catch (UnsupportedEncodingException e) { e.printStackTrace(); } //获取选中的值 this.branch = request.getParameter("duty1"); this.signInfos=signInfoService.findByBranch(branch); return SUCCESS; } @SuppressWarnings("unchecked") public String findSignInfoByStaffId() { this.signInfos=signInfoService.findByStaffId(staffId); return SUCCESS; } public String findAllSignInfo(){ this.signInfos=signInfoService.findAll(); return SUCCESS; } @SuppressWarnings("unchecked") public String findByDateAndStaffId() { SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd"); java.util.Date date = null; try { date = formatter.parse(signDate); } catch (ParseException e) { e.printStackTrace(); } this.signInfos=signInfoService.findByDateAndStaffId(staffId, date); return SUCCESS; } public String findByDateAndStaffIdFront() { SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd"); java.util.Date date = null; try { date = formatter.parse(signDate); } catch (ParseException e) { e.printStackTrace(); } this.signInfos=signInfoService.findByDateAndStaffId(staffId, date); return SUCCESS; } @SuppressWarnings("unchecked") public String clearData(){ this.signInfos = signInfoService.findByStaffId(staffId); for (SignInfo signInfo : signInfos) { if(signInfo.getDataSources().equals("银河大厦")){ }else { signInfo.setDataSources("无效"); signInfoService.updateSignInfo(signInfo); } } return SUCCESS; } @SuppressWarnings("unchecked") public String findByDateAndStaffIdShowChart(){ HttpServletRequest request = ServletActionContext.getRequest(); HttpServletResponse response = ServletActionContext.getResponse(); try { request.setCharacterEncoding("utf-8"); response.setCharacterEncoding("utf-8"); } catch (UnsupportedEncodingException e) { e.printStackTrace(); } System.out.println("欢迎使用echartsAction"); Date start=Date.valueOf(startDate); Date end=Date.valueOf(endDate); List list = signInfoService.findBetweenDateById(staffId, start, end); ResultBean rb = new ResultBean(); if(list.size()>0){ rb.setCode(200); rb.setMessage("获取数据成功"); List dataX = new ArrayList(); List dataY = new ArrayList(); List dataY1 = new ArrayList(); SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd"); for (SignInfo signInfo:list) { dataX.add(sdf.format(signInfo.getSignDate())); dataY1.add(signInfo.getSignStatus()); if(signInfo.getSignStatus().equals("满勤")){ dataY.add(10); }else if(signInfo.getSignStatus().equals("迟到")){ dataY.add(7);

资源文件列表:

attendanceManagement.zip 大约有245个文件
  1. attendanceManagement/.classpath 7.8KB
  2. attendanceManagement/.myeclipse/
  3. attendanceManagement/.myhibernatedata 546B
  4. attendanceManagement/.mymetadata 333B
  5. attendanceManagement/.project 1.6KB
  6. attendanceManagement/.settings/
  7. attendanceManagement/.settings/.jsdtscope 500B
  8. attendanceManagement/.settings/org.eclipse.jdt.core.prefs 330B
  9. attendanceManagement/.settings/org.eclipse.wst.jsdt.ui.superType.container 49B
  10. attendanceManagement/.settings/org.eclipse.wst.jsdt.ui.superType.name 6B
  11. attendanceManagement/.settings/org.eclipse.wst.validation.prefs 425B
  12. attendanceManagement/src/
  13. attendanceManagement/src/applicationContext.xml 4.04KB
  14. attendanceManagement/src/demo/
  15. attendanceManagement/src/demo/action/
  16. attendanceManagement/src/demo/action/CommentAction.java 5.52KB
  17. attendanceManagement/src/demo/action/IndexAction.java 635B
  18. attendanceManagement/src/demo/action/SignInfoAction.java 13.74KB
  19. attendanceManagement/src/demo/action/StaffAction.java 6.78KB
  20. attendanceManagement/src/demo/action/StatisticAction.java 1.71KB
  21. attendanceManagement/src/demo/bean/
  22. attendanceManagement/src/demo/bean/ResultBean.java 1.01KB
  23. attendanceManagement/src/demo/bean/SignInfo.hbm.xml 1.89KB
  24. attendanceManagement/src/demo/bean/SignInfo.java 2.23KB
  25. attendanceManagement/src/demo/bean/Staff.hbm.xml 1.92KB
  26. attendanceManagement/src/demo/bean/Staff.java 2.17KB
  27. attendanceManagement/src/demo/dao/
  28. attendanceManagement/src/demo/dao/impl/
  29. attendanceManagement/src/demo/dao/impl/SignInfoDaoImpl.java 3.11KB
  30. attendanceManagement/src/demo/dao/impl/StaffDaoImpl.java 1.23KB
  31. attendanceManagement/src/demo/dao/SignInfoDao.java 685B
  32. attendanceManagement/src/demo/dao/StaffDao.java 368B
  33. attendanceManagement/src/demo/service/
  34. attendanceManagement/src/demo/service/impl/
  35. attendanceManagement/src/demo/service/impl/SignInfoServiceImpl.java 1.53KB
  36. attendanceManagement/src/demo/service/impl/StaffServiceImpl.java 888B
  37. attendanceManagement/src/demo/service/impl/test/
  38. attendanceManagement/src/demo/service/impl/test/SignInfoServiceTest.java 4.02KB
  39. attendanceManagement/src/demo/service/impl/test/StaffServiceTest.java 2.48KB
  40. attendanceManagement/src/demo/service/SignInfoService.java 693B
  41. attendanceManagement/src/demo/service/StaffService.java 380B
  42. attendanceManagement/src/demo/util/
  43. attendanceManagement/src/demo/util/ConstantUtil.java 339B
  44. attendanceManagement/src/demo/util/EncryptUtil.java 6.8KB
  45. attendanceManagement/src/demo/util/JsonUtil.java 2.88KB
  46. attendanceManagement/src/hibernate.cfg.xml 1.02KB
  47. attendanceManagement/src/HibernateSessionFactory.java 3.16KB
  48. attendanceManagement/src/log4j.properties 246B
  49. attendanceManagement/src/struts.xml 4.63KB
  50. attendanceManagement/WebRoot/
  51. attendanceManagement/WebRoot/addSignInfo.jsp 3.12KB
  52. attendanceManagement/WebRoot/addStaff.jsp 2.89KB
  53. attendanceManagement/WebRoot/back_comment_list.jsp 5.84KB
  54. attendanceManagement/WebRoot/back_down.jsp 588B
  55. attendanceManagement/WebRoot/back_left.jsp 2.61KB
  56. attendanceManagement/WebRoot/back_main.jsp 1.1KB
  57. attendanceManagement/WebRoot/back_right.jsp 1.31KB
  58. attendanceManagement/WebRoot/back_rignt.jsp 1.11KB
  59. attendanceManagement/WebRoot/back_top.jsp 917B
  60. attendanceManagement/WebRoot/css/
  61. attendanceManagement/WebRoot/css/public.css 24.2KB
  62. attendanceManagement/WebRoot/edit_signInfo.jsp 2.48KB
  63. attendanceManagement/WebRoot/edit_staffInfo.jsp 3KB
  64. attendanceManagement/WebRoot/front_comment_list.jsp 4.01KB
  65. attendanceManagement/WebRoot/front_down.jsp 1.95KB
  66. attendanceManagement/WebRoot/front_last.jsp 468B
  67. attendanceManagement/WebRoot/front_left.jsp 464B
  68. attendanceManagement/WebRoot/front_main.jsp 888B
  69. attendanceManagement/WebRoot/front_sign_query.jsp 2.69KB
  70. attendanceManagement/WebRoot/front_top.jsp 949B
  71. attendanceManagement/WebRoot/img/
  72. attendanceManagement/WebRoot/img/Automuntree.jpg 95.11KB
  73. attendanceManagement/WebRoot/img/bai.png 213.84KB
  74. attendanceManagement/WebRoot/img/bluestar.jpg 16.11KB
  75. attendanceManagement/WebRoot/img/book.jpg 186.11KB
  76. attendanceManagement/WebRoot/img/buildings.jpg 39.84KB
  77. attendanceManagement/WebRoot/img/bulingstar.jpg 13.58KB
  78. attendanceManagement/WebRoot/img/cat.jpg 60.79KB
  79. attendanceManagement/WebRoot/img/colorfulstar.jpg 41.47KB
  80. attendanceManagement/WebRoot/img/drink.jpg 9.74KB
  81. attendanceManagement/WebRoot/img/errorjpg.jpg 25.21KB
  82. attendanceManagement/WebRoot/img/frontback.jpg 92.94KB
  83. attendanceManagement/WebRoot/img/greenleaf.jpg 4.07KB
  84. attendanceManagement/WebRoot/img/hand.jpeg 42.68KB
  85. attendanceManagement/WebRoot/img/jianbian1.jpg 21.61KB
  86. attendanceManagement/WebRoot/img/jianbian2.jpg 7.47KB
  87. attendanceManagement/WebRoot/img/jixie6.jpg 30.01KB
  88. attendanceManagement/WebRoot/img/jixie9.jpg 98.9KB
  89. attendanceManagement/WebRoot/img/l.png 139.13KB
  90. attendanceManagement/WebRoot/img/lastleaf.jpg 17.59KB
  91. attendanceManagement/WebRoot/img/leaf.jpg 19.12KB
  92. attendanceManagement/WebRoot/img/luoye.jpg 12.25KB
  93. attendanceManagement/WebRoot/img/lvlin.jpg 114.95KB
  94. attendanceManagement/WebRoot/img/muban.jpg 202.85KB
  95. attendanceManagement/WebRoot/img/rain.jpg 11.45KB
  96. attendanceManagement/WebRoot/img/rainbow.jpg 3.7KB
  97. attendanceManagement/WebRoot/img/register.jpg 27.79KB
  98. attendanceManagement/WebRoot/img/stars.jpg 16.21KB
  99. attendanceManagement/WebRoot/img/tec.jpg 15.12KB
  100. attendanceManagement/WebRoot/img/techno.jpg 37.5KB
  101. attendanceManagement/WebRoot/img/techo.jpg 50.86KB
  102. attendanceManagement/WebRoot/img/tick.jpg 6.43KB
  103. attendanceManagement/WebRoot/img/tick2.psd 505.28KB
  104. attendanceManagement/WebRoot/img/tie.jpg 5.64KB
  105. attendanceManagement/WebRoot/img/water.jpg 54.76KB
  106. attendanceManagement/WebRoot/img/wutong.jpg 27.6KB
  107. attendanceManagement/WebRoot/img/yellowback.jpg 10KB
  108. attendanceManagement/WebRoot/img/yellowbuilding.jpg 20.44KB
  109. attendanceManagement/WebRoot/img/yezi.jpg 17.14KB
  110. attendanceManagement/WebRoot/index.jsp 974B
  111. attendanceManagement/WebRoot/js/
  112. attendanceManagement/WebRoot/js/echarts.all.js 2.24KB
  113. attendanceManagement/WebRoot/js/echarts.blank.js 888B
  114. attendanceManagement/WebRoot/js/echarts.common.js 1.41KB
  115. attendanceManagement/WebRoot/js/echarts.min.js 484.51KB
  116. attendanceManagement/WebRoot/js/echarts.simple.js 974B
  117. attendanceManagement/WebRoot/js/exporting.js 13.61KB
  118. attendanceManagement/WebRoot/js/exporting.src.js 86.43KB
  119. attendanceManagement/WebRoot/js/global.js 4.32KB
  120. attendanceManagement/WebRoot/js/highcharts-3d.js 39.05KB
  121. attendanceManagement/WebRoot/js/highcharts-3d.src.js 166.99KB
  122. attendanceManagement/WebRoot/js/highcharts-more.js 69.22KB
  123. attendanceManagement/WebRoot/js/highcharts-more.src.js 402.34KB
  124. attendanceManagement/WebRoot/js/highcharts.js 224.76KB
  125. attendanceManagement/WebRoot/js/highcharts.src.js 1.78MB
  126. attendanceManagement/WebRoot/js/jquery-1.11.1.min.js 93.54KB
  127. attendanceManagement/WebRoot/js/jquery-3.3.1.min.js 84.89KB
  128. attendanceManagement/WebRoot/js/jquery.autoTextarea.js 1.62KB
  129. attendanceManagement/WebRoot/js/jquery.min.js 90.93KB
  130. attendanceManagement/WebRoot/js/kkpager.min.js 5.81KB
  131. attendanceManagement/WebRoot/js/kkpager_blue.css 1.85KB
  132. attendanceManagement/WebRoot/js/part.js 1.38KB
  133. attendanceManagement/WebRoot/login.jsp 2.15KB
  134. attendanceManagement/WebRoot/login_error.jsp 920B
  135. attendanceManagement/WebRoot/main.html 571B
  136. attendanceManagement/WebRoot/META-INF/
  137. attendanceManagement/WebRoot/META-INF/MANIFEST.MF 36B
  138. attendanceManagement/WebRoot/MyJsp.jsp 1.24KB
  139. attendanceManagement/WebRoot/signInfo_list.jsp 2.32KB
  140. attendanceManagement/WebRoot/Sign_query.jsp 4.45KB
  141. attendanceManagement/WebRoot/staffInfo.jsp 1.77KB
  142. attendanceManagement/WebRoot/staffInfo_list.jsp 2.79KB
  143. attendanceManagement/WebRoot/staffStatusQuery.jsp 2.67KB
  144. attendanceManagement/WebRoot/staffStatusQueryStatistic.jsp 2.73KB
  145. attendanceManagement/WebRoot/statistic.jsp 3.17KB
  146. attendanceManagement/WebRoot/WEB-INF/
  147. attendanceManagement/WebRoot/WEB-INF/classes/
  148. attendanceManagement/WebRoot/WEB-INF/classes/applicationContext.xml 4.04KB
  149. attendanceManagement/WebRoot/WEB-INF/classes/demo/
  150. attendanceManagement/WebRoot/WEB-INF/classes/demo/action/
  151. attendanceManagement/WebRoot/WEB-INF/classes/demo/action/CommentAction.class 5.26KB
  152. attendanceManagement/WebRoot/WEB-INF/classes/demo/action/IndexAction.class 987B
  153. attendanceManagement/WebRoot/WEB-INF/classes/demo/action/SignInfoAction.class 13.2KB
  154. attendanceManagement/WebRoot/WEB-INF/classes/demo/action/StaffAction.class 8.48KB
  155. attendanceManagement/WebRoot/WEB-INF/classes/demo/action/StatisticAction.class 2.1KB
  156. attendanceManagement/WebRoot/WEB-INF/classes/demo/bean/
  157. attendanceManagement/WebRoot/WEB-INF/classes/demo/bean/Comment.class 1.57KB
  158. attendanceManagement/WebRoot/WEB-INF/classes/demo/bean/Comment.hbm.xml 905B
  159. attendanceManagement/WebRoot/WEB-INF/classes/demo/bean/ResultBean.class 1.77KB
  160. attendanceManagement/WebRoot/WEB-INF/classes/demo/bean/SignInfo.class 2.67KB
  161. attendanceManagement/WebRoot/WEB-INF/classes/demo/bean/SignInfo.hbm.xml 1.89KB
  162. attendanceManagement/WebRoot/WEB-INF/classes/demo/bean/Staff.class 2.63KB
  163. attendanceManagement/WebRoot/WEB-INF/classes/demo/bean/Staff.hbm.xml 1.92KB
  164. attendanceManagement/WebRoot/WEB-INF/classes/demo/bean/Statistics.class 1.9KB
  165. attendanceManagement/WebRoot/WEB-INF/classes/demo/bean/Statistics.hbm.xml 1.24KB
  166. attendanceManagement/WebRoot/WEB-INF/classes/demo/dao/
  167. attendanceManagement/WebRoot/WEB-INF/classes/demo/dao/CommentDao.class 373B
  168. attendanceManagement/WebRoot/WEB-INF/classes/demo/dao/impl/
  169. attendanceManagement/WebRoot/WEB-INF/classes/demo/dao/impl/CommentDaoImpl.class 1.89KB
  170. attendanceManagement/WebRoot/WEB-INF/classes/demo/dao/impl/SignInfoDaoImpl.class 3.96KB
  171. attendanceManagement/WebRoot/WEB-INF/classes/demo/dao/impl/StaffDaoImpl.class 2.21KB
  172. attendanceManagement/WebRoot/WEB-INF/classes/demo/dao/SignInfoDao.class 764B
  173. attendanceManagement/WebRoot/WEB-INF/classes/demo/dao/StaffDao.class 418B
  174. attendanceManagement/WebRoot/WEB-INF/classes/demo/service/
  175. attendanceManagement/WebRoot/WEB-INF/classes/demo/service/CommentService.class 363B
  176. attendanceManagement/WebRoot/WEB-INF/classes/demo/service/impl/
  177. attendanceManagement/WebRoot/WEB-INF/classes/demo/service/impl/CommentServiceImpl.class 1.67KB
  178. attendanceManagement/WebRoot/WEB-INF/classes/demo/service/impl/SignInfoServiceImpl.class 2.18KB
  179. attendanceManagement/WebRoot/WEB-INF/classes/demo/service/impl/StaffServiceImpl.class 1.45KB
  180. attendanceManagement/WebRoot/WEB-INF/classes/demo/service/impl/test/
  181. attendanceManagement/WebRoot/WEB-INF/classes/demo/service/impl/test/CommentServiceTest.class 1.96KB
  182. attendanceManagement/WebRoot/WEB-INF/classes/demo/service/impl/test/SignInfoServiceTest.class 5.37KB
  183. attendanceManagement/WebRoot/WEB-INF/classes/demo/service/impl/test/StaffServiceTest.class 3.8KB
  184. attendanceManagement/WebRoot/WEB-INF/classes/demo/service/SignInfoService.class 718B
  185. attendanceManagement/WebRoot/WEB-INF/classes/demo/service/StaffService.class 430B
  186. attendanceManagement/WebRoot/WEB-INF/classes/demo/util/
  187. attendanceManagement/WebRoot/WEB-INF/classes/demo/util/ConstantUtil.class 576B
  188. attendanceManagement/WebRoot/WEB-INF/classes/demo/util/EncryptUtil.class 5.06KB
  189. attendanceManagement/WebRoot/WEB-INF/classes/demo/util/JsonUtil.class 2.7KB
  190. attendanceManagement/WebRoot/WEB-INF/classes/hibernate.cfg.xml 1.02KB
  191. attendanceManagement/WebRoot/WEB-INF/classes/HibernateSessionFactory.class 2.46KB
  192. attendanceManagement/WebRoot/WEB-INF/classes/log4j.properties 246B
  193. attendanceManagement/WebRoot/WEB-INF/classes/struts.xml 4.63KB
  194. attendanceManagement/WebRoot/WEB-INF/lib/
  195. attendanceManagement/WebRoot/WEB-INF/lib/antlr-2.7.6.jar 433.04KB
  196. attendanceManagement/WebRoot/WEB-INF/lib/c3p0-0.9.1.jar 594.12KB
  197. attendanceManagement/WebRoot/WEB-INF/lib/commons-beanutils-1.7.0.jar 184.25KB
  198. attendanceManagement/WebRoot/WEB-INF/lib/commons-collections-3.1.jar 546.26KB
  199. attendanceManagement/WebRoot/WEB-INF/lib/commons-fileupload-1.2.1.jar 56.42KB
  200. attendanceManagement/WebRoot/WEB-INF/lib/commons-io-1.3.2.jar 85.72KB
  201. attendanceManagement/WebRoot/WEB-INF/lib/commons-lang-2.3.jar 239.53KB
  202. attendanceManagement/WebRoot/WEB-INF/lib/commons-logging-1.0.4.jar 37.12KB
  203. attendanceManagement/WebRoot/WEB-INF/lib/commons-validator-1.3.1.jar 135.7KB
  204. attendanceManagement/WebRoot/WEB-INF/lib/dom4j.jar 306.54KB
  205. attendanceManagement/WebRoot/WEB-INF/lib/ejb3-persistence.jar 49.4KB
  206. attendanceManagement/WebRoot/WEB-INF/lib/ezmorph-1.0.3.jar 76KB
  207. attendanceManagement/WebRoot/WEB-INF/lib/fastjson-1.2.49.jar 548.47KB
  208. attendanceManagement/WebRoot/WEB-INF/lib/freemarker-2.3.13.jar 849.89KB
  209. attendanceManagement/WebRoot/WEB-INF/lib/hibernate-annotations.jar 273.16KB
  210. attendanceManagement/WebRoot/WEB-INF/lib/hibernate-commons-annotations.jar 65.42KB
  211. attendanceManagement/WebRoot/WEB-INF/lib/hibernate-core.jar 2.16MB
  212. attendanceManagement/WebRoot/WEB-INF/lib/hibernate3.jar 2.31MB
  213. attendanceManagement/WebRoot/WEB-INF/lib/javassist-3.9.0.GA.jar 583.47KB
  214. attendanceManagement/WebRoot/WEB-INF/lib/javassist.jar 459.97KB
  215. attendanceManagement/WebRoot/WEB-INF/lib/json-lib-2.4-jdk15.jar 155.39KB
  216. attendanceManagement/WebRoot/WEB-INF/lib/jta-1.1.jar 12.93KB
  217. attendanceManagement/WebRoot/WEB-INF/lib/jta.jar 12.93KB
  218. attendanceManagement/WebRoot/WEB-INF/lib/junit-4.4.jar 157.69KB
  219. attendanceManagement/WebRoot/WEB-INF/lib/log4j-1.2.15.jar 382.65KB
  220. attendanceManagement/WebRoot/WEB-INF/lib/Loginserver.jar 2.07KB
  221. attendanceManagement/WebRoot/WEB-INF/lib/mysql-connector-java-5.1.30-bin.jar 931.68KB
  222. attendanceManagement/WebRoot/WEB-INF/lib/ognl-2.6.11.jar 164.14KB
  223. attendanceManagement/WebRoot/WEB-INF/lib/okhttp-3.2.0.jar 327.65KB
  224. attendanceManagement/WebRoot/WEB-INF/lib/picasso-2.0.0.jar 77.06KB
  225. attendanceManagement/WebRoot/WEB-INF/lib/rxjava-1.3.8.jar 1.11MB
  226. attendanceManagement/WebRoot/WEB-INF/lib/slf4j-api-1.5.0.jar 16.2KB
  227. attendanceManagement/WebRoot/WEB-INF/lib/slf4j-log4j12-1.5.0.jar 8.67KB
  228. attendanceManagement/WebRoot/WEB-INF/lib/spring-beans.jar 476.84KB
  229. attendanceManagement/WebRoot/WEB-INF/lib/spring-context-support.jar 94.61KB
  230. attendanceManagement/WebRoot/WEB-INF/lib/spring-context.jar 465.76KB
  231. attendanceManagement/WebRoot/WEB-INF/lib/spring-core.jar 278.8KB
  232. attendanceManagement/WebRoot/WEB-INF/lib/spring-orm.jar 368.95KB
  233. attendanceManagement/WebRoot/WEB-INF/lib/spring-test.jar 176.68KB
  234. attendanceManagement/WebRoot/WEB-INF/lib/spring-tx.jar 225.75KB
  235. attendanceManagement/WebRoot/WEB-INF/lib/spring-web.jar 190.02KB
  236. attendanceManagement/WebRoot/WEB-INF/lib/spring.jar 2.81MB
  237. attendanceManagement/WebRoot/WEB-INF/lib/struts2-core-2.1.6.jar 719.45KB
  238. attendanceManagement/WebRoot/WEB-INF/lib/struts2-dojo-plugin-2.1.6.jar 1.65MB
  239. attendanceManagement/WebRoot/WEB-INF/lib/struts2-jfreechart-plugin-2.1.6.jar 9.58KB
  240. attendanceManagement/WebRoot/WEB-INF/lib/struts2-spring-plugin-2.1.6.jar 9.34KB
  241. attendanceManagement/WebRoot/WEB-INF/lib/taglibs-standard-impl-1.2.5.jar 201.59KB
  242. attendanceManagement/WebRoot/WEB-INF/lib/taglibs-standard-spec-1.2.5.jar 39.21KB
  243. attendanceManagement/WebRoot/WEB-INF/lib/xwork-2.1.2.jar 2.18MB
  244. attendanceManagement/WebRoot/WEB-INF/web.xml 2.02KB
  245. attendanceManagement/
0评论
提交 加载更多评论
其他资源 木头UI纹理按钮边框 背景图标 带PNG素材:Wooden UI 1.0
资源包包含以下元素:按钮、图标、框架、复选框等,提供分层的 PSD 文件。
研旭DSP28335代码
研旭DSP28335代码
优化后的ListView(自定义Adapter).zip
优化后的ListView(自定义Adapter).zip
Python校园学生一卡通管理
Python校园学生一卡通管理
125274266A455CC5F5FED1C2F6F25EDD.zip
125274266A455CC5F5FED1C2F6F25EDD.zip
125274266A455CC5F5FED1C2F6F25EDD.zip 125274266A455CC5F5FED1C2F6F25EDD.zip 125274266A455CC5F5FED1C2F6F25EDD.zip
数据手册-SN75176B-datasheet.zip
数据手册-SN75176B-datasheet.zip
植物大战僵尸杂交版2.3.7安装程序+通关存档+使用说明
植物大战僵尸杂交版2.3.7安装程序+通关存档+使用说明
C语言例程-文件读写操作代码
c语言文件读写操作代码