在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → 代理商管理系统(javaweb)

代理商管理系统(javaweb)

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:26.97M
  • 下载次数:3
  • 浏览次数:102
  • 发布时间:2021-02-16
  • 实例类别:一般编程问题
  • 发 布 人:好学IT男
  • 文件格式:.rar
  • 所需积分:2
 

实例介绍

【实例简介】
数据库Q我714140539
【实例截图】
【核心代码】
341e95ab-60dc-4511-ac92-3ab1e763a544
└── agentsystem
├── resources
│   ├── applicationContext-default.xml
│   ├── dtd
│   │   ├── mybatis-3-config.dtd
│   │   ├── mybatis-3-mapper.dtd
│   │   └── struts-2.1.dtd
│   ├── jdbc.properties
│   ├── log4j.properties
│   ├── mybatis-config.xml
│   ├── schema
│   │   ├── spring-aop-3.0.xsd
│   │   ├── spring-beans-3.0.xsd
│   │   ├── spring-context-3.0.xsd
│   │   └── spring-tx-3.0.xsd
│   ├── struts
│   │   ├── struts-account.xml
│   │   ├── struts-custom.xml
│   │   ├── struts-function.xml
│   │   ├── struts-keywords.xml
│   │   ├── struts-login.xml
│   │   ├── struts-logs.xml
│   │   ├── struts-report.xml
│   │   ├── struts-role.xml
│   │   ├── struts-systemconfig.xml
│   │   └── struts-user.xml
│   └── struts.xml
├── src
│   └── org
│   └── agent
│   ├── action
│   │   ├── AcountAction.java
│   │   ├── BaseAction.java
│   │   ├── CustomAction.java
│   │   ├── FunctionAction.java
│   │   ├── KeywordsAction.java
│   │   ├── LoginAction.java
│   │   ├── LogsAction.java
│   │   ├── ReportAction.java
│   │   ├── RoleAction.java
│   │   ├── SystemConfigAction.java
│   │   └── UserAction.java
│   ├── common
│   │   ├── Constants.java
│   │   ├── DateTo.java
│   │   ├── MD5.java
│   │   ├── PageSupport.java
│   │   └── SQLTools.java
│   ├── dao
│   │   ├── account
│   │   │   ├── AccountMapper.java
│   │   │   └── AccountMapper.xml
│   │   ├── accountdetail
│   │   │   ├── AccountDetailMapper.java
│   │   │   └── AccountDetailMapper.xml
│   │   ├── contact
│   │   │   ├── ContactMapper.java
│   │   │   └── ContactMapper.xml
│   │   ├── custom
│   │   │   ├── CustomMapper.java
│   │   │   └── CustomMapper.xml
│   │   ├── function
│   │   │   ├── FunctionMapper.java
│   │   │   └── FunctionMapper.xml
│   │   ├── keywords
│   │   │   ├── KeywordsMapper.java
│   │   │   └── KeywordsMapper.xml
│   │   ├── logs
│   │   │   ├── LogsMapper.java
│   │   │   └── LogsMapper.xml
│   │   ├── permission
│   │   │   ├── PermissionMapper.java
│   │   │   └── PermissionMapper.xml
│   │   ├── provinceandcity
│   │   │   ├── ProvinceAndCityMapper.java
│   │   │   └── ProvinceAndCityMapper.xml
│   │   ├── report
│   │   │   ├── ReportMapper.java
│   │   │   └── ReportMapper.xml
│   │   ├── role
│   │   │   ├── RoleMapper.java
│   │   │   └── RoleMapper.xml
│   │   ├── systemconfig
│   │   │   ├── SystemConfigMapper.java
│   │   │   └── SystemConfigMapper.xml
│   │   └── user
│   │   ├── UserMapper.java
│   │   └── UserMapper.xml
│   ├── interceptor
│   │   └── AdminInterceptor.java
│   ├── pojo
│   │   ├── AccountDetail.java
│   │   ├── Account.java
│   │   ├── Area.java
│   │   ├── Base.java
│   │   ├── City.java
│   │   ├── Contact.java
│   │   ├── Custom.java
│   │   ├── Function.java
│   │   ├── Keywords.java
│   │   ├── Logs.java
│   │   ├── Permission.java
│   │   ├── Province.java
│   │   ├── ReportProduct.java
│   │   ├── RoleFunctions.java
│   │   ├── Role.java
│   │   ├── SystemConfig.java
│   │   └── User.java
│   ├── service
│   │   ├── account
│   │   │   ├── AccountService.java
│   │   │   └── impl
│   │   │   └── AccountServiceImpl.java
│   │   ├── accountdetail
│   │   │   ├── AccountDetailService.java
│   │   │   └── impl
│   │   │   └── AccountDetailServiceImpl.java
│   │   ├── contact
│   │   │   ├── ContactService.java
│   │   │   └── impl
│   │   │   └── ContactServiceImpl.java
│   │   ├── custom
│   │   │   ├── CustomService.java
│   │   │   └── impl
│   │   │   └── CustomServiceImpl.java
│   │   ├── function
│   │   │   ├── FunctionService.java
│   │   │   └── impl
│   │   │   └── FunctionServiceImpl.java
│   │   ├── keywords
│   │   │   ├── impl
│   │   │   │   └── KeywordsServiceImpl.java
│   │   │   └── KeywordsService.java
│   │   ├── logs
│   │   │   ├── impl
│   │   │   │   └── LogsServiceImpl.java
│   │   │   └── LogsService.java
│   │   ├── permission
│   │   │   ├── impl
│   │   │   │   └── PermissionServiceImpl.java
│   │   │   └── PermissionService.java
│   │   ├── provinceandcity
│   │   │   ├── impl
│   │   │   │   └── ProvinceAndCityServiceImpl.java
│   │   │   └── ProvinceAndCityService.java
│   │   ├── report
│   │   │   ├── impl
│   │   │   │   └── ReportServiceImpl.java
│   │   │   └── ReportService.java
│   │   ├── role
│   │   │   ├── impl
│   │   │   │   └── RoleServiceImpl.java
│   │   │   └── RoleService.java
│   │   ├── systemconfig
│   │   │   ├── impl
│   │   │   │   └── SystemConfigServiceImpl.java
│   │   │   └── SystemConfigService.java
│   │   └── user
│   │   ├── impl
│   │   │   └── UserServiceImpl.java
│   │   └── UserService.java
│   └── systeminit
│   └── SystemInit.java
├── test
│   └── biz
│   ├── BizTest.java
│   ├── ReportTest.java
│   └── TxTest.java
└── WebRoot
├── alertframe
│   ├── changelog.txt
│   ├── demo.html
│   ├── iframe.html
│   ├── skin
│   │   ├── black
│   │   │   ├── images
│   │   │   │   ├── ask.gif
│   │   │   │   ├── btn_bg.gif
│   │   │   │   ├── close.gif
│   │   │   │   ├── err.gif
│   │   │   │   ├── info.gif
│   │   │   │   ├── right.gif
│   │   │   │   ├── title_bg_center.gif
│   │   │   │   ├── title_bg_left.gif
│   │   │   │   └── title_bg_right.gif
│   │   │   └── ymPrompt.css
│   │   ├── bluebar
│   │   │   ├── images
│   │   │   │   ├── ask.gif
│   │   │   │   ├── btn_bg.gif
│   │   │   │   ├── close.gif
│   │   │   │   ├── err.gif
│   │   │   │   ├── info.gif
│   │   │   │   ├── right.gif
│   │   │   │   ├── title_bg_center.gif
│   │   │   │   ├── title_bg_left.gif
│   │   │   │   └── title_bg_right.gif
│   │   │   └── ymPrompt.css
│   │   ├── dmm-green
│   │   │   ├── images
│   │   │   │   ├── ask.gif
│   │   │   │   ├── btn_bg.gif
│   │   │   │   ├── close.gif
│   │   │   │   ├── err.gif
│   │   │   │   ├── info.gif
│   │   │   │   ├── right.gif
│   │   │   │   ├── title_bg_center.gif
│   │   │   │   ├── title_bg_left.gif
│   │   │   │   ├── title_bg_right.gif
│   │   │   │   ├── titleIco.gif
│   │   │   │   ├── win_b.gif
│   │   │   │   ├── win_lb.gif
│   │   │   │   ├── win_l.gif
│   │   │   │   ├── win_rb.gif
│   │   │   │   └── win_r.gif
│   │   │   └── ymPrompt.css
│   │   ├── qq
│   │   │   ├── images
│   │   │   │   ├── ask.gif
│   │   │   │   ├── btn_bg.gif
│   │   │   │   ├── close.gif
│   │   │   │   ├── content_bg.gif
│   │   │   │   ├── err.gif
│   │   │   │   ├── info.gif
│   │   │   │   ├── right.gif
│   │   │   │   ├── title_bg_center.gif
│   │   │   │   ├── title_bg_left.gif
│   │   │   │   ├── title_bg_right.gif
│   │   │   │   ├── win_b.gif
│   │   │   │   ├── win_lb.gif
│   │   │   │   ├── win_l.gif
│   │   │   │   ├── win_rb.gif
│   │   │   │   └── win_r.gif
│   │   │   └── ymPrompt.css
│   │   ├── simple
│   │   │   ├── images
│   │   │   │   ├── ask.gif
│   │   │   │   ├── close.gif
│   │   │   │   ├── err.gif
│   │   │   │   ├── info.gif
│   │   │   │   └── right.gif
│   │   │   └── ymPrompt.css
│   │   ├── simple_gray
│   │   │   ├── images
│   │   │   │   ├── ask.gif
│   │   │   │   ├── err.gif
│   │   │   │   ├── info.gif
│   │   │   │   └── right.gif
│   │   │   └── ymPrompt.css
│   │   └── vista
│   │   ├── images
│   │   │   ├── ask.gif
│   │   │   ├── btn_bg.gif
│   │   │   ├── close.gif
│   │   │   ├── err.gif
│   │   │   ├── info.gif
│   │   │   ├── right.gif
│   │   │   ├── title_bg_center.gif
│   │   │   ├── title_bg_left.gif
│   │   │   ├── title_bg_right.gif
│   │   │   ├── win_b.gif
│   │   │   ├── win_lb.gif
│   │   │   ├── win_l.gif
│   │   │   ├── win_rb.gif
│   │   │   └── win_r.gif
│   │   └── ymPrompt.css
│   ├── ymPrompt_Ex.js
│   ├── ymPrompt.js
│   └── ymPrompt_source.js
├── css
│   ├── accountdetail.css
│   ├── addcustom.css
│   ├── caiwu.css
│   ├── checkkeyword.css
│   ├── customlist.css
│   ├── default.css
│   ├── functionlist.css
│   ├── keyword.css
│   ├── keywordmanage.css
│   ├── loglist.css
│   ├── logs.css
│   ├── main.css
│   ├── modifycustom.css
│   ├── modifyportal.css
│   ├── myportallist.css
│   ├── openapp.css
│   ├── permission.css
│   ├── public.css
│   ├── report.css
│   ├── rolelist.css
│   ├── systemconfig.css
│   ├── userlist.css
│   ├── viewcustom.css
│   ├── viewportal.css
│   ├── xufei.css
│   └── yfk.css
├── humane
│   ├── bg-button-green.gif
│   ├── eot_woff
│   │   ├── Cabin+Sketch700_v2.eot
│   │   ├── Cabin+Sketch700_v2.woff
│   │   ├── Ubuntu_Mono.eot
│   │   ├── Ubuntu_Mono.woff
│   │   ├── Ubuntu_v2.eot
│   │   └── Ubuntu_v2.woff
│   ├── humane.js
│   ├── humane.min.js
│   ├── index.html
│   └── themes
│   ├── bigbox.css
│   ├── boldlight.css
│   ├── Cabin+Sketch700_v2.css
│   ├── jackedup.css
│   ├── libnotify.css
│   ├── original.css
│   ├── Ubuntu_Mono.css
│   └── Ubuntu_v2.css
├── imgs
│   ├── bt_1px.gif
│   ├── bt_1px_hs.gif
│   ├── bt_blue.gif
│   ├── bt_dialog_1px.gif
│   ├── bt_green_add.gif
│   ├── bt_green_add_user.gif
│   ├── content_bg_slice-2e234d4b4095b97a7f901ddc3194d517.png
│   ├── dialog_bg.gif
│   ├── diaolog_top_1px.png
│   ├── excel.png
│   ├── gradient.png
│   ├── gray_bg.gif
│   ├── left_bluebg_1px.gif
│   ├── line1.gif
│   ├── line1.white.gif
│   ├── menu_bg.png
│   ├── pdf.png
│   ├── tabbg.gif
│   ├── top_1px.gif
│   └── top_bg.gif
├── inc
│   ├── foot.jsp
│   ├── head.jsp
│   ├── iframehead.jsp
│   └── pager.jsp
├── index.jsp
├── js
│   ├── addcustom.js
│   ├── caiwu.js
│   ├── checkkeyword.js
│   ├── customlist.js
│   ├── functionlist.js
│   ├── jquery-1.8.3.min.js
│   ├── keyword.js
│   ├── keywordmanage.js
│   ├── login.js
│   ├── main.js
│   ├── modifycustom.js
│   ├── openapp.js
│   ├── permission.js
│   ├── public.js
│   ├── report.js
│   ├── rolelist.js
│   ├── systemconfig.js
│   ├── userlist.js
│   ├── xufei.js
│   └── yfk.js
├── medire
│   ├── calendar.js
│   ├── config.js
│   ├── lang
│   │   ├── en.js
│   │   ├── zh-cn.js
│   │   └── zh-tw.js
│   ├── My97DatePicker.htm
│   ├── skin
│   │   ├── datePicker.gif
│   │   ├── default
│   │   │   ├── datepicker.css
│   │   │   └── img.gif
│   │   ├── WdatePicker.css
│   │   └── whyGreen
│   │   ├── bg.jpg
│   │   ├── datepicker.css
│   │   └── img.gif
│   └── WdatePicker.js
├── META-INF
│   └── MANIFEST.MF
├── reports
│   ├── accountbalance.jasper
│   ├── agentliusreport.jasper
│   ├── productreport.jasper
│   └── yfkliushuireport.jasper
└── WEB-INF
├── classes
│   ├── applicationContext-default.xml
│   ├── biz
│   │   ├── BizTest.class
│   │   ├── ReportTest.class
│   │   └── TxTest.class
│   ├── dtd
│   │   ├── mybatis-3-config.dtd
│   │   ├── mybatis-3-mapper.dtd
│   │   └── struts-2.1.dtd
│   ├── jdbc.properties
│   ├── log4j.properties
│   ├── mybatis-config.xml
│   ├── org
│   │   └── agent
│   │   ├── action
│   │   │   ├── AcountAction.class
│   │   │   ├── BaseAction.class
│   │   │   ├── CustomAction.class
│   │   │   ├── FunctionAction.class
│   │   │   ├── KeywordsAction.class
│   │   │   ├── LoginAction.class
│   │   │   ├── LogsAction.class
│   │   │   ├── ReportAction.class
│   │   │   ├── RoleAction.class
│   │   │   ├── SystemConfigAction.class
│   │   │   └── UserAction.class
│   │   ├── common
│   │   │   ├── Constants.class
│   │   │   ├── DateTo.class
│   │   │   ├── MD5.class
│   │   │   ├── PageSupport.class
│   │   │   └── SQLTools.class
│   │   ├── dao
│   │   │   ├── account
│   │   │   │   ├── AccountMapper.class
│   │   │   │   └── AccountMapper.xml
│   │   │   ├── accountdetail
│   │   │   │   ├── AccountDetailMapper.class
│   │   │   │   └── AccountDetailMapper.xml
│   │   │   ├── contact
│   │   │   │   ├── ContactMapper.class
│   │   │   │   └── ContactMapper.xml
│   │   │   ├── custom
│   │   │   │   ├── CustomMapper.class
│   │   │   │   └── CustomMapper.xml
│   │   │   ├── function
│   │   │   │   ├── FunctionMapper.class
│   │   │   │   └── FunctionMapper.xml
│   │   │   ├── keywords
│   │   │   │   ├── KeywordsMapper.class
│   │   │   │   └── KeywordsMapper.xml
│   │   │   ├── logs
│   │   │   │   ├── LogsMapper.class
│   │   │   │   └── LogsMapper.xml
│   │   │   ├── permission
│   │   │   │   ├── PermissionMapper.class
│   │   │   │   └── PermissionMapper.xml
│   │   │   ├── provinceandcity
│   │   │   │   ├── ProvinceAndCityMapper.class
│   │   │   │   └── ProvinceAndCityMapper.xml
│   │   │   ├── report
│   │   │   │   ├── ReportMapper.class
│   │   │   │   └── ReportMapper.xml
│   │   │   ├── role
│   │   │   │   ├── RoleMapper.class
│   │   │   │   └── RoleMapper.xml
│   │   │   ├── systemconfig
│   │   │   │   ├── SystemConfigMapper.class
│   │   │   │   └── SystemConfigMapper.xml
│   │   │   └── user
│   │   │   ├── UserMapper.class
│   │   │   └── UserMapper.xml
│   │   ├── interceptor
│   │   │   └── AdminInterceptor.class
│   │   ├── pojo
│   │   │   ├── Account.class
│   │   │   ├── AccountDetail.class
│   │   │   ├── Area.class
│   │   │   ├── Base.class
│   │   │   ├── City.class
│   │   │   ├── Contact.class
│   │   │   ├── Custom.class
│   │   │   ├── Function.class
│   │   │   ├── Keywords.class
│   │   │   ├── Logs.class
│   │   │   ├── Permission.class
│   │   │   ├── Province.class
│   │   │   ├── ReportProduct.class
│   │   │   ├── Role.class
│   │   │   ├── RoleFunctions.class
│   │   │   ├── SystemConfig.class
│   │   │   └── User.class
│   │   ├── service
│   │   │   ├── account
│   │   │   │   ├── AccountService.class
│   │   │   │   └── impl
│   │   │   │   └── AccountServiceImpl.class
│   │   │   ├── accountdetail
│   │   │   │   ├── AccountDetailService.class
│   │   │   │   └── impl
│   │   │   │   └── AccountDetailServiceImpl.class
│   │   │   ├── contact
│   │   │   │   ├── ContactService.class
│   │   │   │   └── impl
│   │   │   │   └── ContactServiceImpl.class
│   │   │   ├── custom
│   │   │   │   ├── CustomService.class
│   │   │   │   └── impl
│   │   │   │   └── CustomServiceImpl.class
│   │   │   ├── function
│   │   │   │   ├── FunctionService.class
│   │   │   │   └── impl
│   │   │   │   └── FunctionServiceImpl.class
│   │   │   ├── keywords
│   │   │   │   ├── impl
│   │   │   │   │   └── KeywordsServiceImpl.class
│   │   │   │   └── KeywordsService.class
│   │   │   ├── logs
│   │   │   │   ├── impl
│   │   │   │   │   └── LogsServiceImpl.class
│   │   │   │   └── LogsService.class
│   │   │   ├── permission
│   │   │   │   ├── impl
│   │   │   │   │   └── PermissionServiceImpl.class
│   │   │   │   └── PermissionService.class
│   │   │   ├── provinceandcity
│   │   │   │   ├── impl
│   │   │   │   │   └── ProvinceAndCityServiceImpl.class
│   │   │   │   └── ProvinceAndCityService.class
│   │   │   ├── report
│   │   │   │   ├── impl
│   │   │   │   │   └── ReportServiceImpl.class
│   │   │   │   └── ReportService.class
│   │   │   ├── role
│   │   │   │   ├── impl
│   │   │   │   │   └── RoleServiceImpl.class
│   │   │   │   └── RoleService.class
│   │   │   ├── systemconfig
│   │   │   │   ├── impl
│   │   │   │   │   └── SystemConfigServiceImpl.class
│   │   │   │   └── SystemConfigService.class
│   │   │   └── user
│   │   │   ├── impl
│   │   │   │   └── UserServiceImpl.class
│   │   │   └── UserService.class
│   │   └── systeminit
│   │   └── SystemInit.class
│   ├── schema
│   │   ├── spring-aop-3.0.xsd
│   │   ├── spring-beans-3.0.xsd
│   │   ├── spring-context-3.0.xsd
│   │   └── spring-tx-3.0.xsd
│   ├── struts
│   │   ├── struts-account.xml
│   │   ├── struts-custom.xml
│   │   ├── struts-function.xml
│   │   ├── struts-keywords.xml
│   │   ├── struts-login.xml
│   │   ├── struts-logs.xml
│   │   ├── struts-report.xml
│   │   ├── struts-role.xml
│   │   ├── struts-systemconfig.xml
│   │   └── struts-user.xml
│   └── struts.xml
├── lib
│   ├── activation-1.1.jar
│   ├── ant.jar
│   ├── aopalliance-1.0.jar
│   ├── asm-3.3.1.jar
│   ├── cglib-2.2.2.jar
│   ├── commons-beanutils-1.8.3.jar
│   ├── commons-collections-3.2.1.jar
│   ├── commons-dbcp.jar
│   ├── commons-digester-1.8.jar
│   ├── commons-fileupload-1.2.1.jar
│   ├── commons-io-1.3.2.jar
│   ├── commons-lang-2.6.jar
│   ├── commons-logging-1.1.1.jar
│   ├── commons-pool.jar
│   ├── com.springsource.org.aspectj.weaver-1.6.8.RELEASE.jar
│   ├── ezmorph-1.0.6.jar
│   ├── freemarker-2.3.16.jar
│   ├── groovy-all-1.8.6.jar
│   ├── iText-2.1.7.jar
│   ├── iTextAsian.jar
│   ├── itext-rtf-2.1.7.jar
│   ├── jasperreports-5.1.0.jar
│   ├── javassist-3.12.0.GA.jar
│   ├── json-lib-2.4-jdk15.jar
│   ├── jstl-1.1.2.jar
│   ├── log4j-1.2.16.jar
│   ├── mail.jar
│   ├── mybatis-3.0.6.jar
│   ├── mybatis-spring-1.0.2.jar
│   ├── mysql-connector-java-5.1.0-bin.jar
│   ├── ognl-3.0.jar
│   ├── org.springframework.context-3.0.5.RELEASE.jar
│   ├── org.springframework.context.support-3.0.5.RELEASE.jar
│   ├── org.springframework.orm-3.0.5.RELEASE.jar
│   ├── org.springframework.transaction-3.0.5.RELEASE.jar
│   ├── org.springframework.web-3.0.5.RELEASE.jar
│   ├── org.springframework.web.servlet-3.0.5.RELEASE.jar
│   ├── poi-3.8.jar
│   ├── slf4j-api-1.6.1.jar
│   ├── slf4j-log4j12-1.6.1.jar
│   ├── spring-aop-3.0.6.RELEASE.jar
│   ├── spring-asm-3.0.6.RELEASE.jar
│   ├── spring-beans-3.0.6.RELEASE.jar
│   ├── spring-context-3.0.6.RELEASE.jar
│   ├── spring-core-3.0.6.RELEASE.jar
│   ├── spring-expression-3.0.6.RELEASE.jar
│   ├── spring-jdbc-3.0.6.RELEASE.jar
│   ├── spring-tx-3.0.6.RELEASE.jar
│   ├── standard-1.1.2.jar
│   ├── struts2-core-2.2.1.1.jar
│   ├── struts2-spring-plugin-2.2.1.1.jar
│   ├── urlrewrite-3.2.0.jar
│   └── xwork-core-2.2.1.1.jar
├── pages
│   ├── accountdetail.jsp
│   ├── addcustom.jsp
│   ├── caiwu.jsp
│   ├── checkkeyword.jsp
│   ├── customlist.jsp
│   ├── functionlist.jsp
│   ├── keywordmanage.jsp
│   ├── keywords.jsp
│   ├── login.jsp
│   ├── loglist.jsp
│   ├── main.jsp
│   ├── modifycustom.jsp
│   ├── openapp.jsp
│   ├── permission.jsp
│   ├── report.jsp
│   ├── rolelist.jsp
│   ├── systemconfig.jsp
│   ├── userlist.jsp
│   ├── viewcustom.jsp
│   ├── xufei.jsp
│   ├── yfk.jsp
│   └── yfklist.jsp
└── web.xml

143 directories, 492 files

标签:

实例下载地址

代理商管理系统(javaweb)

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警