├── .DS_Store ├── README.md ├── pom.xml └── src └── main ├── java └── com │ └── tax │ ├── Application.java │ ├── config │ ├── DataSourceConfig.java │ └── WebConfig.java │ ├── controller │ ├── AlterPasswordController.java │ ├── CodeController.java │ ├── ImgUploadController.java │ ├── LoginController.java │ ├── LoginInterceptor.java │ ├── LoginModel.java │ ├── RegistController.java │ ├── admin │ │ ├── ACityInfoController.java │ │ ├── ADIndexController.java │ │ ├── ANoticeInfoController.java │ │ ├── AStaffInfoController.java │ │ ├── ATaxTypeController.java │ │ ├── AUserInfoController.java │ │ ├── AWgInfoController.java │ │ └── AZcInfoController.java │ ├── index │ │ ├── IndexNoticeController.java │ │ ├── IndexWgController.java │ │ └── IndexZcController.java │ ├── staff │ │ ├── SApplyLogController.java │ │ ├── SFpLogController.java │ │ ├── SJfLogController.java │ │ ├── SMsgInfoController.java │ │ ├── SStaffInfoController.java │ │ ├── STIndexController.java │ │ └── STaxLogController.java │ └── user │ │ ├── UApplyLogController.java │ │ ├── UFpLogController.java │ │ ├── UJfLogController.java │ │ ├── UMsgInfoController.java │ │ ├── USIndexController.java │ │ ├── UTaxLogController.java │ │ └── UUserInfoController.java │ ├── dao │ ├── AdminInfoMapper.java │ ├── ApplyLogMapper.java │ ├── CityInfoMapper.java │ ├── FpLogMapper.java │ ├── JfLogMapper.java │ ├── MsgInfoMapper.java │ ├── NoticeInfoMapper.java │ ├── StaffInfoMapper.java │ ├── TaxLogMapper.java │ ├── TaxTypeMapper.java │ ├── UserInfoMapper.java │ ├── WgInfoMapper.java │ └── ZcInfoMapper.java │ ├── model │ ├── AdminInfo.java │ ├── AdminInfoExample.java │ ├── ApplyLog.java │ ├── ApplyLogExample.java │ ├── CityInfo.java │ ├── CityInfoExample.java │ ├── FpLog.java │ ├── FpLogExample.java │ ├── JfLog.java │ ├── JfLogExample.java │ ├── MsgInfo.java │ ├── MsgInfoExample.java │ ├── NoticeInfo.java │ ├── NoticeInfoExample.java │ ├── StaffInfo.java │ ├── StaffInfoExample.java │ ├── TaxLog.java │ ├── TaxLogExample.java │ ├── TaxType.java │ ├── TaxTypeExample.java │ ├── UserInfo.java │ ├── UserInfoExample.java │ ├── WgInfo.java │ ├── WgInfoExample.java │ ├── ZcInfo.java │ └── ZcInfoExample.java │ ├── service │ ├── AdminInfoService.java │ ├── ApplyLogService.java │ ├── CityInfoService.java │ ├── FpLogService.java │ ├── JfLogService.java │ ├── MsgInfoService.java │ ├── NoticeInfoService.java │ ├── StaffInfoService.java │ ├── TaxLogService.java │ ├── TaxTypeService.java │ ├── UserInfoService.java │ ├── WgInfoService.java │ ├── ZcInfoService.java │ └── impl │ │ ├── AdminInfoServiceImpl.java │ │ ├── ApplyLogServiceImpl.java │ │ ├── CityInfoServiceImpl.java │ │ ├── FpLogServiceImpl.java │ │ ├── JfLogServiceImpl.java │ │ ├── MsgInfoServiceImpl.java │ │ ├── NoticeInfoServiceImpl.java │ │ ├── StaffInfoServiceImpl.java │ │ ├── TaxLogServiceImpl.java │ │ ├── TaxTypeServiceImpl.java │ │ ├── UserInfoServiceImpl.java │ │ ├── WgInfoServiceImpl.java │ │ └── ZcInfoServiceImpl.java │ └── util │ ├── CommonUtils.java │ ├── CommonVal.java │ ├── DataListUtils.java │ ├── DateCommonUtils.java │ ├── ImgRandomCodeUtils.java │ ├── PageUtils.java │ ├── RandomCodeUtils.java │ └── Upload.java ├── resources ├── application.properties └── mapper │ ├── AdminInfoMapper.xml │ ├── ApplyLogMapper.xml │ ├── CityInfoMapper.xml │ ├── FpLogMapper.xml │ ├── JfLogMapper.xml │ ├── MsgInfoMapper.xml │ ├── NoticeInfoMapper.xml │ ├── StaffInfoMapper.xml │ ├── TaxLogMapper.xml │ ├── TaxTypeMapper.xml │ ├── UserInfoMapper.xml │ ├── WgInfoMapper.xml │ └── ZcInfoMapper.xml └── webapp ├── WEB-INF ├── views │ ├── admin │ │ ├── city_info │ │ │ ├── add_page.jsp │ │ │ ├── list.jsp │ │ │ └── update_page.jsp │ │ ├── index.jsp │ │ ├── notice_info │ │ │ ├── add_page.jsp │ │ │ ├── list.jsp │ │ │ └── update_page.jsp │ │ ├── staff_info │ │ │ ├── add_page.jsp │ │ │ ├── list.jsp │ │ │ └── update_page.jsp │ │ ├── tax_type │ │ │ ├── add_page.jsp │ │ │ ├── list.jsp │ │ │ └── update_page.jsp │ │ ├── user_info │ │ │ └── list.jsp │ │ ├── wg_info │ │ │ ├── add_page.jsp │ │ │ ├── list.jsp │ │ │ └── update_page.jsp │ │ └── zc_info │ │ │ ├── add_page.jsp │ │ │ ├── detail.jsp │ │ │ ├── list.jsp │ │ │ └── update_page.jsp │ ├── alter_password.jsp │ ├── error.jsp │ ├── index │ │ ├── notice_detail.jsp │ │ ├── notice_list.jsp │ │ ├── wg_detail.jsp │ │ ├── wg_list.jsp │ │ ├── zc_detail.jsp │ │ └── zc_list.jsp │ ├── staff │ │ ├── apply_log │ │ │ ├── btg_page.jsp │ │ │ └── list.jsp │ │ ├── fp_log │ │ │ ├── btg_page.jsp │ │ │ └── list.jsp │ │ ├── index.jsp │ │ ├── jf_log │ │ │ └── list.jsp │ │ ├── msg_info │ │ │ ├── list.jsp │ │ │ └── reply_page.jsp │ │ ├── personal.jsp │ │ └── tax_log │ │ │ ├── list.jsp │ │ │ └── sqtg_page.jsp │ ├── sys_login.jsp │ ├── user │ │ ├── apply_log │ │ │ ├── add_page.jsp │ │ │ └── list.jsp │ │ ├── fp_log │ │ │ ├── add_page.jsp │ │ │ └── list.jsp │ │ ├── index.jsp │ │ ├── jf_log │ │ │ └── list.jsp │ │ ├── msg_info │ │ │ ├── add_page.jsp │ │ │ └── list.jsp │ │ ├── personal.jsp │ │ ├── tax_log │ │ │ └── list.jsp │ │ └── user_info │ │ │ └── update_page.jsp │ └── user_info_regist.jsp └── web.xml └── static ├── admin ├── css │ ├── modal_css.css │ └── public.css ├── images │ ├── action_btn.gif │ ├── dclogo.gif │ ├── icon_edit_white.png │ ├── icon_menu.png │ ├── icon_mobile.png │ ├── icon_no.png │ ├── icon_yes.png │ ├── menu_cur.gif │ └── top_add.gif └── js │ ├── global.js │ ├── jquery.min.js │ ├── jquery.tab.js │ └── modal_js.js ├── bbs └── res │ ├── css │ ├── full.css │ ├── global.css │ ├── iconfont.eot │ ├── iconfont.svg │ ├── iconfont.ttf │ └── iconfont.woff │ ├── images │ ├── avatar │ │ ├── 0.jpg │ │ ├── 00.jpg │ │ ├── 1.jpg │ │ ├── 10.jpg │ │ ├── 11.jpg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ ├── 4.jpg │ │ ├── 5.jpg │ │ ├── 6.jpg │ │ ├── 7.jpg │ │ ├── 8.jpg │ │ ├── 9.jpg │ │ └── default.png │ ├── case.png │ ├── fly.jpg │ ├── logo-1.png │ ├── logo.png │ ├── other │ │ ├── 1437100018023.jpg │ │ └── study-a.png │ └── weixin.jpg │ ├── layui │ ├── css │ │ ├── layui.css │ │ ├── layui.mobile.css │ │ └── modules │ │ │ ├── code.css │ │ │ ├── laydate │ │ │ └── default │ │ │ │ └── laydate.css │ │ │ └── layer │ │ │ └── default │ │ │ ├── icon-ext.png │ │ │ ├── icon.png │ │ │ ├── layer.css │ │ │ ├── loading-0.gif │ │ │ ├── loading-1.gif │ │ │ └── loading-2.gif │ ├── font │ │ ├── iconfont.eot │ │ ├── iconfont.svg │ │ ├── iconfont.ttf │ │ └── iconfont.woff │ ├── images │ │ └── face │ │ │ ├── 0.gif │ │ │ ├── 1.gif │ │ │ ├── 10.gif │ │ │ ├── 11.gif │ │ │ ├── 12.gif │ │ │ ├── 13.gif │ │ │ ├── 14.gif │ │ │ ├── 15.gif │ │ │ ├── 16.gif │ │ │ ├── 17.gif │ │ │ ├── 18.gif │ │ │ ├── 19.gif │ │ │ ├── 2.gif │ │ │ ├── 20.gif │ │ │ ├── 21.gif │ │ │ ├── 22.gif │ │ │ ├── 23.gif │ │ │ ├── 24.gif │ │ │ ├── 25.gif │ │ │ ├── 26.gif │ │ │ ├── 27.gif │ │ │ ├── 28.gif │ │ │ ├── 29.gif │ │ │ ├── 3.gif │ │ │ ├── 30.gif │ │ │ ├── 31.gif │ │ │ ├── 32.gif │ │ │ ├── 33.gif │ │ │ ├── 34.gif │ │ │ ├── 35.gif │ │ │ ├── 36.gif │ │ │ ├── 37.gif │ │ │ ├── 38.gif │ │ │ ├── 39.gif │ │ │ ├── 4.gif │ │ │ ├── 40.gif │ │ │ ├── 41.gif │ │ │ ├── 42.gif │ │ │ ├── 43.gif │ │ │ ├── 44.gif │ │ │ ├── 45.gif │ │ │ ├── 46.gif │ │ │ ├── 47.gif │ │ │ ├── 48.gif │ │ │ ├── 49.gif │ │ │ ├── 5.gif │ │ │ ├── 50.gif │ │ │ ├── 51.gif │ │ │ ├── 52.gif │ │ │ ├── 53.gif │ │ │ ├── 54.gif │ │ │ ├── 55.gif │ │ │ ├── 56.gif │ │ │ ├── 57.gif │ │ │ ├── 58.gif │ │ │ ├── 59.gif │ │ │ ├── 6.gif │ │ │ ├── 60.gif │ │ │ ├── 61.gif │ │ │ ├── 62.gif │ │ │ ├── 63.gif │ │ │ ├── 64.gif │ │ │ ├── 65.gif │ │ │ ├── 66.gif │ │ │ ├── 67.gif │ │ │ ├── 68.gif │ │ │ ├── 69.gif │ │ │ ├── 7.gif │ │ │ ├── 70.gif │ │ │ ├── 71.gif │ │ │ ├── 8.gif │ │ │ └── 9.gif │ ├── lay │ │ └── modules │ │ │ ├── carousel.js │ │ │ ├── code.js │ │ │ ├── element.js │ │ │ ├── flow.js │ │ │ ├── form.js │ │ │ ├── jquery.js │ │ │ ├── laydate.js │ │ │ ├── layedit.js │ │ │ ├── layer.js │ │ │ ├── laypage.js │ │ │ ├── laytpl.js │ │ │ ├── mobile.js │ │ │ ├── table.js │ │ │ ├── tree.js │ │ │ ├── upload.js │ │ │ └── util.js │ ├── layui.all.js │ └── layui.js │ └── mods │ ├── case.js │ ├── face.js │ ├── index.js │ ├── jie.js │ └── user.js ├── common ├── My97DatePicker │ └── 4.8 │ │ ├── WdatePicker.js │ │ ├── calendar.js │ │ ├── lang │ │ ├── en.js │ │ ├── zh-cn.js │ │ └── zh-tw.js │ │ └── skin │ │ ├── WdatePicker.css │ │ ├── datePicker.gif │ │ ├── default │ │ ├── datepicker.css │ │ └── img.gif │ │ ├── twoer │ │ ├── datepicker-dev.css │ │ ├── datepicker.css │ │ ├── img.gif │ │ └── img.png │ │ └── whyGreen │ │ ├── bg.jpg │ │ ├── datepicker.css │ │ └── img.gif ├── jquery-1.11.1.min.js ├── jquery-form.js ├── loading.gif ├── page │ ├── myPagination.css │ └── myPagination.js ├── selectSearch │ ├── jquery.searchableSelect.css │ └── jquery.searchableSelect.js ├── utils │ └── listutils.js ├── wangeditor-3.0.17 │ ├── fonts │ │ └── w-e-icon.woff │ ├── wangEditor.css │ ├── wangEditor.js │ ├── wangEditor.min.css │ ├── wangEditor.min.js │ ├── wangEditor.min.js.map │ └── wangeditor_emotion.js ├── webupload │ ├── Uploader.swf │ ├── imgloading.gif │ ├── upload.js │ ├── webuploader.css │ ├── webuploader.js │ └── �� ��.png └── ����.png └── login ├── css ├── H-ui.login.css └── H-ui.min.css └── images ├── acrossTab └── acrossTab-2.png ├── admin-login-bg.jpg ├── admin-loginform-bg.png ├── cn.gif ├── loading.gif ├── logo.png └── um.gif /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/TaxManagementSystem/41875aa13d1e1b8b4e33fa0576e628548648e8f9/.DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 全目录 2 | 3 | [更多系统、论文,供君选择 ~~>](https://www.yuque.com/wisebit/blog) 4 | 5 | # 246.TaxManagementSystem 6 | 7 |
群: 983063232(入群获取sql文件)
8 |QQ: 206157502(加好友获取sql文件)
9 | 10 |
14 |
15 |
16 |
17 |
18 |