实例介绍
【实例简介】C#综合开发的报表系统结合数据库操作
【实例截图】
【核心代码】
.
├── 0Client
│ ├── DLLAPP
│ │ ├── DevExpress.Data.v10.1.dll
│ │ ├── DevExpress.Utils.v10.1.dll
│ │ ├── DevExpress.XtraBars.v10.1.dll
│ │ ├── DevExpress.XtraEditors.v10.1.dll
│ │ ├── DevExpress.XtraGrid.v10.1.dll
│ │ ├── DevExpress.XtraLayout.v10.1.dll
│ │ ├── Gaoen.BaseCode.dll
│ │ ├── Gaoen.BaseCode.pdb
│ │ ├── Gaoen.Contract.dll
│ │ ├── Gaoen.Contract.pdb
│ │ ├── Gaoen.Entity.dll
│ │ ├── Gaoen.Entity.pdb
│ │ ├── Gaoen.Form1.cDllForm.dll
│ │ ├── Gaoen.Form1.cDllForm.pdb
│ │ ├── Gaoen.cBaseClass.dll
│ │ └── Gaoen.cBaseClass.pdb
│ ├── DevExpress.Data.v10.1.dll
│ ├── DevExpress.Localization.v10.1.dll
│ ├── DevExpress.Utils.v10.1.dll
│ ├── DevExpress.XtraBars.v10.1.dll
│ ├── DevExpress.XtraEditors.v10.1.dll
│ ├── DevExpress.XtraGrid.v10.1.dll
│ ├── DevExpress.XtraLayout.v10.1.dll
│ ├── DevExpress.XtraPrinting.v10.1.dll
│ ├── DevExpress.XtraReports.v10.1.dll
│ ├── DevExpress.XtraTreeList.v10.1.dll
│ ├── Gaoen.BaseCode.dll
│ ├── Gaoen.BaseCode.pdb
│ ├── Gaoen.Contract.dll
│ ├── Gaoen.Contract.pdb
│ ├── Gaoen.Entity.dll
│ ├── Gaoen.Entity.pdb
│ ├── Gaoen.cBaseClass.dll
│ ├── Gaoen.cBaseClass.pdb
│ ├── Gaoen.cDllForm.exe
│ ├── Gaoen.cDllForm.exe.config
│ ├── Gaoen.cDllForm.pdb
│ ├── Gaoen.cDllForm.vshost.exe
│ ├── Gaoen.cDllForm.vshost.exe.config
│ ├── Gaoen.cDllForm.vshost.exe.manifest
│ └── Image
│ ├── 0.png
│ ├── 1.png
│ ├── 10.png
│ ├── 11.png
│ ├── 12.png
│ ├── 13.png
│ ├── 14.png
│ ├── 15.png
│ ├── 16.png
│ ├── 17.png
│ ├── 18.png
│ ├── 19.png
│ ├── 2.png
│ ├── 20.png
│ ├── 21.png
│ ├── 22.png
│ ├── 23.png
│ ├── 24.png
│ ├── 3.png
│ ├── 4.png
│ ├── 5.png
│ ├── 6.png
│ ├── 7.png
│ ├── 8.png
│ ├── 9.png
│ ├── GE.png
│ ├── GE32.png
│ └── Logo.png
├── 0Server
│ ├── Gaoen.BaseCode.dll
│ ├── Gaoen.BaseCode.pdb
│ ├── Gaoen.Contract.dll
│ ├── Gaoen.Contract.pdb
│ ├── Gaoen.Entity.dll
│ ├── Gaoen.Entity.pdb
│ ├── Gaoen.sBZGeRule.dll
│ ├── Gaoen.sBZGeRule.pdb
│ ├── Gaoen.sBZRule.dll
│ ├── Gaoen.sBZRule.pdb
│ ├── Gaoen.sBaseClass.dll
│ ├── Gaoen.sBaseClass.pdb
│ ├── Gaoen.sBizLogic.dll
│ ├── Gaoen.sBizLogic.pdb
│ ├── Gaoen.sConsoleHost.exe
│ ├── Gaoen.sConsoleHost.exe.config
│ ├── Gaoen.sConsoleHost.pdb
│ ├── Gaoen.sConsoleHost.vshost.exe
│ ├── Gaoen.sConsoleHost.vshost.exe.config
│ ├── Gaoen.sConsoleHost.vshost.exe.manifest
│ ├── Gaoen.sDBMsRule.dll
│ ├── Gaoen.sDBMsRule.pdb
│ ├── Gaoen.sDBOrcRule.dll
│ ├── Gaoen.sDBOrcRule.pdb
│ ├── Gaoen.sDBRule.dll
│ ├── Gaoen.sDBRule.pdb
│ ├── Microsoft.Data.ConnectionUI.Dialog.dll
│ ├── Microsoft.Data.ConnectionUI.dll
│ ├── Microsoft.Practices.EnterpriseLibrary.Common.dll
│ ├── Microsoft.Practices.EnterpriseLibrary.Data.dll
│ ├── Microsoft.Practices.EnterpriseLibrary.Logging.Database.dll
│ ├── Microsoft.Practices.EnterpriseLibrary.Logging.dll
│ ├── Microsoft.Practices.ObjectBuilder2.dll
│ ├── Microsoft.Practices.ServiceLocation.dll
│ ├── Microsoft.Practices.Unity.Interception.dll
│ └── Microsoft.Practices.Unity.dll
├── C#综合开发的报表系统结合数据库操作.zip
├── DB_51aspx
│ ├── GaoenMeifa.mdf
│ └── GaoenMeifa_log.ldf
├── Gaoen
│ ├── Gaoen.BaseCode
│ │ ├── Function
│ │ │ ├── GeFuncImageConvert.cs
│ │ │ ├── GeFuncStr.cs
│ │ │ └── GeFuncTableToEntity.cs
│ │ ├── Gaoen.BaseCode.csproj
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── bin
│ │ │ ├── Debug
│ │ │ └── Release
│ │ └── obj
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── Gaoen.BaseCode.csproj.FileListAbsolute.txt
│ │ ├── Gaoen.BaseCode.dll
│ │ ├── Gaoen.BaseCode.pdb
│ │ └── TempPE
│ ├── Gaoen.Contract
│ │ ├── Gaoen.Contract.csproj
│ │ ├── IComContract.cs
│ │ ├── IGaoenContract.cs
│ │ ├── ILoginContract.cs
│ │ ├── IMainContract.cs
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── bin
│ │ │ ├── Debug
│ │ │ └── Release
│ │ └── obj
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── Gaoen.Contract.csproj.FileListAbsolute.txt
│ │ ├── Gaoen.Contract.csprojResolveAssemblyReference.cache
│ │ ├── Gaoen.Contract.dll
│ │ ├── Gaoen.Contract.pdb
│ │ ├── ResolveAssemblyReference.cache
│ │ └── TempPE
│ ├── Gaoen.Entity
│ │ ├── Enum
│ │ │ ├── EnumConfigType.cs
│ │ │ ├── EnumInputType.cs
│ │ │ ├── EnumLocalConfigType.cs
│ │ │ └── EnumMsg.cs
│ │ ├── Gaoen.Entity.csproj
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── bin
│ │ │ ├── Debug
│ │ │ └── Release
│ │ ├── cEntity
│ │ │ ├── EntityApp.cs
│ │ │ ├── EntityCompetence.cs
│ │ │ ├── EntityLogin.cs
│ │ │ ├── EntityMenu.cs
│ │ │ ├── EntitySetting.cs
│ │ │ └── EntityToolTip.cs
│ │ ├── obj
│ │ │ └── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── Gaoen.Entity.csproj.FileListAbsolute.txt
│ │ │ ├── Gaoen.Entity.dll
│ │ │ ├── Gaoen.Entity.pdb
│ │ │ └── TempPE
│ │ └── sEntity
│ │ ├── EntityDBconnect.cs
│ │ └── EntityObject.cs
│ ├── Gaoen.Form1.cDllForm
│ │ ├── Form1.Designer.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── Gaoen.Form1.cDllForm.csproj
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ ├── Settings.settings
│ │ │ └── licenses.licx
│ │ ├── bin
│ │ │ ├── Debug
│ │ │ └── Release
│ │ └── obj
│ │ └── x86
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── Gaoen.Form1.cDllForm.Form1.resources
│ │ ├── Gaoen.Form1.cDllForm.Properties.Resources.resources
│ │ ├── Gaoen.Form1.cDllForm.csproj.FileListAbsolute.txt
│ │ ├── Gaoen.Form1.cDllForm.csproj.GenerateResource.Cache
│ │ ├── Gaoen.Form1.cDllForm.csprojResolveAssemblyReference.cache
│ │ ├── Gaoen.Form1.cDllForm.dll
│ │ ├── Gaoen.Form1.cDllForm.pdb
│ │ ├── GenerateResource.read.1.tlog
│ │ ├── GenerateResource.write.1.tlog
│ │ ├── ResolveAssemblyReference.cache
│ │ ├── TempPE
│ │ │ └── Properties.Resources.Designer.cs.dll
│ │ └── gaoen.form1.cdllform.dll.licenses
│ ├── Gaoen.cBaseClass
│ │ ├── Class
│ │ │ ├── ComClass.cs
│ │ │ ├── LoginClass.cs
│ │ │ └── MainClass.cs
│ │ ├── Form
│ │ │ ├── GeMenuForm.Designer.cs
│ │ │ ├── GeMenuForm.cs
│ │ │ ├── GeMsgbox.Designer.cs
│ │ │ ├── GeMsgbox.cs
│ │ │ ├── GeMsgbox.resx
│ │ │ ├── GeProgressBar.Designer.cs
│ │ │ ├── GeProgressBar.cs
│ │ │ ├── GeProgressBar.resx
│ │ │ ├── GeRIGridLookUpEdit.cs
│ │ │ ├── GeWaiting.cs
│ │ │ ├── GeWaiting.designer.cs
│ │ │ ├── GeWaiting.resx
│ │ │ └── LoadingCircle.cs
│ │ ├── Function
│ │ │ ├── GeFuncRib.cs
│ │ │ ├── GeFuncSetLocalTime.cs
│ │ │ └── GePubFunc.cs
│ │ ├── Gaoen.cBaseClass.csproj
│ │ ├── GePub
│ │ │ ├── GePubConfig.cs
│ │ │ ├── GePubConst.cs
│ │ │ └── GePubVar.cs
│ │ ├── IProxy
│ │ │ ├── IGeBaseProxy.cs
│ │ │ ├── IGeComProxy.cs
│ │ │ ├── IGeLoginProxy.cs
│ │ │ └── IGeMainProxy.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ └── Resources.resx
│ │ ├── Proxy
│ │ │ ├── GeBaseProxy.cs
│ │ │ ├── GeComProxy.cs
│ │ │ ├── GeLoginProxy.cs
│ │ │ └── GeMainProxy.cs
│ │ ├── Resources
│ │ │ ├── Error.png
│ │ │ ├── Info.png
│ │ │ ├── Question.jpg
│ │ │ ├── Warn.png
│ │ │ ├── ribbon.png
│ │ │ └── ribbon1.png
│ │ ├── bin
│ │ │ ├── Debug
│ │ │ └── Release
│ │ └── obj
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── Gaoen.cBaseClass.GeMsgbox.resources
│ │ ├── Gaoen.cBaseClass.GeProgressBar.resources
│ │ ├── Gaoen.cBaseClass.GeWaiting.resources
│ │ ├── Gaoen.cBaseClass.Properties.Resources.resources
│ │ ├── Gaoen.cBaseClass.csproj.FileListAbsolute.txt
│ │ ├── Gaoen.cBaseClass.csproj.GenerateResource.Cache
│ │ ├── Gaoen.cBaseClass.csprojResolveAssemblyReference.cache
│ │ ├── Gaoen.cBaseClass.dll
│ │ ├── Gaoen.cBaseClass.pdb
│ │ ├── GenerateResource.read.1.tlog
│ │ ├── GenerateResource.write.1.tlog
│ │ ├── ResolveAssemblyReference.cache
│ │ └── TempPE
│ │ └── Properties.Resources.Designer.cs.dll
│ ├── Gaoen.cDllForm
│ │ ├── Function
│ │ │ └── GePublicsMap.cs
│ │ ├── GE.ico
│ │ ├── Gaoen.cDllForm.csproj
│ │ ├── Gaoen.cDllForm.csproj.user
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ ├── Settings.settings
│ │ │ └── licenses.licx
│ │ ├── Resources
│ │ │ ├── 0.png
│ │ │ ├── 1.png
│ │ │ ├── 10.png
│ │ │ ├── 11.png
│ │ │ ├── 12.png
│ │ │ ├── 13.png
│ │ │ ├── 14.png
│ │ │ ├── 15.png
│ │ │ ├── 16.png
│ │ │ ├── 17.png
│ │ │ ├── 18.png
│ │ │ ├── 19.png
│ │ │ ├── 2.png
│ │ │ ├── 20.png
│ │ │ ├── 21.png
│ │ │ ├── 22.png
│ │ │ ├── 23.png
│ │ │ ├── 24.png
│ │ │ ├── 3.png
│ │ │ ├── 4.png
│ │ │ ├── 5.png
│ │ │ ├── 6.png
│ │ │ ├── 7.png
│ │ │ ├── 8.png
│ │ │ ├── 9.png
│ │ │ ├── GE.png
│ │ │ ├── GE32.png
│ │ │ └── Logo.png
│ │ ├── app.config
│ │ ├── bin
│ │ │ ├── Debug
│ │ │ └── Release
│ │ ├── fmLogin.Designer.cs
│ │ ├── fmLogin.cs
│ │ ├── fmLogin.resx
│ │ ├── fmMain.Designer.cs
│ │ ├── fmMain.cs
│ │ ├── fmMain.resx
│ │ ├── fmTest.Designer.cs
│ │ ├── fmTest.cs
│ │ ├── fmTest.resx
│ │ └── obj
│ │ └── x86
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── Gaoen.cDllForm.Properties.Resources.resources
│ │ ├── Gaoen.cDllForm.csproj.FileListAbsolute.txt
│ │ ├── Gaoen.cDllForm.csproj.GenerateResource.Cache
│ │ ├── Gaoen.cDllForm.csprojResolveAssemblyReference.cache
│ │ ├── Gaoen.cDllForm.exe
│ │ ├── Gaoen.cDllForm.fmLogin.resources
│ │ ├── Gaoen.cDllForm.fmMain.resources
│ │ ├── Gaoen.cDllForm.fmTest.resources
│ │ ├── Gaoen.cDllForm.pdb
│ │ ├── GenerateResource.read.1.tlog
│ │ ├── GenerateResource.write.1.tlog
│ │ ├── ResolveAssemblyReference.cache
│ │ ├── TempPE
│ │ │ └── Properties.Resources.Designer.cs.dll
│ │ └── gaoen.cdllform.exe.licenses
│ ├── Gaoen.sBZFgRule
│ │ ├── BZGeComRule.cs
│ │ ├── BZGeLoginRule.cs
│ │ ├── BZGeMainRule.cs
│ │ ├── Gaoen.sBZGeRule.csproj
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── bin
│ │ │ ├── Debug
│ │ │ └── Release
│ │ ├── obj
│ │ │ └── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── Gaoen.sBZFgRule.csproj.FileListAbsolute.txt
│ │ │ ├── Gaoen.sBZFgRule.dll
│ │ │ ├── Gaoen.sBZFgRule.pdb
│ │ │ ├── Gaoen.sBZGeRule.csproj.FileListAbsolute.txt
│ │ │ ├── Gaoen.sBZGeRule.csprojResolveAssemblyReference.cache
│ │ │ ├── Gaoen.sBZGeRule.dll
│ │ │ ├── Gaoen.sBZGeRule.pdb
│ │ │ ├── ResolveAssemblyReference.cache
│ │ │ └── TempPE
│ │ └── sBZGeRule.cs
│ ├── Gaoen.sBZRule
│ │ ├── BZComRule.cs
│ │ ├── BZLoginRule.cs
│ │ ├── BZMainRule.cs
│ │ ├── Gaoen.sBZRule.csproj
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── bin
│ │ │ ├── Debug
│ │ │ └── Release
│ │ ├── obj
│ │ │ └── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── Gaoen.sBZRule.csproj.FileListAbsolute.txt
│ │ │ ├── Gaoen.sBZRule.csprojResolveAssemblyReference.cache
│ │ │ ├── Gaoen.sBZRule.dll
│ │ │ ├── Gaoen.sBZRule.pdb
│ │ │ ├── ResolveAssemblyReference.cache
│ │ │ └── TempPE
│ │ └── sBzAbstractFactory.cs
│ ├── Gaoen.sBaseClass
│ │ ├── Function
│ │ │ ├── GeFuncInit.cs
│ │ │ ├── GePubConst.cs
│ │ │ ├── GePubVar.cs
│ │ │ └── GeSQL.cs
│ │ ├── Gaoen.sBaseClass.csproj
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── bin
│ │ │ ├── Debug
│ │ │ └── Release
│ │ └── obj
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── Gaoen.sBaseClass.csproj.FileListAbsolute.txt
│ │ ├── Gaoen.sBaseClass.csprojResolveAssemblyReference.cache
│ │ ├── Gaoen.sBaseClass.dll
│ │ ├── Gaoen.sBaseClass.pdb
│ │ ├── ResolveAssemblyReference.cache
│ │ └── TempPE
│ ├── Gaoen.sBizLogic
│ │ ├── Gaoen.sBizLogic.csproj
│ │ ├── GaoenService.cs
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── bin
│ │ │ ├── Debug
│ │ │ └── Release
│ │ └── obj
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── Gaoen.sBizLogic.csproj.FileListAbsolute.txt
│ │ ├── Gaoen.sBizLogic.csprojResolveAssemblyReference.cache
│ │ ├── Gaoen.sBizLogic.dll
│ │ ├── Gaoen.sBizLogic.pdb
│ │ ├── ResolveAssemblyReference.cache
│ │ └── TempPE
│ ├── Gaoen.sConsoleHost
│ │ ├── Gaoen.sConsoleHost.csproj
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── app.config
│ │ ├── bin
│ │ │ ├── Debug
│ │ │ └── Release
│ │ └── obj
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── Gaoen.sConsoleHost.csproj.FileListAbsolute.txt
│ │ ├── Gaoen.sConsoleHost.csprojResolveAssemblyReference.cache
│ │ ├── Gaoen.sConsoleHost.exe
│ │ ├── Gaoen.sConsoleHost.pdb
│ │ ├── ResolveAssemblyReference.cache
│ │ └── TempPE
│ ├── Gaoen.sDBMsRule
│ │ ├── DBComMsRule.cs
│ │ ├── DBLoginMsRule.cs
│ │ ├── DBMainMsRule.cs
│ │ ├── Gaoen.sDBMsRule.csproj
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── bin
│ │ │ ├── Debug
│ │ │ └── Release
│ │ ├── obj
│ │ │ └── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── Gaoen.sDBMsRule.csproj.FileListAbsolute.txt
│ │ │ ├── Gaoen.sDBMsRule.csprojResolveAssemblyReference.cache
│ │ │ ├── Gaoen.sDBMsRule.dll
│ │ │ ├── Gaoen.sDBMsRule.pdb
│ │ │ ├── ResolveAssemblyReference.cache
│ │ │ └── TempPE
│ │ └── sDBMsRule.cs
│ ├── Gaoen.sDBOrcRule
│ │ ├── DBComOrcRule.cs
│ │ ├── DBLoginOrcRule.cs
│ │ ├── DBMainOrcRule.cs
│ │ ├── Gaoen.sDBOrcRule.csproj
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── bin
│ │ │ ├── Debug
│ │ │ └── Release
│ │ ├── obj
│ │ │ └── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── Gaoen.sDBOrcRule.csproj.FileListAbsolute.txt
│ │ │ ├── Gaoen.sDBOrcRule.dll
│ │ │ ├── Gaoen.sDBOrcRule.pdb
│ │ │ ├── ResolveAssemblyReference.cache
│ │ │ └── TempPE
│ │ └── sDBOrcRule.cs
│ ├── Gaoen.sDBRule
│ │ ├── DBComRule.cs
│ │ ├── DBLoginRule.cs
│ │ ├── DBMainRule.cs
│ │ ├── Gaoen.sDBRule.csproj
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── bin
│ │ │ ├── Debug
│ │ │ └── Release
│ │ ├── obj
│ │ │ └── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── Gaoen.sDBRule.csproj.FileListAbsolute.txt
│ │ │ ├── Gaoen.sDBRule.dll
│ │ │ ├── Gaoen.sDBRule.pdb
│ │ │ ├── ResolveAssemblyReference.cache
│ │ │ └── TempPE
│ │ ├── sDBAbstractFactory.cs
│ │ └── sDBService.cs
│ ├── Gaoen.sln
│ └── Gaoen.suo
└── 源码必读.txt
134 directories, 386 files
相关软件
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论