├── README.md ├── Rpt ├── .classpath ├── .project ├── .scannerwork │ ├── .sonar_lock │ └── report-task.txt ├── .settings │ ├── .jsdtscope │ ├── org.eclipse.core.resources.prefs │ ├── org.eclipse.jdt.core.prefs │ ├── org.eclipse.m2e.core.prefs │ ├── org.eclipse.wst.common.component │ ├── org.eclipse.wst.common.project.facet.core.prefs.xml │ ├── org.eclipse.wst.common.project.facet.core.xml │ ├── org.eclipse.wst.jsdt.ui.superType.container │ ├── org.eclipse.wst.jsdt.ui.superType.name │ └── org.eclipse.wst.validation.prefs ├── pom.xml ├── sonar-project.properties ├── src │ └── main │ │ ├── java │ │ └── com │ │ │ └── fin │ │ │ ├── controller │ │ │ ├── AdvertController.java │ │ │ ├── ChartsController.java │ │ │ ├── CostTotalController.java │ │ │ ├── DataInController.java │ │ │ ├── DeptController.java │ │ │ ├── ExportController.java │ │ │ ├── HelpController.java │ │ │ ├── IndexController.java │ │ │ ├── ItemController.java │ │ │ ├── TestController.java │ │ │ └── UserController.java │ │ │ ├── dao │ │ │ ├── AdvertDAO.java │ │ │ ├── DataDetailDAO.java │ │ │ ├── DeptDAO.java │ │ │ ├── ItemDAO.java │ │ │ └── UserDAO.java │ │ │ ├── entity │ │ │ ├── AdvertModel.java │ │ │ ├── DataDetailModel.java │ │ │ ├── DataResult.java │ │ │ ├── Dept.java │ │ │ ├── Item.java │ │ │ └── User.java │ │ │ ├── mapper │ │ │ ├── AdvertMapper.xml │ │ │ ├── DataDetailMapper.xml │ │ │ ├── DeptMapper.xml │ │ │ ├── ItemMapper.xml │ │ │ └── UserMapper.xml │ │ │ └── service │ │ │ ├── AdvertService.java │ │ │ ├── DataDetailService.java │ │ │ ├── DeptService.java │ │ │ ├── ItemService.java │ │ │ ├── UserService.java │ │ │ └── impl │ │ │ ├── AdvertServiceImpl.java │ │ │ ├── DataDetailServiceImpl.java │ │ │ ├── DeptServiceImpl.java │ │ │ ├── ItemServiceImpl.java │ │ │ └── UserServiceImpl.java │ │ ├── resources │ │ ├── applicationContext.xml │ │ └── properties │ │ │ └── log4j.properties │ │ └── webapp │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── WEB-INF │ │ ├── view │ │ │ ├── dept_detail.jsp │ │ │ ├── help.jsp │ │ │ ├── jsust.html │ │ │ ├── left.jsp │ │ │ ├── login.jsp │ │ │ ├── main.jsp │ │ │ ├── main_charts.jsp │ │ │ ├── main_datain.jsp │ │ │ ├── main_dept.jsp │ │ │ ├── main_item.jsp │ │ │ ├── main_total.jsp │ │ │ ├── pwd_change.jsp │ │ │ ├── show.jsp │ │ │ └── top.jsp │ │ └── web.xml │ │ ├── buttons │ │ ├── button_bg.png │ │ └── buttons.css │ │ ├── css │ │ ├── common.css │ │ ├── icon │ │ │ └── icon-top-quite.png │ │ ├── images │ │ │ ├── check_strip.png │ │ │ ├── hand.png │ │ │ ├── human-round-number.png │ │ │ ├── icon-add-orange.png │ │ │ ├── icon-delete-orange.png │ │ │ ├── icon-edite.png │ │ │ ├── icon-human.png │ │ │ ├── left-handing.png │ │ │ ├── left_hand.png │ │ │ ├── light_grunge.jpg │ │ │ ├── password.png │ │ │ ├── right_hand.png │ │ │ ├── right_handing.png │ │ │ ├── tou.png │ │ │ └── username.png │ │ ├── list_styles.css │ │ ├── login_styles.css │ │ ├── main_advert.css │ │ ├── main_charts.css │ │ └── main_list.css │ │ ├── excel │ │ ├── temp.xls │ │ └── temp_year.xls │ │ ├── finance_sina │ │ ├── finance_sina.html │ │ └── finance_sina_files │ │ │ ├── -HH9-fxqafha0426062.jpg │ │ │ ├── -wWZ-fxryhhu2347280.jpg │ │ │ ├── 03521438493770 │ │ │ ├── 1416600_240-170.jpg │ │ │ ├── 1_Dq-fxnzanm4064598.jpg │ │ │ ├── 20160414YiHaoRenWuCaiShouYouShangJiaoXiaoBiao.jpg │ │ │ ├── 21ba77acae664cf6bda17a4e283e4222.jpg │ │ │ ├── 2df7a0f44b924c9da118fa85255850a8.jpg │ │ │ ├── 36151400058268 │ │ │ ├── 3932012482-1439948427130.jpg │ │ │ ├── 3932012482-1439948544876-23600.html │ │ │ ├── 3932012482-1455502772112.jpg │ │ │ ├── 3932012482-1455502793919-27867.html │ │ │ ├── 3932012482-1463112348074.gif │ │ │ ├── 3932012482-1463112355883-28812.html │ │ │ ├── 3Jdh-fxsktkp9189385.jpg │ │ │ ├── 3bdd8b87ad0c4e8fa3878a2150a14ef0.gif │ │ │ ├── 3t5W-fxsktkz9759413.jpg │ │ │ ├── 491695_24040.jpg │ │ │ ├── 4Hto-fxsktkz9671528.jpg │ │ │ ├── 4OzU-fxsenvm0478355.jpg │ │ │ ├── 4gWm-fxqnski7831816.jpg │ │ │ ├── 654e10ac20a747a2baa6015b92bff575.gif │ │ │ ├── 6T9j-fxsenvx1050653.jpg │ │ │ ├── 6ce57b4e56e64255a52bd57b9979ae88.gif │ │ │ ├── 76411415003612 │ │ │ ├── 8TJT-fxqhmvp6184402.jpg │ │ │ ├── 8b8bcab09a1e4a2d8970f659cefe3371.gif │ │ │ ├── 8jB4-fxrpvea1042350.jpg │ │ │ ├── 9298-fxsktkz9764998.png │ │ │ ├── 9Zdk-fxpvysx1761416.jpg │ │ │ ├── 9tQB-fxqnski7842991.jpg │ │ │ ├── ACtO-fxsenvn7303884.jpg │ │ │ ├── AFqF-fxryhhi8552193.jpg │ │ │ ├── AxLr-fxsktkz9707090.png │ │ │ ├── BVu4-fxpmypf3126983.jpg │ │ │ ├── ChangAnJiangTanCaiShouYouShangJiaoXiaoBiao-RenXiangBan.jpg │ │ │ ├── D65k-fxsmeif4713260.JPG │ │ │ ├── EIQK-fxsenvm0382703.jpg │ │ │ ├── G_37-fxsenvx1048244.jpg │ │ │ ├── GetTopDataList(1).php │ │ │ ├── GetTopDataList(2).php │ │ │ ├── GetTopDataList(3).php │ │ │ ├── GetTopDataList.php │ │ │ ├── IO.WebPush3.localConn.html │ │ │ ├── IbcT-fxqswxn6570217.jpg │ │ │ ├── JFlg-fxqhmvp6224823.jpg │ │ │ ├── Kk1N-fxrytex7334541.jpg │ │ │ ├── OB52-fxqnsks4792734.jpg │ │ │ ├── PHTR-fxpvytf8794229.png │ │ │ ├── PYVR-fxsktkp9056774.jpg │ │ │ ├── QiHuo2.gif │ │ │ ├── R2cE-fxqnsks4789734.jpg │ │ │ ├── TB1HALsJFXXXXb1XpXXSutbFXXX.jpg │ │ │ ├── TB1PyDCHpXXXXagXVXX3yLs_pXX-107-17.png │ │ │ ├── TB1rRQpJXXXXXcvXXXXXXXXXXXX-40-26.png │ │ │ ├── TB1upAiJXXXXXa5aXXXXXXXXXXX-116-30.png │ │ │ ├── U10616P31DT20140415140016.jpg │ │ │ ├── U12164P31T32D126272F651DT20151214100934.png │ │ │ ├── U12204P1493T24D2185F364DT20151113074841.jpg │ │ │ ├── U12678P31T88D31921F2012DT20160523100340.gif │ │ │ ├── U2804P31DT20140504102801.jpg │ │ │ ├── U5403P31DT20160519165856.jpg │ │ │ ├── U7797P31DT20160302134848.jpg │ │ │ ├── VakF-fxsexua6288384.jpg │ │ │ ├── VlUB-fxsktkp9223278.jpg │ │ │ ├── VyvP-fxsktkp9056721.png │ │ │ ├── WYE1-fxryhhi8538134.jpg │ │ │ ├── YzuS-fxqnskh0957464.jpg │ │ │ ├── Zfaw-fxsktkr5913966.jpg │ │ │ ├── abe335c5cc5a435687a1514c5c179c81.gif │ │ │ ├── addfavorite.js │ │ │ ├── adfshow.html │ │ │ ├── as0l-fxqpchx6359760.jpg │ │ │ ├── b.png │ │ │ ├── b64554b780f146aea16e1aae7fa7f1e2.jpg │ │ │ ├── base.css │ │ │ ├── base.js │ │ │ ├── bd_fi_hp.css │ │ │ ├── bd_fi_hp_20151127.js │ │ │ ├── bf8806b954b2404bab030a7815f7a44d.jpg │ │ │ ├── blklike.js │ │ │ ├── cRNk-fxrckae7776020.jpg │ │ │ ├── ckctl(1).html │ │ │ ├── ckctl.html │ │ │ ├── cvbr-fxsenvx1072758.jpg │ │ │ ├── dR7x-fxsktkr5934090.jpg │ │ │ ├── datepicker-pack.js │ │ │ ├── default_avatar_male_50.gif │ │ │ ├── directAd_cj.js │ │ │ ├── eretpl_3_1000_100.html │ │ │ ├── ex │ │ │ ├── ex(1) │ │ │ ├── financebottom.js │ │ │ ├── financehead.js │ │ │ ├── fonts.swf │ │ │ ├── headcj.js │ │ │ ├── iplookup.php │ │ │ ├── k0Rx-fxsktkr5974805.jpg │ │ │ ├── kfWU-fxsenvm0526856.png │ │ │ ├── leju.js │ │ │ ├── libweb.js │ │ │ ├── licaishi_tab.css │ │ │ ├── list=CFF_LIST │ │ │ ├── m2.js │ │ │ ├── mini.js │ │ │ ├── mm_15890324_2192376_13112611.js │ │ │ ├── nsh000001.gif │ │ │ ├── outlogin_skin_finance.css │ │ │ ├── pre_loading.gif │ │ │ ├── qT6q-fxqnskh0957305.jpg │ │ │ ├── qc1m-fxsktkp8994414.jpg │ │ │ ├── rG_I-fxsktkr5954762.jpg │ │ │ ├── realtime.js │ │ │ ├── resize │ │ │ ├── resize(1) │ │ │ ├── resize(2) │ │ │ ├── rn=1464087684202&list=s_sh000001,s_sz399001,s_sh000300,s_sz399415,s_sz399006 │ │ │ ├── sa.js │ │ │ ├── saved_resource(1).html │ │ │ ├── saved_resource.html │ │ │ ├── sea.js │ │ │ ├── search_suggest.js │ │ │ ├── sina_sanshou_2010.php │ │ │ ├── sinaads(1).js │ │ │ ├── sinaads(2).js │ │ │ ├── sinaads(3).js │ │ │ ├── sinaads(4).js │ │ │ ├── sinaads(5).js │ │ │ ├── sinaads(6).js │ │ │ ├── sinaads(7).js │ │ │ ├── sinaads.js │ │ │ ├── sinaads_ck.html │ │ │ ├── sinaads_ck.js │ │ │ ├── sinaads_entry_finance.js │ │ │ ├── sinaere.js │ │ │ ├── ssologin.js │ │ │ ├── sspnew.js │ │ │ ├── store.html │ │ │ ├── suda_m_v629.js │ │ │ ├── suda_s_v851c.js │ │ │ ├── suggestServer_cs20150820.js │ │ │ ├── suggestion │ │ │ ├── sul-1.2.6.js │ │ │ ├── t2Wx-fxqpchx6359841.jpg │ │ │ ├── tanxssp.js │ │ │ ├── td.png │ │ │ ├── tgdata.js │ │ │ ├── tmall.js │ │ │ ├── tonz-fxqswxk9833131.jpg │ │ │ ├── uMPB-fxsmeif4821072.jpg │ │ │ ├── user_panel.js │ │ │ ├── visitor.html │ │ │ ├── weibo_how_ot.png │ │ │ ├── wmt.only_for_caishou2013.js │ │ │ ├── xfCo-fxriqqx3084728.jpg │ │ │ ├── xrku-fxsenvn7290338.jpg │ │ │ └── zyhl-fxnuvxe8455233.jpg │ │ ├── images │ │ ├── human-round-number.png │ │ ├── icon-human.png │ │ └── pic.png │ │ ├── index.jsp │ │ ├── js │ │ ├── My97DatePicker.htm │ │ ├── WdatePicker.js │ │ ├── calendar.js │ │ ├── config.js │ │ ├── echarts.min.js │ │ ├── jquery.form.js │ │ ├── jquery.min.js │ │ ├── lang │ │ │ ├── en.js │ │ │ ├── zh-cn.js │ │ │ └── zh-tw.js │ │ ├── layer.js │ │ ├── layer │ │ │ ├── extend │ │ │ │ └── layer.ext.js │ │ │ ├── layer.js │ │ │ └── skin │ │ │ │ ├── default │ │ │ │ ├── icon-ext.png │ │ │ │ ├── icon.png │ │ │ │ ├── loading-0.gif │ │ │ │ ├── loading-1.gif │ │ │ │ └── loading-2.gif │ │ │ │ ├── layer.css │ │ │ │ └── layer.ext.css │ │ └── skin │ │ │ ├── WdatePicker.css │ │ │ ├── datePicker.gif │ │ │ ├── default │ │ │ ├── datepicker.css │ │ │ └── img.gif │ │ │ └── whyGreen │ │ │ ├── bg.jpg │ │ │ ├── datepicker.css │ │ │ └── img.gif │ │ ├── jsust_files │ │ ├── 2_20_0320.jpg │ │ ├── 2_26_0205.gif │ │ ├── 2_28_0307.jpg │ │ ├── 2_38_0459.gif │ │ ├── 2_38_0527.gif │ │ ├── 2_40_0424.png │ │ ├── 2_51_0309.jpg │ │ ├── 2_64_0229.jpg │ │ ├── 2_73_0406.jpg │ │ ├── 2_76_0310.jpg │ │ ├── 2_76_1120.png │ │ ├── 2_77_0320.jpg │ │ ├── 2_79_0834.gif │ │ ├── 2_89_0316.jpg │ │ ├── 2_92_0320.jpg │ │ ├── base.css │ │ ├── jquery-1.9.1.min.js │ │ ├── jquery-migrate-1.2.1.js │ │ ├── jquery.SuperSlide.2.1.1.js │ │ ├── jqzoom.css │ │ ├── jqzoom.js │ │ ├── script.js │ │ └── style.css │ │ ├── music │ │ └── bg.mp3 │ │ └── taglibs.jsp └── target │ ├── classes │ ├── applicationContext.xml │ ├── com │ │ └── fin │ │ │ ├── controller │ │ │ ├── AdvertController.class │ │ │ ├── ChartsController.class │ │ │ ├── CostTotalController.class │ │ │ ├── DataInController.class │ │ │ ├── DeptController.class │ │ │ ├── ExportController.class │ │ │ ├── HelpController.class │ │ │ ├── IndexController.class │ │ │ ├── ItemController.class │ │ │ ├── TestController.class │ │ │ └── UserController.class │ │ │ ├── dao │ │ │ ├── AdvertDAO.class │ │ │ ├── DataDetailDAO.class │ │ │ ├── DeptDAO.class │ │ │ ├── ItemDAO.class │ │ │ └── UserDAO.class │ │ │ ├── entity │ │ │ ├── AdvertModel.class │ │ │ ├── DataDetailModel.class │ │ │ ├── DataResult.class │ │ │ ├── Dept.class │ │ │ ├── Item.class │ │ │ └── User.class │ │ │ ├── mapper │ │ │ ├── AdvertMapper.xml │ │ │ ├── DataDetailMapper.xml │ │ │ ├── DeptMapper.xml │ │ │ ├── ItemMapper.xml │ │ │ └── UserMapper.xml │ │ │ └── service │ │ │ ├── AdvertService.class │ │ │ ├── DataDetailService.class │ │ │ ├── DeptService.class │ │ │ ├── ItemService.class │ │ │ ├── UserService.class │ │ │ └── impl │ │ │ ├── AdvertServiceImpl.class │ │ │ ├── DataDetailServiceImpl.class │ │ │ ├── DeptServiceImpl.class │ │ │ ├── ItemServiceImpl.class │ │ │ └── UserServiceImpl.class │ └── properties │ │ └── log4j.properties │ └── m2e-wtp │ └── web-resources │ └── META-INF │ ├── MANIFEST.MF │ └── maven │ └── com.fin │ └── Rpt │ ├── pom.properties │ └── pom.xml ├── WebRoot ├── META-INF │ └── MANIFEST.MF ├── WEB-INF │ ├── classes │ │ ├── applicationContext.xml │ │ └── com │ │ │ └── fin │ │ │ ├── controller │ │ │ ├── AdvertController.class │ │ │ ├── ChartsController.class │ │ │ ├── CostTotalController.class │ │ │ ├── DataInController.class │ │ │ ├── DeptController.class │ │ │ ├── ExportController.class │ │ │ ├── HelpController.class │ │ │ ├── IndexController.class │ │ │ ├── ItemController.class │ │ │ └── UserController.class │ │ │ ├── dao │ │ │ ├── AdvertDAO.class │ │ │ ├── DataDetailDAO.class │ │ │ ├── DeptDAO.class │ │ │ ├── ItemDAO.class │ │ │ └── UserDAO.class │ │ │ ├── entity │ │ │ ├── AdvertModel.class │ │ │ ├── DataDetailModel.class │ │ │ ├── DataResult.class │ │ │ ├── Dept.class │ │ │ ├── Item.class │ │ │ └── User.class │ │ │ ├── service │ │ │ ├── AdvertService.class │ │ │ ├── DataDetailService.class │ │ │ ├── DeptService.class │ │ │ ├── ItemService.class │ │ │ ├── UserService.class │ │ │ └── impl │ │ │ │ ├── AdvertServiceImpl.class │ │ │ │ ├── DataDetailServiceImpl.class │ │ │ │ ├── DeptServiceImpl.class │ │ │ │ ├── ItemServiceImpl.class │ │ │ │ └── UserServiceImpl.class │ │ │ ├── sql │ │ │ ├── AdvertMapper.xml │ │ │ ├── DataDetailMapper.xml │ │ │ ├── DeptMapper.xml │ │ │ ├── ItemMapper.xml │ │ │ └── UserMapper.xml │ │ │ └── test │ │ │ ├── MD5Test.class │ │ │ └── StringTest.class │ ├── lib │ │ ├── JavaMD5.jar │ │ ├── aopalliance.jar │ │ ├── aspectjweaver.jar │ │ ├── commons-beanutils-1.8.3.jar │ │ ├── commons-codec-1.8.jar │ │ ├── commons-collections-3.1.jar │ │ ├── commons-dbcp-1.2.2.jar │ │ ├── commons-fileupload-1.2.2.jar │ │ ├── commons-io-1.4.jar │ │ ├── commons-logging-1.1.1.jar │ │ ├── commons-logging.jar │ │ ├── commons-pool.jar │ │ ├── itcast-tools-1.4.2.jar │ │ ├── jackson-annotations-2.4.1.jar │ │ ├── jackson-core-2.4.1.jar │ │ ├── jackson-databind-2.4.1.jar │ │ ├── jstl.jar │ │ ├── mybatis-3.2.5.jar │ │ ├── mybatis-spring-1.2.2.jar │ │ ├── mysql-connector-java-5.1.6-bin.jar │ │ ├── poi-3.13-20150929.jar │ │ ├── poi-3.8.jar │ │ ├── poi-examples-3.13-20150929.jar │ │ ├── poi-excelant-3.13-20150929.jar │ │ ├── poi-ooxml-3.13-20150929.jar │ │ ├── poi-ooxml-schemas-3.13-20150929.jar │ │ ├── poi-scratchpad-3.13-20150929.jar │ │ ├── servlet-api.jar │ │ ├── spring-aop-3.2.8.RELEASE.jar │ │ ├── spring-aspects-3.2.8.RELEASE.jar │ │ ├── spring-beans-3.2.8.RELEASE.jar │ │ ├── spring-context-3.2.8.RELEASE.jar │ │ ├── spring-core-3.2.8.RELEASE.jar │ │ ├── spring-expression-3.2.8.RELEASE.jar │ │ ├── spring-jdbc-3.2.8.RELEASE.jar │ │ ├── spring-tx-3.2.8.RELEASE.jar │ │ ├── spring-web-3.2.8.RELEASE.jar │ │ ├── spring-webmvc-3.2.8.RELEASE.jar │ │ ├── standard.jar │ │ └── xmlbeans-2.6.0.jar │ └── web.xml ├── buttons │ ├── button_bg.png │ └── buttons.css ├── css │ ├── common.css │ ├── icon │ │ └── icon-top-quite.png │ ├── images │ │ ├── check_strip.png │ │ ├── hand.png │ │ ├── human-round-number.png │ │ ├── icon-add-orange.png │ │ ├── icon-delete-orange.png │ │ ├── icon-edite.png │ │ ├── icon-human.png │ │ ├── left-handing.png │ │ ├── left_hand.png │ │ ├── light_grunge.jpg │ │ ├── password.png │ │ ├── right_hand.png │ │ ├── right_handing.png │ │ ├── tou.png │ │ └── username.png │ ├── list_styles.css │ ├── login_styles.css │ ├── main_advert.css │ ├── main_charts.css │ └── main_list.css ├── dept_detail.jsp ├── excel │ ├── temp.xls │ └── temp_year.xls ├── finance_sina │ ├── finance_sina.html │ └── finance_sina_files │ │ ├── -HH9-fxqafha0426062.jpg │ │ ├── -wWZ-fxryhhu2347280.jpg │ │ ├── 03521438493770 │ │ ├── 1416600_240-170.jpg │ │ ├── 1_Dq-fxnzanm4064598.jpg │ │ ├── 20160414YiHaoRenWuCaiShouYouShangJiaoXiaoBiao.jpg │ │ ├── 21ba77acae664cf6bda17a4e283e4222.jpg │ │ ├── 2df7a0f44b924c9da118fa85255850a8.jpg │ │ ├── 36151400058268 │ │ ├── 3932012482-1439948427130.jpg │ │ ├── 3932012482-1439948544876-23600.html │ │ ├── 3932012482-1455502772112.jpg │ │ ├── 3932012482-1455502793919-27867.html │ │ ├── 3932012482-1463112348074.gif │ │ ├── 3932012482-1463112355883-28812.html │ │ ├── 3Jdh-fxsktkp9189385.jpg │ │ ├── 3bdd8b87ad0c4e8fa3878a2150a14ef0.gif │ │ ├── 3t5W-fxsktkz9759413.jpg │ │ ├── 491695_24040.jpg │ │ ├── 4Hto-fxsktkz9671528.jpg │ │ ├── 4OzU-fxsenvm0478355.jpg │ │ ├── 4gWm-fxqnski7831816.jpg │ │ ├── 654e10ac20a747a2baa6015b92bff575.gif │ │ ├── 6T9j-fxsenvx1050653.jpg │ │ ├── 6ce57b4e56e64255a52bd57b9979ae88.gif │ │ ├── 76411415003612 │ │ ├── 8TJT-fxqhmvp6184402.jpg │ │ ├── 8b8bcab09a1e4a2d8970f659cefe3371.gif │ │ ├── 8jB4-fxrpvea1042350.jpg │ │ ├── 9298-fxsktkz9764998.png │ │ ├── 9Zdk-fxpvysx1761416.jpg │ │ ├── 9tQB-fxqnski7842991.jpg │ │ ├── ACtO-fxsenvn7303884.jpg │ │ ├── AFqF-fxryhhi8552193.jpg │ │ ├── AxLr-fxsktkz9707090.png │ │ ├── BVu4-fxpmypf3126983.jpg │ │ ├── ChangAnJiangTanCaiShouYouShangJiaoXiaoBiao-RenXiangBan.jpg │ │ ├── D65k-fxsmeif4713260.JPG │ │ ├── EIQK-fxsenvm0382703.jpg │ │ ├── G_37-fxsenvx1048244.jpg │ │ ├── GetTopDataList(1).php │ │ ├── GetTopDataList(2).php │ │ ├── GetTopDataList(3).php │ │ ├── GetTopDataList.php │ │ ├── IO.WebPush3.localConn.html │ │ ├── IbcT-fxqswxn6570217.jpg │ │ ├── JFlg-fxqhmvp6224823.jpg │ │ ├── Kk1N-fxrytex7334541.jpg │ │ ├── OB52-fxqnsks4792734.jpg │ │ ├── PHTR-fxpvytf8794229.png │ │ ├── PYVR-fxsktkp9056774.jpg │ │ ├── QiHuo2.gif │ │ ├── R2cE-fxqnsks4789734.jpg │ │ ├── TB1HALsJFXXXXb1XpXXSutbFXXX.jpg │ │ ├── TB1PyDCHpXXXXagXVXX3yLs_pXX-107-17.png │ │ ├── TB1rRQpJXXXXXcvXXXXXXXXXXXX-40-26.png │ │ ├── TB1upAiJXXXXXa5aXXXXXXXXXXX-116-30.png │ │ ├── U10616P31DT20140415140016.jpg │ │ ├── U12164P31T32D126272F651DT20151214100934.png │ │ ├── U12204P1493T24D2185F364DT20151113074841.jpg │ │ ├── U12678P31T88D31921F2012DT20160523100340.gif │ │ ├── U2804P31DT20140504102801.jpg │ │ ├── U5403P31DT20160519165856.jpg │ │ ├── U7797P31DT20160302134848.jpg │ │ ├── VakF-fxsexua6288384.jpg │ │ ├── VlUB-fxsktkp9223278.jpg │ │ ├── VyvP-fxsktkp9056721.png │ │ ├── WYE1-fxryhhi8538134.jpg │ │ ├── YzuS-fxqnskh0957464.jpg │ │ ├── Zfaw-fxsktkr5913966.jpg │ │ ├── abe335c5cc5a435687a1514c5c179c81.gif │ │ ├── addfavorite.js │ │ ├── adfshow.html │ │ ├── as0l-fxqpchx6359760.jpg │ │ ├── b.png │ │ ├── b64554b780f146aea16e1aae7fa7f1e2.jpg │ │ ├── base.css │ │ ├── base.js │ │ ├── bd_fi_hp.css │ │ ├── bd_fi_hp_20151127.js │ │ ├── bf8806b954b2404bab030a7815f7a44d.jpg │ │ ├── blklike.js │ │ ├── cRNk-fxrckae7776020.jpg │ │ ├── ckctl(1).html │ │ ├── ckctl.html │ │ ├── cvbr-fxsenvx1072758.jpg │ │ ├── dR7x-fxsktkr5934090.jpg │ │ ├── datepicker-pack.js │ │ ├── default_avatar_male_50.gif │ │ ├── directAd_cj.js │ │ ├── eretpl_3_1000_100.html │ │ ├── ex │ │ ├── ex(1) │ │ ├── financebottom.js │ │ ├── financehead.js │ │ ├── fonts.swf │ │ ├── headcj.js │ │ ├── iplookup.php │ │ ├── k0Rx-fxsktkr5974805.jpg │ │ ├── kfWU-fxsenvm0526856.png │ │ ├── leju.js │ │ ├── libweb.js │ │ ├── licaishi_tab.css │ │ ├── list=CFF_LIST │ │ ├── m2.js │ │ ├── mini.js │ │ ├── mm_15890324_2192376_13112611.js │ │ ├── nsh000001.gif │ │ ├── outlogin_skin_finance.css │ │ ├── pre_loading.gif │ │ ├── qT6q-fxqnskh0957305.jpg │ │ ├── qc1m-fxsktkp8994414.jpg │ │ ├── rG_I-fxsktkr5954762.jpg │ │ ├── realtime.js │ │ ├── resize │ │ ├── resize(1) │ │ ├── resize(2) │ │ ├── rn=1464087684202&list=s_sh000001,s_sz399001,s_sh000300,s_sz399415,s_sz399006 │ │ ├── sa.js │ │ ├── saved_resource(1).html │ │ ├── saved_resource.html │ │ ├── sea.js │ │ ├── search_suggest.js │ │ ├── sina_sanshou_2010.php │ │ ├── sinaads(1).js │ │ ├── sinaads(2).js │ │ ├── sinaads(3).js │ │ ├── sinaads(4).js │ │ ├── sinaads(5).js │ │ ├── sinaads(6).js │ │ ├── sinaads(7).js │ │ ├── sinaads.js │ │ ├── sinaads_ck.html │ │ ├── sinaads_ck.js │ │ ├── sinaads_entry_finance.js │ │ ├── sinaere.js │ │ ├── ssologin.js │ │ ├── sspnew.js │ │ ├── store.html │ │ ├── suda_m_v629.js │ │ ├── suda_s_v851c.js │ │ ├── suggestServer_cs20150820.js │ │ ├── suggestion │ │ ├── sul-1.2.6.js │ │ ├── t2Wx-fxqpchx6359841.jpg │ │ ├── tanxssp.js │ │ ├── td.png │ │ ├── tgdata.js │ │ ├── tmall.js │ │ ├── tonz-fxqswxk9833131.jpg │ │ ├── uMPB-fxsmeif4821072.jpg │ │ ├── user_panel.js │ │ ├── visitor.html │ │ ├── weibo_how_ot.png │ │ ├── wmt.only_for_caishou2013.js │ │ ├── xfCo-fxriqqx3084728.jpg │ │ ├── xrku-fxsenvn7290338.jpg │ │ └── zyhl-fxnuvxe8455233.jpg ├── help.jsp ├── images │ ├── human-round-number.png │ ├── icon-human.png │ └── pic.png ├── index.jsp ├── js │ ├── My97DatePicker.htm │ ├── WdatePicker.js │ ├── calendar.js │ ├── config.js │ ├── echarts.min.js │ ├── jquery.form.js │ ├── jquery.min.js │ ├── lang │ │ ├── en.js │ │ ├── zh-cn.js │ │ └── zh-tw.js │ ├── layer.js │ ├── layer │ │ ├── extend │ │ │ └── layer.ext.js │ │ ├── layer.js │ │ └── skin │ │ │ ├── default │ │ │ ├── icon-ext.png │ │ │ ├── icon.png │ │ │ ├── loading-0.gif │ │ │ ├── loading-1.gif │ │ │ └── loading-2.gif │ │ │ ├── layer.css │ │ │ └── layer.ext.css │ └── skin │ │ ├── WdatePicker.css │ │ ├── datePicker.gif │ │ ├── default │ │ ├── datepicker.css │ │ └── img.gif │ │ └── whyGreen │ │ ├── bg.jpg │ │ ├── datepicker.css │ │ └── img.gif ├── jsust.html ├── jsust_files │ ├── 2_20_0320.jpg │ ├── 2_26_0205.gif │ ├── 2_28_0307.jpg │ ├── 2_38_0459.gif │ ├── 2_38_0527.gif │ ├── 2_40_0424.png │ ├── 2_51_0309.jpg │ ├── 2_64_0229.jpg │ ├── 2_73_0406.jpg │ ├── 2_76_0310.jpg │ ├── 2_76_1120.png │ ├── 2_77_0320.jpg │ ├── 2_79_0834.gif │ ├── 2_89_0316.jpg │ ├── 2_92_0320.jpg │ ├── base.css │ ├── jquery-1.9.1.min.js │ ├── jquery-migrate-1.2.1.js │ ├── jquery.SuperSlide.2.1.1.js │ ├── jqzoom.css │ ├── jqzoom.js │ ├── script.js │ └── style.css ├── left.jsp ├── login.jsp ├── main.jsp ├── main_charts.jsp ├── main_datain.jsp ├── main_dept.jsp ├── main_item.jsp ├── main_total.jsp ├── music │ └── bg.mp3 ├── pwd_change.jsp ├── show.jsp ├── taglibs.jsp └── top.jsp ├── financerpt.sql └── src ├── applicationContext.xml └── com └── fin ├── controller ├── AdvertController.java ├── ChartsController.java ├── CostTotalController.java ├── DataInController.java ├── DeptController.java ├── ExportController.java ├── HelpController.java ├── IndexController.java ├── ItemController.java └── UserController.java ├── dao ├── AdvertDAO.java ├── DataDetailDAO.java ├── DeptDAO.java ├── ItemDAO.java └── UserDAO.java ├── entity ├── AdvertModel.java ├── DataDetailModel.java ├── DataResult.java ├── Dept.java ├── Item.java └── User.java ├── service ├── AdvertService.java ├── DataDetailService.java ├── DeptService.java ├── ItemService.java ├── UserService.java └── impl │ ├── AdvertServiceImpl.java │ ├── DataDetailServiceImpl.java │ ├── DeptServiceImpl.java │ ├── ItemServiceImpl.java │ └── UserServiceImpl.java ├── sql ├── AdvertMapper.xml ├── DataDetailMapper.xml ├── DeptMapper.xml ├── ItemMapper.xml └── UserMapper.xml └── test ├── MD5Test.java └── StringTest.java /README.md: -------------------------------------------------------------------------------- 1 | # Rpt 2 | 基于ssm的财务预算管理系统,数据库mysql,写的简单易用,很适合上手。同时也包括了基本的管理系统的功能,也用到了一些插件,界面也美观大方。 3 | 也有maven版本,有需要的可以联系。适合新手联系使用,欢迎给星。。 4 | 注:使用的是jdk1.7版本 5 | # tips: 6 | 项目使用的myeclipse,同时上传了eclipse可用项目 7 | -------------------------------------------------------------------------------- /Rpt/.scannerwork/.sonar_lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/.scannerwork/.sonar_lock -------------------------------------------------------------------------------- /Rpt/.scannerwork/report-task.txt: -------------------------------------------------------------------------------- 1 | projectKey=Rpt 2 | serverUrl=http://localhost:9000 3 | dashboardUrl=http://localhost:9000/dashboard/index/Rpt 4 | ceTaskId=AVuFDQnZjHlq2XVgPOBi 5 | ceTaskUrl=http://localhost:9000/api/ce/task?id=AVuFDQnZjHlq2XVgPOBi 6 | -------------------------------------------------------------------------------- /Rpt/.settings/.jsdtscope: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /Rpt/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding//src/main/resources/properties/log4j.properties=UTF-8 3 | -------------------------------------------------------------------------------- /Rpt/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 3 | org.eclipse.jdt.core.compiler.codegen.methodParameters=do not generate 4 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8 5 | org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve 6 | org.eclipse.jdt.core.compiler.compliance=1.8 7 | org.eclipse.jdt.core.compiler.debug.lineNumber=generate 8 | org.eclipse.jdt.core.compiler.debug.localVariable=generate 9 | org.eclipse.jdt.core.compiler.debug.sourceFile=generate 10 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 11 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 12 | org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning 13 | org.eclipse.jdt.core.compiler.source=1.8 14 | -------------------------------------------------------------------------------- /Rpt/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /Rpt/.settings/org.eclipse.wst.common.component: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Rpt/.settings/org.eclipse.wst.common.project.facet.core.prefs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Rpt/.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Rpt/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /Rpt/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /Rpt/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /Rpt/sonar-project.properties: -------------------------------------------------------------------------------- 1 | # must be unique in a given SonarQube instance 2 | sonar.projectKey=Rpt 3 | # this is the name displayed in the SonarQube UI 4 | sonar.projectName=Rpt 5 | sonar.projectVersion=1.0 6 | 7 | # Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows. 8 | # Since SonarQube 4.2, this property is optional if sonar.modules is set. 9 | # If not set, SonarQube starts looking for source code from the directory containing 10 | # the sonar-project.properties file. 11 | sonar.sources=. 12 | 13 | # Encoding of the source code. Default is default system encoding 14 | #sonar.sourceEncoding=UTF-8 -------------------------------------------------------------------------------- /Rpt/src/main/java/com/fin/controller/HelpController.java: -------------------------------------------------------------------------------- 1 | package com.fin.controller; 2 | 3 | import javax.servlet.http.HttpServletRequest; 4 | import javax.servlet.http.HttpServletResponse; 5 | 6 | import org.springframework.stereotype.Controller; 7 | import org.springframework.web.bind.annotation.RequestMapping; 8 | import org.springframework.web.servlet.ModelAndView; 9 | 10 | /** 11 | * 帮助页面Controller 12 | * @author Administrator 13 | * 14 | */ 15 | @Controller 16 | @RequestMapping("/help") 17 | public class HelpController { 18 | 19 | /** 20 | * 跳转help页面 21 | * @param request 22 | * @param response 23 | * @return 24 | */ 25 | @RequestMapping("/show.do") 26 | public ModelAndView show(HttpServletRequest request,HttpServletResponse response){ 27 | ModelAndView mav = new ModelAndView("help"); 28 | return mav; 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /Rpt/src/main/java/com/fin/dao/AdvertDAO.java: -------------------------------------------------------------------------------- 1 | package com.fin.dao; 2 | 3 | import java.util.List; 4 | import java.util.Map; 5 | 6 | import com.fin.entity.AdvertModel; 7 | 8 | /** 9 | * 公告通知DAO 10 | * @author Administrator 11 | * 12 | */ 13 | public interface AdvertDAO { 14 | 15 | /** 16 | * 查询所有公告通知 17 | * @return 18 | */ 19 | public List findAll(); 20 | 21 | /** 22 | * 插入 23 | * @param map 24 | */ 25 | public void insert(Map map); 26 | } 27 | -------------------------------------------------------------------------------- /Rpt/src/main/java/com/fin/dao/DataDetailDAO.java: -------------------------------------------------------------------------------- 1 | package com.fin.dao; 2 | 3 | import java.util.List; 4 | import java.util.Map; 5 | 6 | import com.fin.entity.DataDetailModel; 7 | 8 | /** 9 | * DataDetailDAO 10 | * @author Administrator 11 | * 12 | */ 13 | public interface DataDetailDAO { 14 | 15 | /** 16 | * 按照月份查询数据 17 | * @return 18 | */ 19 | public List queryByMonth(Map map); 20 | 21 | /** 22 | * 加载指定年月下的部门详细信息(sum) 23 | * @param map 24 | * @return 25 | */ 26 | public List getByDeptnoAndMonth(Map map); 27 | 28 | /** 29 | * 按照年查询数据 30 | * @param map 31 | * @return 32 | */ 33 | public List queryByYear(Map map); 34 | 35 | /** 36 | * 加载指定年月下的部门详细信息 37 | * @param map 38 | * @return 39 | */ 40 | public List getByDeptnoAndDate(Map map); 41 | 42 | /** 43 | * 根据项目编号和时间查找 44 | * @param map 45 | * @return 46 | */ 47 | public DataDetailModel getByItemnoAndDate(DataDetailModel data); 48 | 49 | /** 50 | * 新增 51 | * @param model 52 | */ 53 | public void insert(DataDetailModel model); 54 | 55 | /** 56 | * 更新 57 | * @param model 58 | */ 59 | public void update(DataDetailModel model); 60 | } 61 | -------------------------------------------------------------------------------- /Rpt/src/main/java/com/fin/dao/DeptDAO.java: -------------------------------------------------------------------------------- 1 | package com.fin.dao; 2 | 3 | import java.util.List; 4 | 5 | import com.fin.entity.Dept; 6 | 7 | /** 8 | * DeptDAO 9 | * @author Administrator 10 | * 11 | */ 12 | public interface DeptDAO { 13 | 14 | /** 15 | * 加载所有部门信息 16 | * @return 17 | */ 18 | public List findAll(); 19 | 20 | /** 21 | * 根据部门号查找 22 | * @param deptno 23 | * @return 24 | */ 25 | public Dept findByDeptno(Dept d); 26 | 27 | /** 28 | * 更新 29 | * @param dept 30 | */ 31 | public void update(Dept dept); 32 | 33 | /** 34 | * 插入 35 | * @param dept 36 | */ 37 | public void insert(Dept dept); 38 | 39 | /** 40 | * 删除 41 | * @param dept 42 | */ 43 | public void remove(Dept dept); 44 | } 45 | -------------------------------------------------------------------------------- /Rpt/src/main/java/com/fin/dao/ItemDAO.java: -------------------------------------------------------------------------------- 1 | package com.fin.dao; 2 | 3 | import java.util.List; 4 | 5 | import com.fin.entity.Item; 6 | 7 | public interface ItemDAO { 8 | 9 | /** 10 | * 查找所有的项目 11 | * @return 12 | */ 13 | public List findAll(); 14 | 15 | /** 16 | * 获取对应部门号的预算项 17 | * @param deptno 18 | * @return 19 | */ 20 | public List getByDeptno(String deptno); 21 | 22 | /** 23 | * 获取指定编号的item 24 | * @param itemno 25 | * @return 26 | */ 27 | public Item getByItemno(String itemno); 28 | 29 | /** 30 | * 修改预算项 31 | * @param item 32 | */ 33 | public void modify(Item item); 34 | 35 | /** 36 | * 新增 37 | * @param item 38 | */ 39 | public void save(Item item); 40 | 41 | /** 42 | * 删除 43 | * @param item 44 | */ 45 | public void remove(Item item); 46 | } 47 | -------------------------------------------------------------------------------- /Rpt/src/main/java/com/fin/dao/UserDAO.java: -------------------------------------------------------------------------------- 1 | package com.fin.dao; 2 | 3 | import java.util.Map; 4 | 5 | import com.fin.entity.User; 6 | 7 | /** 8 | * 用来与数据库交互的DAO 9 | * @author Administrator 10 | * 11 | */ 12 | public interface UserDAO { 13 | 14 | /** 15 | * 通过用户名查找用户 16 | * @param username 17 | * @return 18 | */ 19 | public User findByUsername(String username); 20 | 21 | /** 22 | * 更新 23 | * @param map 24 | */ 25 | public void update(Map map); 26 | } 27 | -------------------------------------------------------------------------------- /Rpt/src/main/java/com/fin/entity/AdvertModel.java: -------------------------------------------------------------------------------- 1 | package com.fin.entity; 2 | 3 | import java.sql.Date; 4 | 5 | /** 6 | * 公告通知model 7 | * @author Administrator 8 | * 9 | */ 10 | public class AdvertModel { 11 | 12 | /** 13 | * 自增长的id 14 | */ 15 | private Integer id; 16 | /** 17 | * 公告标题 18 | */ 19 | private String title; 20 | /** 21 | * 公告内容 22 | */ 23 | private String content; 24 | /** 25 | * 发布时间 26 | */ 27 | private Date starttime; 28 | /** 29 | * 是否置顶 30 | */ 31 | private String istop; 32 | 33 | public Integer getId() { 34 | return id; 35 | } 36 | public void setId(Integer id) { 37 | this.id = id; 38 | } 39 | public String getTitle() { 40 | return title; 41 | } 42 | public void setTitle(String title) { 43 | this.title = title; 44 | } 45 | public String getContent() { 46 | return content; 47 | } 48 | public void setContent(String content) { 49 | this.content = content; 50 | } 51 | public Date getStarttime() { 52 | return starttime; 53 | } 54 | public void setStarttime(Date starttime) { 55 | this.starttime = starttime; 56 | } 57 | public String getIstop() { 58 | return istop; 59 | } 60 | public void setIstop(String istop) { 61 | this.istop = istop; 62 | } 63 | 64 | } 65 | -------------------------------------------------------------------------------- /Rpt/src/main/java/com/fin/entity/DataResult.java: -------------------------------------------------------------------------------- 1 | package com.fin.entity; 2 | 3 | /** 4 | * 固定的结果格式 5 | * @author Administrator 6 | * 7 | */ 8 | public class DataResult { 9 | 10 | /** 11 | * 状态 12 | */ 13 | private int status; 14 | /** 15 | * 消息 16 | */ 17 | private String msg; 18 | /** 19 | * 数据 20 | */ 21 | private Object data; 22 | 23 | public int getStatus() { 24 | return status; 25 | } 26 | public void setStatus(int status) { 27 | this.status = status; 28 | } 29 | public String getMsg() { 30 | return msg; 31 | } 32 | public void setMsg(String msg) { 33 | this.msg = msg; 34 | } 35 | public Object getData() { 36 | return data; 37 | } 38 | public void setData(Object data) { 39 | this.data = data; 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /Rpt/src/main/java/com/fin/entity/Dept.java: -------------------------------------------------------------------------------- 1 | package com.fin.entity; 2 | 3 | /** 4 | * 部门表entity 5 | * @author Administrator 6 | * 7 | */ 8 | public class Dept { 9 | 10 | /** 11 | * 主键id 12 | */ 13 | private String id; 14 | /** 15 | * 部门编号 16 | */ 17 | private String deptno; 18 | /** 19 | * 部门名称 20 | */ 21 | private String deptname; 22 | /** 23 | * 责任人名称 24 | */ 25 | private String empname; 26 | 27 | public String getEmpname() { 28 | return empname; 29 | } 30 | public void setEmpname(String empname) { 31 | this.empname = empname; 32 | } 33 | public String getId() { 34 | return id; 35 | } 36 | public void setId(String id) { 37 | this.id = id; 38 | } 39 | public String getDeptno() { 40 | return deptno; 41 | } 42 | public void setDeptno(String deptno) { 43 | this.deptno = deptno; 44 | } 45 | public String getDeptname() { 46 | return deptname; 47 | } 48 | public void setDeptname(String deptname) { 49 | this.deptname = deptname; 50 | } 51 | 52 | } 53 | -------------------------------------------------------------------------------- /Rpt/src/main/java/com/fin/entity/Item.java: -------------------------------------------------------------------------------- 1 | package com.fin.entity; 2 | 3 | /** 4 | * 项目表的实体类 5 | * @author Administrator 6 | * 7 | */ 8 | public class Item { 9 | 10 | /** 11 | * 主键id 12 | */ 13 | private String id; 14 | /** 15 | * 项目编号 16 | */ 17 | private String itemno; 18 | /** 19 | * 项目名称 20 | */ 21 | private String itemname; 22 | /** 23 | * 所属部门编号 24 | */ 25 | private Integer deptno; 26 | /** 27 | * 费用类型:0 变动费用;1 固定费用 28 | */ 29 | private String costtype; 30 | 31 | public String getCosttype() { 32 | return costtype; 33 | } 34 | public void setCosttype(String costtype) { 35 | this.costtype = costtype; 36 | } 37 | public String getId() { 38 | return id; 39 | } 40 | public void setId(String id) { 41 | this.id = id; 42 | } 43 | public String getItemno() { 44 | return itemno; 45 | } 46 | public void setItemno(String itemno) { 47 | this.itemno = itemno; 48 | } 49 | public String getItemname() { 50 | return itemname; 51 | } 52 | public void setItemname(String itemname) { 53 | this.itemname = itemname; 54 | } 55 | public Integer getDeptno() { 56 | return deptno; 57 | } 58 | public void setDeptno(Integer deptno) { 59 | this.deptno = deptno; 60 | } 61 | } 62 | -------------------------------------------------------------------------------- /Rpt/src/main/java/com/fin/mapper/AdvertMapper.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 8 | 9 | 10 | 14 | 15 | -------------------------------------------------------------------------------- /Rpt/src/main/java/com/fin/mapper/DeptMapper.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 8 | 9 | 12 | 13 | 14 | 18 | 19 | 20 | 21 | 24 | 25 | 26 | 27 | 30 | 31 | -------------------------------------------------------------------------------- /Rpt/src/main/java/com/fin/mapper/UserMapper.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 8 | 9 | 10 | 13 | 14 | -------------------------------------------------------------------------------- /Rpt/src/main/java/com/fin/service/AdvertService.java: -------------------------------------------------------------------------------- 1 | package com.fin.service; 2 | 3 | import java.util.List; 4 | import java.util.Map; 5 | 6 | import com.fin.entity.AdvertModel; 7 | 8 | /** 9 | * 公告通知service 10 | * @author Administrator 11 | * 12 | */ 13 | public interface AdvertService { 14 | 15 | /** 16 | * 加载全部公告 17 | * @return 18 | */ 19 | public List findAll(); 20 | 21 | /** 22 | * 新增 23 | * @param map 24 | */ 25 | public void insert(Map map); 26 | } 27 | -------------------------------------------------------------------------------- /Rpt/src/main/java/com/fin/service/DeptService.java: -------------------------------------------------------------------------------- 1 | package com.fin.service; 2 | 3 | import java.util.List; 4 | 5 | import com.fin.entity.Dept; 6 | 7 | /** 8 | * 部门表service 9 | * @author Administrator 10 | * 11 | */ 12 | public interface DeptService { 13 | 14 | /** 15 | * 加载所有部门 16 | * @return 17 | */ 18 | public List loadAllDepts(); 19 | 20 | /** 21 | * 根据部门号查找部门信息 22 | * @param deptno 23 | * @return 24 | */ 25 | public Dept findByDeptno(Dept d); 26 | 27 | /** 28 | * 更新 29 | * @param dept 30 | */ 31 | public void update(Dept dept); 32 | 33 | /** 34 | * 新增 35 | * @param dept 36 | */ 37 | public void insert(Dept dept); 38 | 39 | /** 40 | * 删除 41 | * @param dept 42 | */ 43 | public void remove(Dept dept); 44 | } 45 | -------------------------------------------------------------------------------- /Rpt/src/main/java/com/fin/service/ItemService.java: -------------------------------------------------------------------------------- 1 | package com.fin.service; 2 | 3 | import java.util.List; 4 | 5 | import com.fin.entity.Item; 6 | 7 | /** 8 | * 项目表的service 9 | * @author Administrator 10 | * 11 | */ 12 | public interface ItemService { 13 | 14 | /** 15 | * 查询全部项目 16 | * @return 17 | */ 18 | public List findALl(); 19 | 20 | /** 21 | * 获取部门号对应的预算项 22 | * @param deptno 23 | * @return 24 | */ 25 | public List getByDeptno(String deptno); 26 | 27 | /** 28 | * 获取指定编号的item 29 | * @param itemno 30 | * @return 31 | */ 32 | public Item getByItemno(String itemno); 33 | 34 | /** 35 | * 更新预算项 36 | * @param item 37 | */ 38 | public void update(Item item); 39 | 40 | /** 41 | * 新增 42 | * @param item 43 | */ 44 | public void insert(Item item); 45 | 46 | /** 47 | * 删除 48 | * @param item 49 | */ 50 | public void remove(Item item); 51 | } 52 | -------------------------------------------------------------------------------- /Rpt/src/main/java/com/fin/service/UserService.java: -------------------------------------------------------------------------------- 1 | package com.fin.service; 2 | 3 | import java.util.Map; 4 | 5 | import com.fin.entity.DataResult; 6 | 7 | /** 8 | * 用户service接口 9 | * @author Administrator 10 | * 11 | */ 12 | public interface UserService { 13 | 14 | /** 15 | * 检查登录方法 16 | * @param username 17 | * @param password 18 | * @return 19 | */ 20 | public DataResult checkLogin(String username,String password); 21 | 22 | /** 23 | * 修改密码 24 | * @param map 25 | */ 26 | public void modifyPwd(Map map); 27 | } 28 | -------------------------------------------------------------------------------- /Rpt/src/main/java/com/fin/service/impl/AdvertServiceImpl.java: -------------------------------------------------------------------------------- 1 | package com.fin.service.impl; 2 | 3 | import java.util.List; 4 | import java.util.Map; 5 | 6 | import org.springframework.beans.factory.annotation.Autowired; 7 | import org.springframework.stereotype.Service; 8 | 9 | import com.fin.dao.AdvertDAO; 10 | import com.fin.entity.AdvertModel; 11 | import com.fin.service.AdvertService; 12 | 13 | /** 14 | * AdvertService实现类 15 | * @author Administrator 16 | * 17 | */ 18 | @Service("advertservice") 19 | public class AdvertServiceImpl implements AdvertService{ 20 | 21 | @Autowired 22 | public AdvertDAO advertdao; 23 | 24 | public List findAll() { 25 | return advertdao.findAll(); 26 | } 27 | 28 | public void insert(Map map) { 29 | advertdao.insert(map); 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /Rpt/src/main/java/com/fin/service/impl/DeptServiceImpl.java: -------------------------------------------------------------------------------- 1 | package com.fin.service.impl; 2 | 3 | import java.util.List; 4 | 5 | import org.springframework.beans.factory.annotation.Autowired; 6 | import org.springframework.stereotype.Service; 7 | 8 | import com.fin.dao.DeptDAO; 9 | import com.fin.entity.Dept; 10 | import com.fin.service.DeptService; 11 | 12 | @Service("deptService") 13 | public class DeptServiceImpl implements DeptService{ 14 | 15 | @Autowired 16 | private DeptDAO deptdao; 17 | 18 | public List loadAllDepts() { 19 | return deptdao.findAll(); 20 | } 21 | 22 | public Dept findByDeptno(Dept d) { 23 | return deptdao.findByDeptno(d); 24 | } 25 | 26 | public void update(Dept dept) { 27 | deptdao.update(dept); 28 | } 29 | 30 | public void insert(Dept dept) { 31 | deptdao.insert(dept); 32 | } 33 | 34 | public void remove(Dept dept){ 35 | deptdao.remove(dept); 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /Rpt/src/main/java/com/fin/service/impl/ItemServiceImpl.java: -------------------------------------------------------------------------------- 1 | package com.fin.service.impl; 2 | 3 | import java.util.List; 4 | 5 | import org.springframework.beans.factory.annotation.Autowired; 6 | import org.springframework.stereotype.Service; 7 | 8 | import com.fin.dao.ItemDAO; 9 | import com.fin.entity.Item; 10 | import com.fin.service.ItemService; 11 | 12 | @Service("itemService") 13 | public class ItemServiceImpl implements ItemService{ 14 | 15 | @Autowired 16 | private ItemDAO itemdao; 17 | 18 | public List findALl() { 19 | return itemdao.findAll(); 20 | } 21 | 22 | public List getByDeptno(String deptno) { 23 | return itemdao.getByDeptno(deptno); 24 | } 25 | 26 | public Item getByItemno(String itemno) { 27 | return itemdao.getByItemno(itemno); 28 | } 29 | 30 | public void update(Item item) { 31 | itemdao.modify(item); 32 | } 33 | 34 | public void insert(Item item) { 35 | itemdao.save(item); 36 | } 37 | 38 | public void remove(Item item) { 39 | itemdao.remove(item); 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /Rpt/src/main/java/com/fin/service/impl/UserServiceImpl.java: -------------------------------------------------------------------------------- 1 | package com.fin.service.impl; 2 | 3 | import java.util.Map; 4 | 5 | import javax.annotation.Resource; 6 | 7 | import org.springframework.stereotype.Service; 8 | 9 | import com.fin.dao.UserDAO; 10 | import com.fin.entity.DataResult; 11 | import com.fin.entity.User; 12 | import com.fin.service.UserService; 13 | 14 | @Service("userService") 15 | public class UserServiceImpl implements UserService{ 16 | 17 | @Resource 18 | private UserDAO userdao; 19 | 20 | public DataResult checkLogin(String username, String password) { 21 | User user = userdao.findByUsername(username); 22 | DataResult result = new DataResult(); 23 | if(user == null){ 24 | result.setStatus(2); 25 | result.setMsg("用户不存在"); 26 | return result; 27 | } 28 | if(!user.getPassword().equals(password)){ 29 | result.setStatus(1); 30 | result.setMsg("密码不正确"); 31 | return result; 32 | } 33 | result.setStatus(0); 34 | result.setMsg("登录成功"); 35 | result.setData(user); 36 | return result; 37 | } 38 | 39 | public void modifyPwd(Map map) { 40 | userdao.update(map); 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /Rpt/src/main/resources/properties/log4j.properties: -------------------------------------------------------------------------------- 1 | ### 设置### 2 | log4j.rootLogger = debug,stdout,info 3 | 4 | ### 输出信息到控制台 ### 5 | log4j.appender.stdout = org.apache.log4j.ConsoleAppender 6 | log4j.appender.stdout.Target = System.out 7 | log4j.appender.stdout.layout = org.apache.log4j.PatternLayout 8 | log4j.appender.stdout.layout.ConversionPattern = %d %p [%c] - <%m>%n 9 | 10 | # Control logging for other open source packages 11 | # Changing the log level to DEBUG when debug 12 | log4j.logger.org.springframework=info 13 | log4j.logger.org.springframework.jdbc.core.JdbcTemplate=info 14 | 15 | # debug log for ibatis 16 | log4j.logger.java.sql.Connection=debug 17 | log4j.logger.java.sql.Statement=debug 18 | log4j.logger.java.sql.PreparedStatement=debug 19 | 20 | # Changing the log level to DEBUG will display SQL Hibernate generated 21 | log4j.logger.net.sf.ehcache=ERROR 22 | log4j.logger.org.apache.commons.validator.ValidatorResources=error -------------------------------------------------------------------------------- /Rpt/src/main/webapp/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /Rpt/src/main/webapp/buttons/button_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/buttons/button_bg.png -------------------------------------------------------------------------------- /Rpt/src/main/webapp/css/common.css: -------------------------------------------------------------------------------- 1 | .main_item { 2 | width: 90%; 3 | background: #E5E9EA; 4 | border: 1px solid #d3d6d7; 5 | border-radius: 8px; 6 | min-height: 100px; 7 | margin-top: 20px; 8 | } 9 | 10 | #itemlists li:hover { 11 | color: blue; 12 | } 13 | 14 | .h { 15 | display: none; 16 | } 17 | 18 | .s { 19 | display: block; 20 | } 21 | 22 | #dept_ul li { 23 | display: inline; 24 | } 25 | 26 | #dept_ul li a { 27 | display: inline-block; 28 | padding: 0 15px; 29 | height: 30px; 30 | line-height: 30px; 31 | color: #A94A87; 32 | font-family: "\5FAE\8F6F\96C5\9ED1"; 33 | font-size: 16px; 34 | border-radius: 10px; 35 | } 36 | 37 | #dept_ul li a:hover { 38 | cursor: pointer; 39 | color: blue; 40 | } 41 | 42 | .input-text { 43 | background: #ffffff; 44 | border: 1px solid #c9c9c9; 45 | height: 25px; 46 | width: 100px; 47 | padding-left: 5px; 48 | border-radius: 5px; 49 | } 50 | 51 | td { 52 | padding: 6px 5px 6px 0; 53 | } -------------------------------------------------------------------------------- /Rpt/src/main/webapp/css/icon/icon-top-quite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/css/icon/icon-top-quite.png -------------------------------------------------------------------------------- /Rpt/src/main/webapp/css/images/check_strip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/css/images/check_strip.png -------------------------------------------------------------------------------- /Rpt/src/main/webapp/css/images/hand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/css/images/hand.png -------------------------------------------------------------------------------- /Rpt/src/main/webapp/css/images/human-round-number.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/css/images/human-round-number.png -------------------------------------------------------------------------------- /Rpt/src/main/webapp/css/images/icon-add-orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/css/images/icon-add-orange.png -------------------------------------------------------------------------------- /Rpt/src/main/webapp/css/images/icon-delete-orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/css/images/icon-delete-orange.png -------------------------------------------------------------------------------- /Rpt/src/main/webapp/css/images/icon-edite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/css/images/icon-edite.png -------------------------------------------------------------------------------- /Rpt/src/main/webapp/css/images/icon-human.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/css/images/icon-human.png -------------------------------------------------------------------------------- /Rpt/src/main/webapp/css/images/left-handing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/css/images/left-handing.png -------------------------------------------------------------------------------- /Rpt/src/main/webapp/css/images/left_hand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/css/images/left_hand.png -------------------------------------------------------------------------------- /Rpt/src/main/webapp/css/images/light_grunge.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/css/images/light_grunge.jpg -------------------------------------------------------------------------------- /Rpt/src/main/webapp/css/images/password.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/css/images/password.png -------------------------------------------------------------------------------- /Rpt/src/main/webapp/css/images/right_hand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/css/images/right_hand.png -------------------------------------------------------------------------------- /Rpt/src/main/webapp/css/images/right_handing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/css/images/right_handing.png -------------------------------------------------------------------------------- /Rpt/src/main/webapp/css/images/tou.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/css/images/tou.png -------------------------------------------------------------------------------- /Rpt/src/main/webapp/css/images/username.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/css/images/username.png -------------------------------------------------------------------------------- /Rpt/src/main/webapp/excel/temp.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/excel/temp.xls -------------------------------------------------------------------------------- /Rpt/src/main/webapp/excel/temp_year.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/excel/temp_year.xls -------------------------------------------------------------------------------- /Rpt/src/main/webapp/finance_sina/finance_sina_files/-HH9-fxqafha0426062.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/finance_sina/finance_sina_files/-HH9-fxqafha0426062.jpg -------------------------------------------------------------------------------- /Rpt/src/main/webapp/finance_sina/finance_sina_files/-wWZ-fxryhhu2347280.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/finance_sina/finance_sina_files/-wWZ-fxryhhu2347280.jpg -------------------------------------------------------------------------------- /Rpt/src/main/webapp/finance_sina/finance_sina_files/03521438493770: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/finance_sina/finance_sina_files/03521438493770 -------------------------------------------------------------------------------- /Rpt/src/main/webapp/finance_sina/finance_sina_files/1416600_240-170.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/finance_sina/finance_sina_files/1416600_240-170.jpg -------------------------------------------------------------------------------- /Rpt/src/main/webapp/finance_sina/finance_sina_files/1_Dq-fxnzanm4064598.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/finance_sina/finance_sina_files/1_Dq-fxnzanm4064598.jpg -------------------------------------------------------------------------------- /Rpt/src/main/webapp/finance_sina/finance_sina_files/20160414YiHaoRenWuCaiShouYouShangJiaoXiaoBiao.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/finance_sina/finance_sina_files/20160414YiHaoRenWuCaiShouYouShangJiaoXiaoBiao.jpg -------------------------------------------------------------------------------- /Rpt/src/main/webapp/finance_sina/finance_sina_files/21ba77acae664cf6bda17a4e283e4222.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/finance_sina/finance_sina_files/21ba77acae664cf6bda17a4e283e4222.jpg -------------------------------------------------------------------------------- /Rpt/src/main/webapp/finance_sina/finance_sina_files/2df7a0f44b924c9da118fa85255850a8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/finance_sina/finance_sina_files/2df7a0f44b924c9da118fa85255850a8.jpg -------------------------------------------------------------------------------- /Rpt/src/main/webapp/finance_sina/finance_sina_files/36151400058268: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/finance_sina/finance_sina_files/36151400058268 -------------------------------------------------------------------------------- /Rpt/src/main/webapp/finance_sina/finance_sina_files/3932012482-1439948427130.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/finance_sina/finance_sina_files/3932012482-1439948427130.jpg -------------------------------------------------------------------------------- /Rpt/src/main/webapp/finance_sina/finance_sina_files/3932012482-1439948544876-23600.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | sina adbox -------------------------------------------------------------------------------- /Rpt/src/main/webapp/finance_sina/finance_sina_files/3932012482-1455502772112.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/finance_sina/finance_sina_files/3932012482-1455502772112.jpg -------------------------------------------------------------------------------- /Rpt/src/main/webapp/finance_sina/finance_sina_files/3932012482-1463112348074.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/finance_sina/finance_sina_files/3932012482-1463112348074.gif -------------------------------------------------------------------------------- /Rpt/src/main/webapp/finance_sina/finance_sina_files/3Jdh-fxsktkp9189385.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/finance_sina/finance_sina_files/3Jdh-fxsktkp9189385.jpg -------------------------------------------------------------------------------- /Rpt/src/main/webapp/finance_sina/finance_sina_files/3bdd8b87ad0c4e8fa3878a2150a14ef0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/finance_sina/finance_sina_files/3bdd8b87ad0c4e8fa3878a2150a14ef0.gif -------------------------------------------------------------------------------- /Rpt/src/main/webapp/finance_sina/finance_sina_files/3t5W-fxsktkz9759413.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/finance_sina/finance_sina_files/3t5W-fxsktkz9759413.jpg -------------------------------------------------------------------------------- /Rpt/src/main/webapp/finance_sina/finance_sina_files/491695_24040.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/finance_sina/finance_sina_files/491695_24040.jpg -------------------------------------------------------------------------------- /Rpt/src/main/webapp/finance_sina/finance_sina_files/4Hto-fxsktkz9671528.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/finance_sina/finance_sina_files/4Hto-fxsktkz9671528.jpg -------------------------------------------------------------------------------- /Rpt/src/main/webapp/finance_sina/finance_sina_files/4OzU-fxsenvm0478355.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/finance_sina/finance_sina_files/4OzU-fxsenvm0478355.jpg -------------------------------------------------------------------------------- /Rpt/src/main/webapp/finance_sina/finance_sina_files/4gWm-fxqnski7831816.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/finance_sina/finance_sina_files/4gWm-fxqnski7831816.jpg -------------------------------------------------------------------------------- /Rpt/src/main/webapp/finance_sina/finance_sina_files/654e10ac20a747a2baa6015b92bff575.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/finance_sina/finance_sina_files/654e10ac20a747a2baa6015b92bff575.gif -------------------------------------------------------------------------------- /Rpt/src/main/webapp/finance_sina/finance_sina_files/6T9j-fxsenvx1050653.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/finance_sina/finance_sina_files/6T9j-fxsenvx1050653.jpg -------------------------------------------------------------------------------- /Rpt/src/main/webapp/finance_sina/finance_sina_files/6ce57b4e56e64255a52bd57b9979ae88.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/finance_sina/finance_sina_files/6ce57b4e56e64255a52bd57b9979ae88.gif -------------------------------------------------------------------------------- /Rpt/src/main/webapp/finance_sina/finance_sina_files/76411415003612: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/finance_sina/finance_sina_files/76411415003612 -------------------------------------------------------------------------------- /Rpt/src/main/webapp/finance_sina/finance_sina_files/8TJT-fxqhmvp6184402.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/finance_sina/finance_sina_files/8TJT-fxqhmvp6184402.jpg -------------------------------------------------------------------------------- /Rpt/src/main/webapp/finance_sina/finance_sina_files/8b8bcab09a1e4a2d8970f659cefe3371.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/finance_sina/finance_sina_files/8b8bcab09a1e4a2d8970f659cefe3371.gif -------------------------------------------------------------------------------- /Rpt/src/main/webapp/finance_sina/finance_sina_files/8jB4-fxrpvea1042350.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/finance_sina/finance_sina_files/8jB4-fxrpvea1042350.jpg -------------------------------------------------------------------------------- /Rpt/src/main/webapp/finance_sina/finance_sina_files/9298-fxsktkz9764998.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/finance_sina/finance_sina_files/9298-fxsktkz9764998.png -------------------------------------------------------------------------------- /Rpt/src/main/webapp/finance_sina/finance_sina_files/9Zdk-fxpvysx1761416.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/finance_sina/finance_sina_files/9Zdk-fxpvysx1761416.jpg -------------------------------------------------------------------------------- /Rpt/src/main/webapp/finance_sina/finance_sina_files/9tQB-fxqnski7842991.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/finance_sina/finance_sina_files/9tQB-fxqnski7842991.jpg -------------------------------------------------------------------------------- /Rpt/src/main/webapp/finance_sina/finance_sina_files/ACtO-fxsenvn7303884.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/finance_sina/finance_sina_files/ACtO-fxsenvn7303884.jpg -------------------------------------------------------------------------------- /Rpt/src/main/webapp/finance_sina/finance_sina_files/AFqF-fxryhhi8552193.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/finance_sina/finance_sina_files/AFqF-fxryhhi8552193.jpg -------------------------------------------------------------------------------- /Rpt/src/main/webapp/finance_sina/finance_sina_files/AxLr-fxsktkz9707090.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/finance_sina/finance_sina_files/AxLr-fxsktkz9707090.png -------------------------------------------------------------------------------- /Rpt/src/main/webapp/finance_sina/finance_sina_files/BVu4-fxpmypf3126983.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/finance_sina/finance_sina_files/BVu4-fxpmypf3126983.jpg -------------------------------------------------------------------------------- /Rpt/src/main/webapp/finance_sina/finance_sina_files/ChangAnJiangTanCaiShouYouShangJiaoXiaoBiao-RenXiangBan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/finance_sina/finance_sina_files/ChangAnJiangTanCaiShouYouShangJiaoXiaoBiao-RenXiangBan.jpg -------------------------------------------------------------------------------- /Rpt/src/main/webapp/finance_sina/finance_sina_files/D65k-fxsmeif4713260.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/finance_sina/finance_sina_files/D65k-fxsmeif4713260.JPG -------------------------------------------------------------------------------- /Rpt/src/main/webapp/finance_sina/finance_sina_files/EIQK-fxsenvm0382703.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/finance_sina/finance_sina_files/EIQK-fxsenvm0382703.jpg -------------------------------------------------------------------------------- /Rpt/src/main/webapp/finance_sina/finance_sina_files/G_37-fxsenvx1048244.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/finance_sina/finance_sina_files/G_37-fxsenvx1048244.jpg -------------------------------------------------------------------------------- /Rpt/src/main/webapp/finance_sina/finance_sina_files/IO.WebPush3.localConn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/finance_sina/finance_sina_files/IO.WebPush3.localConn.html -------------------------------------------------------------------------------- /Rpt/src/main/webapp/finance_sina/finance_sina_files/IbcT-fxqswxn6570217.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/finance_sina/finance_sina_files/IbcT-fxqswxn6570217.jpg -------------------------------------------------------------------------------- /Rpt/src/main/webapp/finance_sina/finance_sina_files/JFlg-fxqhmvp6224823.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/finance_sina/finance_sina_files/JFlg-fxqhmvp6224823.jpg -------------------------------------------------------------------------------- /Rpt/src/main/webapp/finance_sina/finance_sina_files/Kk1N-fxrytex7334541.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/finance_sina/finance_sina_files/Kk1N-fxrytex7334541.jpg -------------------------------------------------------------------------------- /Rpt/src/main/webapp/finance_sina/finance_sina_files/OB52-fxqnsks4792734.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/finance_sina/finance_sina_files/OB52-fxqnsks4792734.jpg -------------------------------------------------------------------------------- /Rpt/src/main/webapp/finance_sina/finance_sina_files/PHTR-fxpvytf8794229.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/finance_sina/finance_sina_files/PHTR-fxpvytf8794229.png -------------------------------------------------------------------------------- /Rpt/src/main/webapp/finance_sina/finance_sina_files/PYVR-fxsktkp9056774.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/finance_sina/finance_sina_files/PYVR-fxsktkp9056774.jpg -------------------------------------------------------------------------------- /Rpt/src/main/webapp/finance_sina/finance_sina_files/QiHuo2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/finance_sina/finance_sina_files/QiHuo2.gif -------------------------------------------------------------------------------- /Rpt/src/main/webapp/finance_sina/finance_sina_files/R2cE-fxqnsks4789734.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/finance_sina/finance_sina_files/R2cE-fxqnsks4789734.jpg -------------------------------------------------------------------------------- /Rpt/src/main/webapp/finance_sina/finance_sina_files/TB1HALsJFXXXXb1XpXXSutbFXXX.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/finance_sina/finance_sina_files/TB1HALsJFXXXXb1XpXXSutbFXXX.jpg -------------------------------------------------------------------------------- /Rpt/src/main/webapp/finance_sina/finance_sina_files/TB1PyDCHpXXXXagXVXX3yLs_pXX-107-17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/finance_sina/finance_sina_files/TB1PyDCHpXXXXagXVXX3yLs_pXX-107-17.png -------------------------------------------------------------------------------- /Rpt/src/main/webapp/finance_sina/finance_sina_files/TB1rRQpJXXXXXcvXXXXXXXXXXXX-40-26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/finance_sina/finance_sina_files/TB1rRQpJXXXXXcvXXXXXXXXXXXX-40-26.png -------------------------------------------------------------------------------- /Rpt/src/main/webapp/finance_sina/finance_sina_files/TB1upAiJXXXXXa5aXXXXXXXXXXX-116-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/finance_sina/finance_sina_files/TB1upAiJXXXXXa5aXXXXXXXXXXX-116-30.png -------------------------------------------------------------------------------- /Rpt/src/main/webapp/finance_sina/finance_sina_files/U10616P31DT20140415140016.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/finance_sina/finance_sina_files/U10616P31DT20140415140016.jpg -------------------------------------------------------------------------------- /Rpt/src/main/webapp/finance_sina/finance_sina_files/U12164P31T32D126272F651DT20151214100934.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/finance_sina/finance_sina_files/U12164P31T32D126272F651DT20151214100934.png -------------------------------------------------------------------------------- /Rpt/src/main/webapp/finance_sina/finance_sina_files/U12204P1493T24D2185F364DT20151113074841.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/finance_sina/finance_sina_files/U12204P1493T24D2185F364DT20151113074841.jpg -------------------------------------------------------------------------------- /Rpt/src/main/webapp/finance_sina/finance_sina_files/U12678P31T88D31921F2012DT20160523100340.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/finance_sina/finance_sina_files/U12678P31T88D31921F2012DT20160523100340.gif -------------------------------------------------------------------------------- /Rpt/src/main/webapp/finance_sina/finance_sina_files/U2804P31DT20140504102801.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/finance_sina/finance_sina_files/U2804P31DT20140504102801.jpg -------------------------------------------------------------------------------- /Rpt/src/main/webapp/finance_sina/finance_sina_files/U5403P31DT20160519165856.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/finance_sina/finance_sina_files/U5403P31DT20160519165856.jpg -------------------------------------------------------------------------------- /Rpt/src/main/webapp/finance_sina/finance_sina_files/U7797P31DT20160302134848.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/finance_sina/finance_sina_files/U7797P31DT20160302134848.jpg -------------------------------------------------------------------------------- /Rpt/src/main/webapp/finance_sina/finance_sina_files/VakF-fxsexua6288384.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/finance_sina/finance_sina_files/VakF-fxsexua6288384.jpg -------------------------------------------------------------------------------- /Rpt/src/main/webapp/finance_sina/finance_sina_files/VlUB-fxsktkp9223278.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/finance_sina/finance_sina_files/VlUB-fxsktkp9223278.jpg -------------------------------------------------------------------------------- /Rpt/src/main/webapp/finance_sina/finance_sina_files/VyvP-fxsktkp9056721.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/finance_sina/finance_sina_files/VyvP-fxsktkp9056721.png -------------------------------------------------------------------------------- /Rpt/src/main/webapp/finance_sina/finance_sina_files/WYE1-fxryhhi8538134.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/finance_sina/finance_sina_files/WYE1-fxryhhi8538134.jpg -------------------------------------------------------------------------------- /Rpt/src/main/webapp/finance_sina/finance_sina_files/YzuS-fxqnskh0957464.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/finance_sina/finance_sina_files/YzuS-fxqnskh0957464.jpg -------------------------------------------------------------------------------- /Rpt/src/main/webapp/finance_sina/finance_sina_files/Zfaw-fxsktkr5913966.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/finance_sina/finance_sina_files/Zfaw-fxsktkr5913966.jpg -------------------------------------------------------------------------------- /Rpt/src/main/webapp/finance_sina/finance_sina_files/abe335c5cc5a435687a1514c5c179c81.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/finance_sina/finance_sina_files/abe335c5cc5a435687a1514c5c179c81.gif -------------------------------------------------------------------------------- /Rpt/src/main/webapp/finance_sina/finance_sina_files/adfshow.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Rpt/src/main/webapp/finance_sina/finance_sina_files/as0l-fxqpchx6359760.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/finance_sina/finance_sina_files/as0l-fxqpchx6359760.jpg -------------------------------------------------------------------------------- /Rpt/src/main/webapp/finance_sina/finance_sina_files/b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/finance_sina/finance_sina_files/b.png -------------------------------------------------------------------------------- /Rpt/src/main/webapp/finance_sina/finance_sina_files/b64554b780f146aea16e1aae7fa7f1e2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/finance_sina/finance_sina_files/b64554b780f146aea16e1aae7fa7f1e2.jpg -------------------------------------------------------------------------------- /Rpt/src/main/webapp/finance_sina/finance_sina_files/bd_fi_hp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/finance_sina/finance_sina_files/bd_fi_hp.css -------------------------------------------------------------------------------- /Rpt/src/main/webapp/finance_sina/finance_sina_files/bd_fi_hp_20151127.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/finance_sina/finance_sina_files/bd_fi_hp_20151127.js -------------------------------------------------------------------------------- /Rpt/src/main/webapp/finance_sina/finance_sina_files/bf8806b954b2404bab030a7815f7a44d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/finance_sina/finance_sina_files/bf8806b954b2404bab030a7815f7a44d.jpg -------------------------------------------------------------------------------- /Rpt/src/main/webapp/finance_sina/finance_sina_files/blklike.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/finance_sina/finance_sina_files/blklike.js -------------------------------------------------------------------------------- /Rpt/src/main/webapp/finance_sina/finance_sina_files/cRNk-fxrckae7776020.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/finance_sina/finance_sina_files/cRNk-fxrckae7776020.jpg -------------------------------------------------------------------------------- /Rpt/src/main/webapp/finance_sina/finance_sina_files/ckctl(1).html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Rpt/src/main/webapp/finance_sina/finance_sina_files/ckctl.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Rpt/src/main/webapp/finance_sina/finance_sina_files/cvbr-fxsenvx1072758.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/finance_sina/finance_sina_files/cvbr-fxsenvx1072758.jpg -------------------------------------------------------------------------------- /Rpt/src/main/webapp/finance_sina/finance_sina_files/dR7x-fxsktkr5934090.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/finance_sina/finance_sina_files/dR7x-fxsktkr5934090.jpg -------------------------------------------------------------------------------- /Rpt/src/main/webapp/finance_sina/finance_sina_files/datepicker-pack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/finance_sina/finance_sina_files/datepicker-pack.js -------------------------------------------------------------------------------- /Rpt/src/main/webapp/finance_sina/finance_sina_files/default_avatar_male_50.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/finance_sina/finance_sina_files/default_avatar_male_50.gif -------------------------------------------------------------------------------- /Rpt/src/main/webapp/finance_sina/finance_sina_files/directAd_cj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/Rpt/src/main/webapp/finance_sina/finance_sina_files/directAd_cj.js -------------------------------------------------------------------------------- /Rpt/src/main/webapp/finance_sina/finance_sina_files/ex(1): -------------------------------------------------------------------------------- 1 | (function(w,d){var o={i:"mm_15890324_2192376_13112611",callback:"",userid:"",o:"",f:"",n:"",sd:"ope.tanx.com",d:"1",m:0,w1:"1024",a:"1",r:"1",sl:0,lb:0},p=["http",o.sl?"s":"","://",o.lb?"atanx2.alicdn.com/g/mm/tanx-cdn2":"atanx.alicdn.com","/t/",o.m?"tanxmobile/":"","tanxssp.js?_v=12"].join("");if(w.TANX_SHOW){w.TANX_SHOW(o);return}w.TANX_ONLOAD=w.TANX_ONLOAD||[];TANX_ONLOAD.push(o);if(d.getElementById("tanx-a-"+(o.i||""))){var s=d.createElement("script"),h=d.getElementsByTagName("head")[0];s.charset="utf-8";s.async=!0;s.src=p;h.insertBefore(s,h.firstChild)}else{d.write(' -------------------------------------------------------------------------------- /WebRoot/finance_sina/finance_sina_files/3932012482-1455502772112.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/WebRoot/finance_sina/finance_sina_files/3932012482-1455502772112.jpg -------------------------------------------------------------------------------- /WebRoot/finance_sina/finance_sina_files/3932012482-1463112348074.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/WebRoot/finance_sina/finance_sina_files/3932012482-1463112348074.gif -------------------------------------------------------------------------------- /WebRoot/finance_sina/finance_sina_files/3Jdh-fxsktkp9189385.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/WebRoot/finance_sina/finance_sina_files/3Jdh-fxsktkp9189385.jpg -------------------------------------------------------------------------------- /WebRoot/finance_sina/finance_sina_files/3bdd8b87ad0c4e8fa3878a2150a14ef0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/WebRoot/finance_sina/finance_sina_files/3bdd8b87ad0c4e8fa3878a2150a14ef0.gif -------------------------------------------------------------------------------- /WebRoot/finance_sina/finance_sina_files/3t5W-fxsktkz9759413.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/WebRoot/finance_sina/finance_sina_files/3t5W-fxsktkz9759413.jpg -------------------------------------------------------------------------------- /WebRoot/finance_sina/finance_sina_files/491695_24040.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/WebRoot/finance_sina/finance_sina_files/491695_24040.jpg -------------------------------------------------------------------------------- /WebRoot/finance_sina/finance_sina_files/4Hto-fxsktkz9671528.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/WebRoot/finance_sina/finance_sina_files/4Hto-fxsktkz9671528.jpg -------------------------------------------------------------------------------- /WebRoot/finance_sina/finance_sina_files/4OzU-fxsenvm0478355.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/WebRoot/finance_sina/finance_sina_files/4OzU-fxsenvm0478355.jpg -------------------------------------------------------------------------------- /WebRoot/finance_sina/finance_sina_files/4gWm-fxqnski7831816.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/WebRoot/finance_sina/finance_sina_files/4gWm-fxqnski7831816.jpg -------------------------------------------------------------------------------- /WebRoot/finance_sina/finance_sina_files/654e10ac20a747a2baa6015b92bff575.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/WebRoot/finance_sina/finance_sina_files/654e10ac20a747a2baa6015b92bff575.gif -------------------------------------------------------------------------------- /WebRoot/finance_sina/finance_sina_files/6T9j-fxsenvx1050653.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/WebRoot/finance_sina/finance_sina_files/6T9j-fxsenvx1050653.jpg -------------------------------------------------------------------------------- /WebRoot/finance_sina/finance_sina_files/6ce57b4e56e64255a52bd57b9979ae88.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/WebRoot/finance_sina/finance_sina_files/6ce57b4e56e64255a52bd57b9979ae88.gif -------------------------------------------------------------------------------- /WebRoot/finance_sina/finance_sina_files/76411415003612: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/WebRoot/finance_sina/finance_sina_files/76411415003612 -------------------------------------------------------------------------------- /WebRoot/finance_sina/finance_sina_files/8TJT-fxqhmvp6184402.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/WebRoot/finance_sina/finance_sina_files/8TJT-fxqhmvp6184402.jpg -------------------------------------------------------------------------------- /WebRoot/finance_sina/finance_sina_files/8b8bcab09a1e4a2d8970f659cefe3371.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/WebRoot/finance_sina/finance_sina_files/8b8bcab09a1e4a2d8970f659cefe3371.gif -------------------------------------------------------------------------------- /WebRoot/finance_sina/finance_sina_files/8jB4-fxrpvea1042350.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/WebRoot/finance_sina/finance_sina_files/8jB4-fxrpvea1042350.jpg -------------------------------------------------------------------------------- /WebRoot/finance_sina/finance_sina_files/9298-fxsktkz9764998.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/WebRoot/finance_sina/finance_sina_files/9298-fxsktkz9764998.png -------------------------------------------------------------------------------- /WebRoot/finance_sina/finance_sina_files/9Zdk-fxpvysx1761416.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/WebRoot/finance_sina/finance_sina_files/9Zdk-fxpvysx1761416.jpg -------------------------------------------------------------------------------- /WebRoot/finance_sina/finance_sina_files/9tQB-fxqnski7842991.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/WebRoot/finance_sina/finance_sina_files/9tQB-fxqnski7842991.jpg -------------------------------------------------------------------------------- /WebRoot/finance_sina/finance_sina_files/ACtO-fxsenvn7303884.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/WebRoot/finance_sina/finance_sina_files/ACtO-fxsenvn7303884.jpg -------------------------------------------------------------------------------- /WebRoot/finance_sina/finance_sina_files/AFqF-fxryhhi8552193.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/WebRoot/finance_sina/finance_sina_files/AFqF-fxryhhi8552193.jpg -------------------------------------------------------------------------------- /WebRoot/finance_sina/finance_sina_files/AxLr-fxsktkz9707090.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/WebRoot/finance_sina/finance_sina_files/AxLr-fxsktkz9707090.png -------------------------------------------------------------------------------- /WebRoot/finance_sina/finance_sina_files/BVu4-fxpmypf3126983.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/WebRoot/finance_sina/finance_sina_files/BVu4-fxpmypf3126983.jpg -------------------------------------------------------------------------------- /WebRoot/finance_sina/finance_sina_files/ChangAnJiangTanCaiShouYouShangJiaoXiaoBiao-RenXiangBan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/WebRoot/finance_sina/finance_sina_files/ChangAnJiangTanCaiShouYouShangJiaoXiaoBiao-RenXiangBan.jpg -------------------------------------------------------------------------------- /WebRoot/finance_sina/finance_sina_files/D65k-fxsmeif4713260.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/WebRoot/finance_sina/finance_sina_files/D65k-fxsmeif4713260.JPG -------------------------------------------------------------------------------- /WebRoot/finance_sina/finance_sina_files/EIQK-fxsenvm0382703.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/WebRoot/finance_sina/finance_sina_files/EIQK-fxsenvm0382703.jpg -------------------------------------------------------------------------------- /WebRoot/finance_sina/finance_sina_files/G_37-fxsenvx1048244.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/WebRoot/finance_sina/finance_sina_files/G_37-fxsenvx1048244.jpg -------------------------------------------------------------------------------- /WebRoot/finance_sina/finance_sina_files/IO.WebPush3.localConn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/WebRoot/finance_sina/finance_sina_files/IO.WebPush3.localConn.html -------------------------------------------------------------------------------- /WebRoot/finance_sina/finance_sina_files/IbcT-fxqswxn6570217.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/WebRoot/finance_sina/finance_sina_files/IbcT-fxqswxn6570217.jpg -------------------------------------------------------------------------------- /WebRoot/finance_sina/finance_sina_files/JFlg-fxqhmvp6224823.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/WebRoot/finance_sina/finance_sina_files/JFlg-fxqhmvp6224823.jpg -------------------------------------------------------------------------------- /WebRoot/finance_sina/finance_sina_files/Kk1N-fxrytex7334541.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/WebRoot/finance_sina/finance_sina_files/Kk1N-fxrytex7334541.jpg -------------------------------------------------------------------------------- /WebRoot/finance_sina/finance_sina_files/OB52-fxqnsks4792734.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/WebRoot/finance_sina/finance_sina_files/OB52-fxqnsks4792734.jpg -------------------------------------------------------------------------------- /WebRoot/finance_sina/finance_sina_files/PHTR-fxpvytf8794229.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/WebRoot/finance_sina/finance_sina_files/PHTR-fxpvytf8794229.png -------------------------------------------------------------------------------- /WebRoot/finance_sina/finance_sina_files/PYVR-fxsktkp9056774.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/WebRoot/finance_sina/finance_sina_files/PYVR-fxsktkp9056774.jpg -------------------------------------------------------------------------------- /WebRoot/finance_sina/finance_sina_files/QiHuo2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/WebRoot/finance_sina/finance_sina_files/QiHuo2.gif -------------------------------------------------------------------------------- /WebRoot/finance_sina/finance_sina_files/R2cE-fxqnsks4789734.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/WebRoot/finance_sina/finance_sina_files/R2cE-fxqnsks4789734.jpg -------------------------------------------------------------------------------- /WebRoot/finance_sina/finance_sina_files/TB1HALsJFXXXXb1XpXXSutbFXXX.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/WebRoot/finance_sina/finance_sina_files/TB1HALsJFXXXXb1XpXXSutbFXXX.jpg -------------------------------------------------------------------------------- /WebRoot/finance_sina/finance_sina_files/TB1PyDCHpXXXXagXVXX3yLs_pXX-107-17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/WebRoot/finance_sina/finance_sina_files/TB1PyDCHpXXXXagXVXX3yLs_pXX-107-17.png -------------------------------------------------------------------------------- /WebRoot/finance_sina/finance_sina_files/TB1rRQpJXXXXXcvXXXXXXXXXXXX-40-26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/WebRoot/finance_sina/finance_sina_files/TB1rRQpJXXXXXcvXXXXXXXXXXXX-40-26.png -------------------------------------------------------------------------------- /WebRoot/finance_sina/finance_sina_files/TB1upAiJXXXXXa5aXXXXXXXXXXX-116-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/WebRoot/finance_sina/finance_sina_files/TB1upAiJXXXXXa5aXXXXXXXXXXX-116-30.png -------------------------------------------------------------------------------- /WebRoot/finance_sina/finance_sina_files/U10616P31DT20140415140016.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/WebRoot/finance_sina/finance_sina_files/U10616P31DT20140415140016.jpg -------------------------------------------------------------------------------- /WebRoot/finance_sina/finance_sina_files/U12164P31T32D126272F651DT20151214100934.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/WebRoot/finance_sina/finance_sina_files/U12164P31T32D126272F651DT20151214100934.png -------------------------------------------------------------------------------- /WebRoot/finance_sina/finance_sina_files/U12204P1493T24D2185F364DT20151113074841.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/WebRoot/finance_sina/finance_sina_files/U12204P1493T24D2185F364DT20151113074841.jpg -------------------------------------------------------------------------------- /WebRoot/finance_sina/finance_sina_files/U12678P31T88D31921F2012DT20160523100340.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/WebRoot/finance_sina/finance_sina_files/U12678P31T88D31921F2012DT20160523100340.gif -------------------------------------------------------------------------------- /WebRoot/finance_sina/finance_sina_files/U2804P31DT20140504102801.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/WebRoot/finance_sina/finance_sina_files/U2804P31DT20140504102801.jpg -------------------------------------------------------------------------------- /WebRoot/finance_sina/finance_sina_files/U5403P31DT20160519165856.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/WebRoot/finance_sina/finance_sina_files/U5403P31DT20160519165856.jpg -------------------------------------------------------------------------------- /WebRoot/finance_sina/finance_sina_files/U7797P31DT20160302134848.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/WebRoot/finance_sina/finance_sina_files/U7797P31DT20160302134848.jpg -------------------------------------------------------------------------------- /WebRoot/finance_sina/finance_sina_files/VakF-fxsexua6288384.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/WebRoot/finance_sina/finance_sina_files/VakF-fxsexua6288384.jpg -------------------------------------------------------------------------------- /WebRoot/finance_sina/finance_sina_files/VlUB-fxsktkp9223278.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/WebRoot/finance_sina/finance_sina_files/VlUB-fxsktkp9223278.jpg -------------------------------------------------------------------------------- /WebRoot/finance_sina/finance_sina_files/VyvP-fxsktkp9056721.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/WebRoot/finance_sina/finance_sina_files/VyvP-fxsktkp9056721.png -------------------------------------------------------------------------------- /WebRoot/finance_sina/finance_sina_files/WYE1-fxryhhi8538134.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/WebRoot/finance_sina/finance_sina_files/WYE1-fxryhhi8538134.jpg -------------------------------------------------------------------------------- /WebRoot/finance_sina/finance_sina_files/YzuS-fxqnskh0957464.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/WebRoot/finance_sina/finance_sina_files/YzuS-fxqnskh0957464.jpg -------------------------------------------------------------------------------- /WebRoot/finance_sina/finance_sina_files/Zfaw-fxsktkr5913966.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/WebRoot/finance_sina/finance_sina_files/Zfaw-fxsktkr5913966.jpg -------------------------------------------------------------------------------- /WebRoot/finance_sina/finance_sina_files/abe335c5cc5a435687a1514c5c179c81.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/WebRoot/finance_sina/finance_sina_files/abe335c5cc5a435687a1514c5c179c81.gif -------------------------------------------------------------------------------- /WebRoot/finance_sina/finance_sina_files/adfshow.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /WebRoot/finance_sina/finance_sina_files/as0l-fxqpchx6359760.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/WebRoot/finance_sina/finance_sina_files/as0l-fxqpchx6359760.jpg -------------------------------------------------------------------------------- /WebRoot/finance_sina/finance_sina_files/b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/WebRoot/finance_sina/finance_sina_files/b.png -------------------------------------------------------------------------------- /WebRoot/finance_sina/finance_sina_files/b64554b780f146aea16e1aae7fa7f1e2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/WebRoot/finance_sina/finance_sina_files/b64554b780f146aea16e1aae7fa7f1e2.jpg -------------------------------------------------------------------------------- /WebRoot/finance_sina/finance_sina_files/bd_fi_hp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/WebRoot/finance_sina/finance_sina_files/bd_fi_hp.css -------------------------------------------------------------------------------- /WebRoot/finance_sina/finance_sina_files/bd_fi_hp_20151127.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/WebRoot/finance_sina/finance_sina_files/bd_fi_hp_20151127.js -------------------------------------------------------------------------------- /WebRoot/finance_sina/finance_sina_files/bf8806b954b2404bab030a7815f7a44d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/WebRoot/finance_sina/finance_sina_files/bf8806b954b2404bab030a7815f7a44d.jpg -------------------------------------------------------------------------------- /WebRoot/finance_sina/finance_sina_files/blklike.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/WebRoot/finance_sina/finance_sina_files/blklike.js -------------------------------------------------------------------------------- /WebRoot/finance_sina/finance_sina_files/cRNk-fxrckae7776020.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/WebRoot/finance_sina/finance_sina_files/cRNk-fxrckae7776020.jpg -------------------------------------------------------------------------------- /WebRoot/finance_sina/finance_sina_files/ckctl(1).html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /WebRoot/finance_sina/finance_sina_files/ckctl.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /WebRoot/finance_sina/finance_sina_files/cvbr-fxsenvx1072758.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/WebRoot/finance_sina/finance_sina_files/cvbr-fxsenvx1072758.jpg -------------------------------------------------------------------------------- /WebRoot/finance_sina/finance_sina_files/dR7x-fxsktkr5934090.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/WebRoot/finance_sina/finance_sina_files/dR7x-fxsktkr5934090.jpg -------------------------------------------------------------------------------- /WebRoot/finance_sina/finance_sina_files/datepicker-pack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/WebRoot/finance_sina/finance_sina_files/datepicker-pack.js -------------------------------------------------------------------------------- /WebRoot/finance_sina/finance_sina_files/default_avatar_male_50.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/WebRoot/finance_sina/finance_sina_files/default_avatar_male_50.gif -------------------------------------------------------------------------------- /WebRoot/finance_sina/finance_sina_files/directAd_cj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwsgithub/Rpt/715e395bbfa39ac3c8990916f84ee9114f6fdb60/WebRoot/finance_sina/finance_sina_files/directAd_cj.js -------------------------------------------------------------------------------- /WebRoot/finance_sina/finance_sina_files/ex(1): -------------------------------------------------------------------------------- 1 | (function(w,d){var o={i:"mm_15890324_2192376_13112611",callback:"",userid:"",o:"",f:"",n:"",sd:"ope.tanx.com",d:"1",m:0,w1:"1024",a:"1",r:"1",sl:0,lb:0},p=["http",o.sl?"s":"","://",o.lb?"atanx2.alicdn.com/g/mm/tanx-cdn2":"atanx.alicdn.com","/t/",o.m?"tanxmobile/":"","tanxssp.js?_v=12"].join("");if(w.TANX_SHOW){w.TANX_SHOW(o);return}w.TANX_ONLOAD=w.TANX_ONLOAD||[];TANX_ONLOAD.push(o);if(d.getElementById("tanx-a-"+(o.i||""))){var s=d.createElement("script"),h=d.getElementsByTagName("head")[0];s.charset="utf-8";s.async=!0;s.src=p;h.insertBefore(s,h.firstChild)}else{d.write('