在好例子网,分享、交流、成长!
您当前所在位置:首页C# 开发实例桌面应用界面/GUI → MVC小实例(基于三层架构)

MVC小实例(基于三层架构)

桌面应用界面/GUI

下载此实例
  • 开发语言:C#
  • 实例大小:434.86M
  • 下载次数:107
  • 浏览次数:502
  • 发布时间:2020-03-23
  • 实例类别:桌面应用界面/GUI
  • 发 布 人:liupeiguo
  • 文件格式:.zip
  • 所需积分:2
 相关标签: MVC

实例介绍

【实例简介】总结:View提供给操作界面,Model提供程序需要操作的数据或信息,Controller负责对数据加工并传入到到view中。

 

1.最上面直接面向用户的"视图层"(View)。它是提供给用户的操作界面。

2.最底层核心的"数据层"(Model),也就是程序需要操作的数据或信息。
3.中间层是"控制层"(Controller),它负责根据用户从"视图层"输入的指令,选取"数据层"中的数据,然后对其进行相应的操作,产生最终结果。


【实例截图】

from clipboard


登录账号:测试联调总公司用户  登录密码:666666


from clipboard


from clipboard
【核心代码】

│  ZHGD.sln
│  ZHGD_2018-4-28
│  
├─BLL
│  │  App.config
│  │  BLL.csproj
│  │  packages.config
│  │  T_RY_USER.cs
│  │  
│  └─Properties
│          AssemblyInfo.cs
│          
├─COMMON
│  │  ApiRequestHelper.cs
│  │  BIMHelper.cs
│  │  COMMON.csproj
│  │  ConfigHelper.cs
│  │  DataCache.cs
│  │  DateTimeHelper.cs
│  │  Enums.cs
│  │  ExcelHelper.cs
│  │  ImageClass.cs
│  │  ImageHelper.cs
│  │  JsonHelper.cs
│  │  SessionHelper.cs
│  │  StringClass.cs
│  │  TreeHelper.cs
│  │  
│  ├─bin
│  │  └─Debug
│  │          COMMON.dll
│  │          COMMON.pdb
│  │          ICSharpCode.SharpZipLib.dll
│  │          Newtonsoft.Json.dll
│  │          NPOI.dll
│  │          NPOI.OOXML.dll
│  │          NPOI.OpenXml4Net.dll
│  │          NPOI.OpenXmlFormats.dll
│  │          
│  ├─obj
│  │  └─Debug
│  │      │  COMMON.csproj.FileListAbsolute.txt
│  │      │  COMMON.csprojResolveAssemblyReference.cache
│  │      │  COMMON.dll
│  │      │  COMMON.pdb
│  │      │  DesignTimeResolveAssemblyReferencesInput.cache
│  │      │  TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│  │      │  TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│  │      │  TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│  │      │  
│  │      └─TempPE
│  └─Properties
│          AssemblyInfo.cs
│          
├─DAL
│  │  App.config
│  │  BaseDAL.cs
│  │  DAL.csproj
│  │  DT_BIM_Record.cs
│  │  DT_Draw_Record.cs
│  │  DT_ELE_Meter.cs
│  │  DT_JCGL_Material.cs
│  │  DT_JDGL_Land.cs
│  │  DT_JG_JGXX.cs
│  │  DT_KH_Indicators.cs
│  │  DT_MJ_Record.cs
│  │  DT_MJ_Regist.cs
│  │  DT_PRJ_PROJECT.cs
│  │  DT_PRJ_SPJK.cs
│  │  DT_Process_Record.cs
│  │  DT_RY_RYXX.cs
│  │  DT_RY_USER.cs
│  │  DT_SP_Record.cs
│  │  DT_SYS_DM.cs
│  │  DT_SYS_Menu.cs
│  │  DT_SYS_ROLE.cs
│  │  DT_TZ_Record.cs
│  │  DT_Video_Record.cs
│  │  DT_WATER_Meter.cs
│  │  DT_XMXT.cs
│  │  DT_YC_Record.cs
│  │  packages.config
│  │  
│  ├─bin
│  │  └─Debug
│  │      │  COMMON.dll
│  │      │  COMMON.pdb
│  │      │  DAL.dll
│  │      │  DAL.dll.config
│  │      │  DAL.pdb
│  │      │  EntityFramework.dll
│  │      │  EntityFramework.SqlServer.dll
│  │      │  EntityFramework.SqlServer.xml
│  │      │  EntityFramework.xml
│  │      │  IBLL.dll
│  │      │  IBLL.pdb
│  │      │  ICSharpCode.SharpZipLib.dll
│  │      │  MODEL.dll
│  │      │  MODEL.pdb
│  │      │  Newtonsoft.Json.dll
│  │      │  NPOI.dll
│  │      │  NPOI.OOXML.dll
│  │      │  NPOI.OpenXml4Net.dll
│  │      │  NPOI.OpenXmlFormats.dll
│  │      │  
│  │      └─zh-Hans
│  │              EntityFramework.resources.dll
│  │              EntityFramework.SqlServer.resources.dll
│  │              
│  ├─obj
│  │  └─Debug
│  │      │  DAL.csproj.FileListAbsolute.txt
│  │      │  DAL.csprojResolveAssemblyReference.cache
│  │      │  DAL.dll
│  │      │  DAL.pdb
│  │      │  DesignTimeResolveAssemblyReferencesInput.cache
│  │      │  TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│  │      │  TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│  │      │  TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│  │      │  
│  │      └─TempPE
│  └─Properties
│          AssemblyInfo.cs
│          
├─IBLL
│  │  IBaseDAL.cs
│  │  IBLL.csproj
│  │  IT_BIM_Record.cs
│  │  IT_Draw_Record.cs
│  │  IT_ELE_Meter.cs
│  │  IT_JCGL_Material.cs
│  │  IT_JDGL_Land.cs
│  │  IT_JG_JGXX.cs
│  │  IT_KH_Indicators.cs
│  │  IT_MJ_Record.cs
│  │  IT_MJ_Regist.cs
│  │  IT_PRJ_PROJECT.cs
│  │  IT_PRJ_SPJK.cs
│  │  IT_Process_Record.cs
│  │  IT_RY_RYXX.cs
│  │  IT_RY_USER.cs
│  │  IT_SP_Record.cs
│  │  IT_SYS_DM.cs
│  │  IT_SYS_Menu.cs
│  │  IT_SYS_ROLE.cs
│  │  IT_TZ_Record.cs
│  │  IT_Video_Record.cs
│  │  IT_WATER_Meter.cs
│  │  IT_XMXT.cs
│  │  IT_YC_Record.cs
│  │  
│  ├─bin
│  │  └─Debug
│  │      │  EntityFramework.dll
│  │      │  EntityFramework.xml
│  │      │  IBLL.dll
│  │      │  IBLL.pdb
│  │      │  MODEL.dll
│  │      │  MODEL.pdb
│  │      │  
│  │      └─zh-Hans
│  │              EntityFramework.resources.dll
│  │              
│  ├─obj
│  │  └─Debug
│  │      │  DesignTimeResolveAssemblyReferencesInput.cache
│  │      │  IBLL.csproj.FileListAbsolute.txt
│  │      │  IBLL.csprojResolveAssemblyReference.cache
│  │      │  IBLL.dll
│  │      │  IBLL.pdb
│  │      │  TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│  │      │  TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│  │      │  TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│  │      │  
│  │      └─TempPE
│  └─Properties
│          AssemblyInfo.cs
│          
├─Lib
│      AspNetPager.dll
│      ICSharpCode.SharpZipLib.dll
│      Newtonsoft.Json.dll
│      NPOI.dll
│      NPOI.OOXML.dll
│      NPOI.OpenXml4Net.dll
│      NPOI.OpenXmlFormats.dll
│      
├─MODEL
│  │  App.config
│  │  BussModel.cs
│  │  MODEL.csproj
│  │  MODEL.csproj.user
│  │  packages.config
│  │  T_BIM_Record.cs
│  │  T_Draw_Record.cs
│  │  T_Draw_RecordDetail.cs
│  │  T_ELE_Meter.cs
│  │  T_ELE_MonthReport.cs
│  │  T_ELE_PeakValley.cs
│  │  T_ELE_PeakValleyDetail.cs
│  │  T_ELE_Record.cs
│  │  T_ELE_TJFX.cs
│  │  T_ELE_YDRB.cs
│  │  T_JCGL_Material.cs
│  │  T_JDGL_Land.cs
│  │  T_JG_JGXX.cs
│  │  T_KH_Indicators.cs
│  │  T_KH_IndicatorsDetail.cs
│  │  T_MJ_Record.cs
│  │  T_MJ_Regist.cs
│  │  T_PRJ_PROJECT.cs
│  │  T_PRJ_PROJECT_XMXT.cs
│  │  T_PRJ_SPJK.cs
│  │  T_Process_Record.cs
│  │  T_RY_RyAttachment.cs
│  │  T_RY_RYXX.cs
│  │  T_RY_USER.cs
│  │  T_SP_Record.cs
│  │  T_SYS_DM.cs
│  │  T_SYS_DMZ.cs
│  │  T_SYS_Menu.cs
│  │  T_SYS_ProcessTable.cs
│  │  T_SYS_ROLE.cs
│  │  T_TZ_ProjectRelation.cs
│  │  T_TZ_Record.cs
│  │  T_TZ_Regist.cs
│  │  T_TZ_SJJ_Record.cs
│  │  T_TZ_SJJ_Regist.cs
│  │  T_TZ_User.cs
│  │  T_Video_Record.cs
│  │  T_WATER_Meter.cs
│  │  T_WATER_MonthReport.cs
│  │  T_WATER_PeakValley.cs
│  │  T_WATER_PeakValleyDetail.cs
│  │  T_WATER_Record.cs
│  │  T_WATER_TJFX.cs
│  │  T_WATER_YDRB.cs
│  │  T_YC_Record.cs
│  │  XMXTDB.cs
│  │  ZHGDDB.cs
│  │  
│  ├─bin
│  │  └─Debug
│  │      │  EntityFramework.dll
│  │      │  EntityFramework.SqlServer.dll
│  │      │  EntityFramework.SqlServer.xml
│  │      │  EntityFramework.xml
│  │      │  MODEL.dll
│  │      │  MODEL.dll.config
│  │      │  MODEL.pdb
│  │      │  
│  │      └─zh-Hans
│  │              EntityFramework.resources.dll
│  │              EntityFramework.SqlServer.resources.dll
│  │              
│  ├─obj
│  │  └─Debug
│  │      │  DesignTimeResolveAssemblyReferencesInput.cache
│  │      │  MODEL.csproj.FileListAbsolute.txt
│  │      │  MODEL.csprojResolveAssemblyReference.cache
│  │      │  MODEL.dll
│  │      │  MODEL.pdb
│  │      │  TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│  │      │  TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│  │      │  TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│  │      │  
│  │      └─TempPE
│  └─Properties
│          AssemblyInfo.cs
│          
├─packages
│  │  repositories.config
│  │  
│  ├─Antlr.3.4.1.9004
│  │  │  Antlr.3.4.1.9004.nupkg
│  │  │  
│  │  └─lib
│  │          Antlr3.Runtime.dll
│  │          Antlr3.Runtime.pdb
│  │          
│  ├─AspNet.ScriptManager.bootstrap.3.0.0
│  │  │  AspNet.ScriptManager.bootstrap.3.0.0.nupkg
│  │  │  
│  │  └─lib
│  │      ├─net40
│  │      │      AspNet.ScriptManager.bootstrap.dll
│  │      │      
│  │      └─net45
│  │              AspNet.ScriptManager.bootstrap.dll
│  │              
│  ├─AspNet.ScriptManager.jQuery.1.10.2
│  │  │  AspNet.ScriptManager.jQuery.1.10.2.nupkg
│  │  │  
│  │  └─lib
│  │      ├─net40
│  │      │      AspNet.ScriptManager.jQuery.dll
│  │      │      
│  │      └─net45
│  │              AspNet.ScriptManager.jQuery.dll
│  │              
│  ├─bootstrap.3.0.0
│  │  │  bootstrap.3.0.0.nupkg
│  │  │  
│  │  └─content
│  │      ├─Content
│  │      │      bootstrap.css
│  │      │      bootstrap.min.css
│  │      │      
│  │      ├─fonts
│  │      │      glyphicons-halflings-regular.eot
│  │      │      glyphicons-halflings-regular.svg
│  │      │      glyphicons-halflings-regular.ttf
│  │      │      glyphicons-halflings-regular.woff
│  │      │      
│  │      └─Scripts
│  │              bootstrap.js
│  │              bootstrap.min.js
│  │              
│  ├─EntityFramework.6.1.0
│  │  │  EntityFramework.6.1.0.nupkg
│  │  │  
│  │  ├─content
│  │  │      App.config.transform
│  │  │      Web.config.transform
│  │  │      
│  │  ├─lib
│  │  │  ├─net40
│  │  │  │  │  EntityFramework.dll
│  │  │  │  │  EntityFramework.SqlServer.dll
│  │  │  │  │  EntityFramework.SqlServer.xml
│  │  │  │  │  EntityFramework.xml
│  │  │  │  │  
│  │  │  │  └─zh-Hans
│  │  │  │          EntityFramework.resources.dll
│  │  │  │          EntityFramework.SqlServer.resources.dll
│  │  │  │          EntityFramework.SqlServer.xml
│  │  │  │          EntityFramework.xml
│  │  │  │          
│  │  │  └─net45
│  │  │      │  EntityFramework.dll
│  │  │      │  EntityFramework.SqlServer.dll
│  │  │      │  EntityFramework.SqlServer.xml
│  │  │      │  EntityFramework.xml
│  │  │      │  
│  │  │      └─zh-Hans
│  │  │              EntityFramework.resources.dll
│  │  │              EntityFramework.SqlServer.resources.dll
│  │  │              EntityFramework.SqlServer.xml
│  │  │              EntityFramework.xml
│  │  │              
│  │  └─tools
│  │          about_EntityFramework.help.txt
│  │          EntityFramework.PowerShell.dll
│  │          EntityFramework.PowerShell.Utility.dll
│  │          EntityFramework.psd1
│  │          EntityFramework.psm1
│  │          init.ps1
│  │          install.ps1
│  │          migrate.exe
│  │          
│  ├─EntityFramework.6.2.0
│  │  │  EntityFramework.6.2.0.nupkg
│  │  │  
│  │  ├─content
│  │  │  └─net40
│  │  │          App.config.transform
│  │  │          Web.config.transform
│  │  │          
│  │  ├─lib
│  │  │  ├─net40
│  │  │  │  │  EntityFramework.dll
│  │  │  │  │  EntityFramework.SqlServer.dll
│  │  │  │  │  EntityFramework.SqlServer.xml
│  │  │  │  │  EntityFramework.xml
│  │  │  │  │  
│  │  │  │  └─zh-Hans
│  │  │  │          EntityFramework.resources.dll
│  │  │  │          EntityFramework.SqlServer.resources.dll
│  │  │  │          EntityFramework.SqlServer.xml
│  │  │  │          EntityFramework.xml
│  │  │  │          
│  │  │  └─net45
│  │  │      │  EntityFramework.dll
│  │  │      │  EntityFramework.SqlServer.dll
│  │  │      │  EntityFramework.SqlServer.xml
│  │  │      │  EntityFramework.xml
│  │  │      │  
│  │  │      └─zh-Hans
│  │  │              EntityFramework.resources.dll
│  │  │              EntityFramework.SqlServer.resources.dll
│  │  │              EntityFramework.SqlServer.xml
│  │  │              EntityFramework.xml
│  │  │              
│  │  └─tools
│  │          about_EntityFramework.help.txt
│  │          EntityFramework.PowerShell.dll
│  │          EntityFramework.PowerShell.Utility.dll
│  │          EntityFramework.psd1
│  │          EntityFramework.psm1
│  │          init.ps1
│  │          install.ps1
│  │          migrate.exe
│  │          
│  ├─EntityFramework.zh-Hans.6.1.0
│  │  │  EntityFramework.zh-Hans.6.1.0.nupkg
│  │  │  
│  │  └─lib
│  │      ├─net40
│  │      │  └─zh-Hans
│  │      │          EntityFramework.resources.dll
│  │      │          EntityFramework.SqlServer.resources.dll
│  │      │          EntityFramework.SqlServer.xml
│  │      │          EntityFramework.xml
│  │      │          
│  │      └─net45
│  │          └─zh-Hans
│  │                  EntityFramework.resources.dll
│  │                  EntityFramework.SqlServer.resources.dll
│  │                  EntityFramework.SqlServer.xml
│  │                  EntityFramework.xml
│  │                  
│  ├─EntityFramework.zh-Hans.6.2.0
│  │  │  EntityFramework.zh-Hans.6.2.0.nupkg
│  │  │  
│  │  └─lib
│  │      ├─net40
│  │      │  └─zh-Hans
│  │      │          EntityFramework.resources.dll
│  │      │          EntityFramework.SqlServer.resources.dll
│  │      │          EntityFramework.SqlServer.xml
│  │      │          EntityFramework.xml
│  │      │          
│  │      └─net45
│  │          └─zh-Hans
│  │                  EntityFramework.resources.dll
│  │                  EntityFramework.SqlServer.resources.dll
│  │                  EntityFramework.SqlServer.xml
│  │                  EntityFramework.xml
│  │                  
│  ├─jQuery.1.10.2
│  │  │  jQuery.1.10.2.nupkg
│  │  │  
│  │  ├─Content
│  │  │  └─Scripts
│  │  │          jquery-1.10.2-vsdoc.js
│  │  │          jquery-1.10.2.js
│  │  │          jquery-1.10.2.min.js
│  │  │          jquery-1.10.2.min.map
│  │  │          
│  │  └─Tools
│  │          common.ps1
│  │          install.ps1
│  │          jquery-1.10.2.intellisense.js
│  │          uninstall.ps1
│  │          
│  ├─Microsoft.AspNet.FriendlyUrls.1.0.2
│  │  │  Microsoft.AspNet.FriendlyUrls.1.0.2.nupkg
│  │  │  readme.txt
│  │  │  
│  │  └─Content
│  │      │  Site.Mobile.Master.cs.pp
│  │      │  Site.Mobile.Master.designer.cs.pp
│  │      │  Site.Mobile.Master.pp
│  │      │  ViewSwitcher.ascx.cs.pp
│  │      │  ViewSwitcher.ascx.designer.cs.pp
│  │      │  ViewSwitcher.ascx.pp
│  │      │  
│  │      └─App_Start
│  │              RouteConfig.cs.pp
│  │              
│  ├─Microsoft.AspNet.FriendlyUrls.Core.1.0.2
│  │  │  Microsoft.AspNet.FriendlyUrls.Core.1.0.2.nupkg
│  │  │  
│  │  └─lib
│  │      ├─net40
│  │      │  │  Microsoft.AspNet.FriendlyUrls.dll
│  │      │  │  Microsoft.AspNet.FriendlyUrls.xml
│  │      │  │  
│  │      │  └─zh-Hans
│  │      │          Microsoft.AspNet.FriendlyUrls.resources.dll
│  │      │          Microsoft.AspNet.FriendlyUrls.xml
│  │      │          
│  │      └─net45
│  │          │  Microsoft.AspNet.FriendlyUrls.dll
│  │          │  Microsoft.AspNet.FriendlyUrls.xml
│  │          │  
│  │          └─zh-Hans
│  │                  Microsoft.AspNet.FriendlyUrls.resources.dll
│  │                  Microsoft.AspNet.FriendlyUrls.xml
│  │                  
│  ├─Microsoft.AspNet.FriendlyUrls.Core.zh-Hans.1.0.2
│  │  │  Microsoft.AspNet.FriendlyUrls.Core.zh-Hans.1.0.2.nupkg
│  │  │  
│  │  └─lib
│  │      ├─net40
│  │      │  └─zh-Hans
│  │      │          Microsoft.AspNet.FriendlyUrls.resources.dll
│  │      │          Microsoft.AspNet.FriendlyUrls.xml
│  │      │          
│  │      └─net45
│  │          └─zh-Hans
│  │                  Microsoft.AspNet.FriendlyUrls.resources.dll
│  │                  Microsoft.AspNet.FriendlyUrls.xml
│  │                  
│  ├─Microsoft.AspNet.Identity.Core.2.0.0
│  │  │  Microsoft.AspNet.Identity.Core.2.0.0.nupkg
│  │  │  
│  │  └─lib
│  │      └─net45
│  │          │  Microsoft.AspNet.Identity.Core.dll
│  │          │  Microsoft.AspNet.Identity.Core.xml
│  │          │  
│  │          └─zh-Hans
│  │                  Microsoft.AspNet.Identity.Core.resources.dll
│  │                  Microsoft.AspNet.Identity.Core.xml
│  │                  
│  ├─Microsoft.AspNet.Identity.Core.zh-Hans.2.0.0
│  │  │  Microsoft.AspNet.Identity.Core.zh-Hans.2.0.0.nupkg
│  │  │  
│  │  └─lib
│  │      └─net45
│  │          └─zh-Hans
│  │                  Microsoft.AspNet.Identity.Core.resources.dll
│  │                  Microsoft.AspNet.Identity.Core.xml
│  │                  
│  ├─Microsoft.AspNet.Identity.EntityFramework.2.0.0
│  │  │  Microsoft.AspNet.Identity.EntityFramework.2.0.0.nupkg
│  │  │  
│  │  └─lib
│  │      └─net45
│  │          │  Microsoft.AspNet.Identity.EntityFramework.dll
│  │          │  Microsoft.AspNet.Identity.EntityFramework.xml
│  │          │  
│  │          └─zh-Hans
│  │                  Microsoft.AspNet.Identity.EntityFramework.resources.dll
│  │                  Microsoft.AspNet.Identity.EntityFramework.xml
│  │                  
│  ├─Microsoft.AspNet.Identity.EntityFramework.zh-Hans.2.0.0
│  │  │  Microsoft.AspNet.Identity.EntityFramework.zh-Hans.2.0.0.nupkg
│  │  │  
│  │  └─lib
│  │      └─net45
│  │          └─zh-Hans
│  │                  Microsoft.AspNet.Identity.EntityFramework.resources.dll
│  │                  Microsoft.AspNet.Identity.EntityFramework.xml
│  │                  
│  ├─Microsoft.AspNet.Identity.Owin.2.0.0
│  │  │  Microsoft.AspNet.Identity.Owin.2.0.0.nupkg
│  │  │  
│  │  └─lib
│  │      └─net45
│  │          │  Microsoft.AspNet.Identity.Owin.dll
│  │          │  Microsoft.AspNet.Identity.Owin.xml
│  │          │  
│  │          └─zh-Hans
│  │                  Microsoft.AspNet.Identity.Owin.resources.dll
│  │                  Microsoft.AspNet.Identity.Owin.xml
│  │                  
│  ├─Microsoft.AspNet.Identity.Owin.zh-Hans.2.0.0
│  │  │  Microsoft.AspNet.Identity.Owin.zh-Hans.2.0.0.nupkg
│  │  │  
│  │  └─lib
│  │      └─net45
│  │          └─zh-Hans
│  │                  Microsoft.AspNet.Identity.Owin.resources.dll
│  │                  Microsoft.AspNet.Identity.Owin.xml
│  │                  
│  ├─Microsoft.AspNet.Providers.Core.1.2
│  │  │  Microsoft.AspNet.Providers.Core.1.2.nupkg
│  │  │  readme.html
│  │  │  
│  │  └─lib
│  │      └─net40
│  │          │  System.Web.Providers.dll
│  │          │  
│  │          └─zh-Hans
│  │                  System.Web.Providers.resources.dll
│  │                  
│  ├─Microsoft.AspNet.Providers.Core.zh-Hans.1.2
│  │  │  Microsoft.AspNet.Providers.Core.zh-Hans.1.2.nupkg
│  │  │  
│  │  └─lib
│  │      └─net40
│  │          └─zh-Hans
│  │                  System.Web.Providers.resources.dll
│  │                  
│  ├─Microsoft.AspNet.ScriptManager.MSAjax.5.0.0
│  │  │  Microsoft.AspNet.ScriptManager.MSAjax.5.0.0.nupkg
│  │  │  
│  │  ├─content
│  │  │  └─Scripts
│  │  │      └─WebForms
│  │  │          └─MSAjax
│  │  │                  MicrosoftAjax.js
│  │  │                  MicrosoftAjaxApplicationServices.js
│  │  │                  MicrosoftAjaxComponentModel.js
│  │  │                  MicrosoftAjaxCore.js
│  │  │                  MicrosoftAjaxGlobalization.js
│  │  │                  MicrosoftAjaxHistory.js
│  │  │                  MicrosoftAjaxNetwork.js
│  │  │                  MicrosoftAjaxSerialization.js
│  │  │                  MicrosoftAjaxTimer.js
│  │  │                  MicrosoftAjaxWebForms.js
│  │  │                  MicrosoftAjaxWebServices.js
│  │  │                  
│  │  └─lib
│  │      └─net45
│  │              Microsoft.ScriptManager.MSAjax.dll
│  │              
│  ├─Microsoft.AspNet.ScriptManager.WebForms.5.0.0
│  │  │  Microsoft.AspNet.ScriptManager.WebForms.5.0.0.nupkg
│  │  │  
│  │  ├─content
│  │  │  └─Scripts
│  │  │      └─WebForms
│  │  │              DetailsView.js
│  │  │              Focus.js
│  │  │              GridView.js
│  │  │              Menu.js
│  │  │              MenuStandards.js
│  │  │              SmartNav.js
│  │  │              TreeView.js
│  │  │              WebForms.js
│  │  │              WebParts.js
│  │  │              WebUIValidation.js
│  │  │              
│  │  └─lib
│  │      └─net45
│  │              Microsoft.ScriptManager.WebForms.dll
│  │              
│  ├─Microsoft.AspNet.Web.Optimization.1.1.3
│  │  │  Microsoft.AspNet.Web.Optimization.1.1.3.nupkg
│  │  │  
│  │  └─lib
│  │      └─net40
│  │          │  System.Web.Optimization.dll
│  │          │  system.web.optimization.xml
│  │          │  
│  │          └─zh-Hans
│  │                  System.Web.Optimization.resources.dll
│  │                  
│  ├─Microsoft.AspNet.Web.Optimization.WebForms.1.1.3
│  │  │  Microsoft.AspNet.Web.Optimization.WebForms.1.1.3.nupkg
│  │  │  
│  │  ├─content
│  │  │      web.config.transform
│  │  │      
│  │  └─lib
│  │      └─net45
│  │              Microsoft.AspNet.Web.Optimization.WebForms.dll
│  │              
│  ├─Microsoft.AspNet.Web.Optimization.zh-Hans.1.1.3
│  │  │  Microsoft.AspNet.Web.Optimization.zh-Hans.1.1.3.nupkg
│  │  │  
│  │  └─lib
│  │      └─net40
│  │          └─zh-Hans
│  │                  System.Web.Optimization.resources.dll
│  │                  
│  ├─Microsoft.Owin.2.1.0
│  │  │  Microsoft.Owin.2.1.0.nupkg
│  │  │  
│  │  └─lib
│  │      ├─net40
│  │      │  │  Microsoft.Owin.dll
│  │      │  │  Microsoft.Owin.XML
│  │      │  │  
│  │      │  └─zh-Hans
│  │      │          Microsoft.Owin.resources.dll
│  │      │          Microsoft.Owin.xml
│  │      │          
│  │      └─net45
│  │          │  Microsoft.Owin.dll
│  │          │  Microsoft.Owin.XML
│  │          │  
│  │          └─zh-Hans
│  │                  Microsoft.Owin.resources.dll
│  │                  Microsoft.Owin.xml
│  │                  
│  ├─Microsoft.Owin.Host.SystemWeb.2.1.0
│  │  │  Microsoft.Owin.Host.SystemWeb.2.1.0.nupkg
│  │  │  
│  │  └─lib
│  │      ├─net40
│  │      │  │  Microsoft.Owin.Host.SystemWeb.dll
│  │      │  │  Microsoft.Owin.Host.SystemWeb.xml
│  │      │  │  
│  │      │  └─zh-Hans
│  │      │          Microsoft.Owin.Host.SystemWeb.resources.dll
│  │      │          Microsoft.Owin.Host.SystemWeb.xml
│  │      │          
│  │      └─net45
│  │          │  Microsoft.Owin.Host.SystemWeb.dll
│  │          │  Microsoft.Owin.Host.SystemWeb.xml
│  │          │  
│  │          └─zh-Hans
│  │                  Microsoft.Owin.Host.SystemWeb.resources.dll
│  │                  Microsoft.Owin.Host.SystemWeb.xml
│  │                  
│  ├─Microsoft.Owin.Host.SystemWeb.zh-Hans.2.1.0
│  │  │  Microsoft.Owin.Host.SystemWeb.zh-Hans.2.1.0.nupkg
│  │  │  
│  │  └─lib
│  │      ├─net40
│  │      │  └─zh-Hans
│  │      │          Microsoft.Owin.Host.SystemWeb.resources.dll
│  │      │          Microsoft.Owin.Host.SystemWeb.xml
│  │      │          
│  │      └─net45
│  │          └─zh-Hans
│  │                  Microsoft.Owin.Host.SystemWeb.resources.dll
│  │                  Microsoft.Owin.Host.SystemWeb.xml
│  │                  
│  ├─Microsoft.Owin.Security.2.1.0
│  │  │  Microsoft.Owin.Security.2.1.0.nupkg
│  │  │  
│  │  └─lib
│  │      └─net45
│  │          │  Microsoft.Owin.Security.dll
│  │          │  Microsoft.Owin.Security.XML
│  │          │  
│  │          └─zh-Hans
│  │                  Microsoft.Owin.Security.resources.dll
│  │                  Microsoft.Owin.Security.xml
│  │                  
│  ├─Microsoft.Owin.Security.Cookies.2.1.0
│  │  │  Microsoft.Owin.Security.Cookies.2.1.0.nupkg
│  │  │  
│  │  └─lib
│  │      └─net45
│  │              Microsoft.Owin.Security.Cookies.dll
│  │              Microsoft.Owin.Security.Cookies.xml
│  │              
│  ├─Microsoft.Owin.Security.Facebook.2.1.0
│  │  │  Microsoft.Owin.Security.Facebook.2.1.0.nupkg
│  │  │  
│  │  └─lib
│  │      └─net45
│  │          │  Microsoft.Owin.Security.Facebook.dll
│  │          │  Microsoft.Owin.Security.Facebook.XML
│  │          │  
│  │          └─zh-Hans
│  │                  Microsoft.Owin.Security.Facebook.resources.dll
│  │                  Microsoft.Owin.Security.Facebook.xml
│  │                  
│  ├─Microsoft.Owin.Security.Facebook.zh-Hans.2.1.0
│  │  │  Microsoft.Owin.Security.Facebook.zh-Hans.2.1.0.nupkg
│  │  │  
│  │  └─lib
│  │      └─net45
│  │          └─zh-Hans
│  │                  Microsoft.Owin.Security.Facebook.resources.dll
│  │                  Microsoft.Owin.Security.Facebook.xml
│  │                  
│  ├─Microsoft.Owin.Security.Google.2.1.0
│  │  │  Microsoft.Owin.Security.Google.2.1.0.nupkg
│  │  │  
│  │  └─lib
│  │      └─net45
│  │          │  Microsoft.Owin.Security.Google.dll
│  │          │  Microsoft.Owin.Security.Google.XML
│  │          │  
│  │          └─zh-Hans
│  │                  Microsoft.Owin.Security.Google.resources.dll
│  │                  Microsoft.Owin.Security.Google.xml
│  │                  
│  ├─Microsoft.Owin.Security.Google.zh-Hans.2.1.0
│  │  │  Microsoft.Owin.Security.Google.zh-Hans.2.1.0.nupkg
│  │  │  
│  │  └─lib
│  │      └─net45
│  │          └─zh-Hans
│  │                  Microsoft.Owin.Security.Google.resources.dll
│  │                  Microsoft.Owin.Security.Google.xml
│  │                  
│  ├─Microsoft.Owin.Security.MicrosoftAccount.2.1.0
│  │  │  Microsoft.Owin.Security.MicrosoftAccount.2.1.0.nupkg
│  │  │  
│  │  └─lib
│  │      └─net45
│  │          │  Microsoft.Owin.Security.MicrosoftAccount.dll
│  │          │  Microsoft.Owin.Security.MicrosoftAccount.XML
│  │          │  
│  │          └─zh-Hans
│  │                  Microsoft.Owin.Security.MicrosoftAccount.resources.dll
│  │                  Microsoft.Owin.Security.MicrosoftAccount.xml
│  │                  
│  ├─Microsoft.Owin.Security.MicrosoftAccount.zh-Hans.2.1.0
│  │  │  Microsoft.Owin.Security.MicrosoftAccount.zh-Hans.2.1.0.nupkg
│  │  │  
│  │  └─lib
│  │      └─net45
│  │          └─zh-Hans
│  │                  Microsoft.Owin.Security.MicrosoftAccount.resources.dll
│  │                  Microsoft.Owin.Security.MicrosoftAccount.xml
│  │                  
│  ├─Microsoft.Owin.Security.OAuth.2.1.0
│  │  │  Microsoft.Owin.Security.OAuth.2.1.0.nupkg
│  │  │  
│  │  └─lib
│  │      └─net45
│  │              Microsoft.Owin.Security.OAuth.dll
│  │              Microsoft.Owin.Security.OAuth.XML
│  │              
│  ├─Microsoft.Owin.Security.Twitter.2.1.0
│  │  │  Microsoft.Owin.Security.Twitter.2.1.0.nupkg
│  │  │  
│  │  └─lib
│  │      └─net45
│  │          │  Microsoft.Owin.Security.Twitter.dll
│  │          │  Microsoft.Owin.Security.Twitter.XML
│  │          │  
│  │          └─zh-Hans
│  │                  Microsoft.Owin.Security.Twitter.resources.dll
│  │                  Microsoft.Owin.Security.Twitter.xml
│  │                  
│  ├─Microsoft.Owin.Security.Twitter.zh-Hans.2.1.0
│  │  │  Microsoft.Owin.Security.Twitter.zh-Hans.2.1.0.nupkg
│  │  │  
│  │  └─lib
│  │      └─net45
│  │          └─zh-Hans
│  │                  Microsoft.Owin.Security.Twitter.resources.dll
│  │                  Microsoft.Owin.Security.Twitter.xml
│  │                  
│  ├─Microsoft.Owin.Security.zh-Hans.2.1.0
│  │  │  Microsoft.Owin.Security.zh-Hans.2.1.0.nupkg
│  │  │  
│  │  └─lib
│  │      └─net45
│  │          └─zh-Hans
│  │                  Microsoft.Owin.Security.resources.dll
│  │                  Microsoft.Owin.Security.xml
│  │                  
│  ├─Microsoft.Owin.zh-Hans.2.1.0
│  │  │  Microsoft.Owin.zh-Hans.2.1.0.nupkg
│  │  │  
│  │  └─lib
│  │      ├─net40
│  │      │  └─zh-Hans
│  │      │          Microsoft.Owin.resources.dll
│  │      │          Microsoft.Owin.xml
│  │      │          
│  │      └─net45
│  │          └─zh-Hans
│  │                  Microsoft.Owin.resources.dll
│  │                  Microsoft.Owin.xml
│  │                  
│  ├─Microsoft.Web.Infrastructure.1.0.0.0
│  │  │  Microsoft.Web.Infrastructure.1.0.0.0.nupkg
│  │  │  
│  │  ├─lib
│  │  │  └─net40
│  │  │          Microsoft.Web.Infrastructure.dll
│  │  │          
│  │  └─tools
│  │          Install.ps1
│  │          Uninstall.ps1
│  │          VS.psd1
│  │          VS.psm1
│  │          
│  ├─Modernizr.2.6.2
│  │  │  Modernizr.2.6.2.nupkg
│  │  │  
│  │  ├─Content
│  │  │  └─Scripts
│  │  │          modernizr-2.6.2.js
│  │  │          
│  │  └─Tools
│  │          common.ps1
│  │          install.ps1
│  │          uninstall.ps1
│  │          
│  ├─Newtonsoft.Json.5.0.6
│  │  │  Newtonsoft.Json.5.0.6.nupkg
│  │  │  
│  │  └─lib
│  │      ├─net20
│  │      │      Newtonsoft.Json.dll
│  │      │      Newtonsoft.Json.xml
│  │      │      
│  │      ├─net35
│  │      │      Newtonsoft.Json.dll
│  │      │      Newtonsoft.Json.xml
│  │      │      
│  │      ├─net40
│  │      │      Newtonsoft.Json.dll
│  │      │      Newtonsoft.Json.xml
│  │      │      
│  │      ├─net45
│  │      │      Newtonsoft.Json.dll
│  │      │      Newtonsoft.Json.xml
│  │      │      
│  │      ├─netcore45
│  │      │      Newtonsoft.Json.dll
│  │      │      Newtonsoft.Json.xml
│  │      │      
│  │      ├─portable-net40%2Bsl4%2Bwp7%2Bwin8
│  │      │      Newtonsoft.Json.dll
│  │      │      Newtonsoft.Json.xml
│  │      │      
│  │      ├─portable-net40 sl4 wp7 win8
│  │      │      Newtonsoft.Json.dll
│  │      │      Newtonsoft.Json.xml
│  │      │      
│  │      ├─portable-net45%2Bwp80%2Bwin8
│  │      │      Newtonsoft.Json.dll
│  │      │      Newtonsoft.Json.xml
│  │      │      
│  │      └─portable-net45 wp80 win8
│  │              Newtonsoft.Json.dll
│  │              Newtonsoft.Json.xml
│  │              
│  ├─Ninject.3.2.0.0
│  │  │  Ninject.3.2.0.0.nupkg
│  │  │  
│  │  └─lib
│  │      ├─net35
│  │      │      Ninject.dll
│  │      │      Ninject.xml
│  │      │      
│  │      ├─net40
│  │      │      Ninject.dll
│  │      │      Ninject.xml
│  │      │      
│  │      ├─net45-full
│  │      │      Ninject.dll
│  │      │      Ninject.xml
│  │      │      
│  │      ├─sl2
│  │      │      Ninject.dll
│  │      │      Ninject.xml
│  │      │      
│  │      ├─sl3
│  │      │      Ninject.dll
│  │      │      Ninject.xml
│  │      │      
│  │      ├─sl3-wp
│  │      │      Ninject.dll
│  │      │      Ninject.xml
│  │      │      
│  │      ├─sl4
│  │      │      Ninject.dll
│  │      │      Ninject.xml
│  │      │      
│  │      ├─sl4-windowsphone71
│  │      │      Ninject.dll
│  │      │      Ninject.xml
│  │      │      
│  │      └─sl5
│  │              Ninject.dll
│  │              Ninject.xml
│  │              
│  ├─Ninject.Web.3.2.1.0
│  │  │  Ninject.Web.3.2.1.0.nupkg
│  │  │  
│  │  ├─Content
│  │  │  └─App_Start
│  │  │          NinjectWeb.cs.pp
│  │  │          
│  │  └─lib
│  │      ├─net35-full
│  │      │      Ninject.Web.dll
│  │      │      Ninject.Web.xml
│  │      │      
│  │      ├─net40-full
│  │      │      Ninject.Web.dll
│  │      │      Ninject.Web.xml
│  │      │      
│  │      └─net45-full
│  │              Ninject.Web.dll
│  │              Ninject.Web.xml
│  │              
│  ├─Ninject.Web.Common.3.2.0.0
│  │  │  Ninject.Web.Common.3.2.0.0.nupkg
│  │  │  
│  │  └─lib
│  │      ├─net35-full
│  │      │      Ninject.Web.Common.dll
│  │      │      Ninject.Web.Common.xml
│  │      │      
│  │      ├─net40-full
│  │      │      Ninject.Web.Common.dll
│  │      │      Ninject.Web.Common.xml
│  │      │      
│  │      └─net45-full
│  │              Ninject.Web.Common.dll
│  │              Ninject.Web.Common.xml
│  │              
│  ├─Ninject.Web.Common.WebHost.3.2.0.0
│  │  │  Ninject.Web.Common.WebHost.3.2.0.0.nupkg
│  │  │  
│  │  └─Content
│  │      └─App_Start
│  │              NinjectWebCommon.cs.pp
│  │              
│  ├─Owin.1.0
│  │  │  Owin.1.0.nupkg
│  │  │  
│  │  └─lib
│  │      └─net40
│  │              Owin.dll
│  │              
│  ├─Respond.1.2.0
│  │  │  Respond.1.2.0.nupkg
│  │  │  
│  │  └─content
│  │      └─Scripts
│  │              respond.js
│  │              respond.min.js
│  │              
│  ├─WebActivatorEx.2.0
│  │  │  WebActivatorEx.2.0.nupkg
│  │  │  
│  │  └─lib
│  │      └─net40
│  │              WebActivatorEx.dll
│  │              
│  └─WebGrease.1.5.2
│      │  WebGrease.1.5.2.nupkg
│      │  
│      ├─lib
│      │      WebGrease.dll
│      │      
│      └─tools
│              WG.exe
│              
└─WEB
    │  About.aspx
    │  About.aspx.cs
    │  About.aspx.designer.cs
    │  Bundle.config
    │  Contact.aspx
    │  Contact.aspx.cs
    │  Contact.aspx.designer.cs
    │  Default.aspx
    │  Default.aspx.cs
    │  Default.aspx.designer.cs
    │  favicon.ico
    │  Global.asax
    │  Global.asax.cs
    │  Login.aspx
    │  Login.aspx.cs
    │  Login.aspx.designer.cs
    │  Main.aspx
    │  Main.aspx.cs
    │  Main.aspx.designer.cs
    │  packages.config
    │  PageBase.cs
    │  Project_Readme.html
    │  Site.Master
    │  Site.Master.cs
    │  Site.Master.designer.cs
    │  Site.Mobile.Master
    │  Site.Mobile.Master.cs
    │  Site.Mobile.Master.designer.cs
    │  Startup.cs
    │  ViewSwitcher.ascx
    │  ViewSwitcher.ascx.cs
    │  ViewSwitcher.ascx.designer.cs
    │  Web.config
    │  WEB.csproj
    │  WEB.csproj.user
    │  Web.Debug.config
    │  Web.Release.config
    │  
    ├─Account
    │      Confirm.aspx
    │      Confirm.aspx.cs
    │      Confirm.aspx.designer.cs
    │      Forgot.aspx
    │      Forgot.aspx.cs
    │      Forgot.aspx.designer.cs
    │      Login.aspx
    │      Login.aspx.cs
    │      Login.aspx.designer.cs
    │      Manage.aspx
    │      Manage.aspx.cs
    │      Manage.aspx.designer.cs
    │      OpenAuthProviders.ascx
    │      OpenAuthProviders.ascx.cs
    │      OpenAuthProviders.ascx.designer.cs
    │      Register.aspx
    │      Register.aspx.cs
    │      Register.aspx.designer.cs
    │      RegisterExternalLogin.aspx
    │      RegisterExternalLogin.aspx.cs
    │      RegisterExternalLogin.aspx.designer.cs
    │      ResetPassword.aspx
    │      ResetPassword.aspx.cs
    │      ResetPassword.aspx.designer.cs
    │      ResetPasswordConfirmation.aspx
    │      ResetPasswordConfirmation.aspx.cs
    │      ResetPasswordConfirmation.aspx.designer.cs
    │      Web.config
    │      
    ├─App_Data
    ├─App_Start
    │      BundleConfig.cs
    │      IdentityConfig.cs
    │      NinjectWeb.cs
    │      NinjectWebCommon.cs
    │      RouteConfig.cs
    │      Startup.Auth.cs
    │      
    ├─Ashx
    │      FeaturesHelper.ashx
    │      FeaturesHelper.ashx.cs
    │      GCZLHelper.ashx
    │      GCZLHelper.ashx.cs
    │      getProject.ashx
    │      getProject.ashx.cs
    │      HJHelper.ashx
    │      HJHelper.ashx.cs
    │      IndexHelper.ashx
    │      IndexHelper.ashx.cs
    │      JCGLHelper.ashx
    │      JCGLHelper.ashx.cs
    │      JDDGLHelper.ashx
    │      JDDGLHelper.ashx.cs
    │      JDGLHelper.ashx
    │      JDGLHelper.ashx.cs
    │      JSGLHelper.ashx
    │      JSGLHelper.ashx.cs
    │      MJHelper.ashx
    │      MJHelper.ashx.cs
    │      SaveCam.ashx
    │      SaveCam.ashx.cs
    │      SaveSP_Record.ashx
    │      SaveSP_Record.ashx.cs
    │      TZHelper.ashx
    │      TZHelper.ashx.cs
    │      
    ├─BIM
    │      BIMEdit.aspx
    │      BIMEdit.aspx.cs
    │      BIMEdit.aspx.designer.cs
    │      BIMList.aspx
    │      BIMList.aspx.cs
    │      BIMList.aspx.designer.cs
    │      BIMShow.aspx
    │      BIMShow.aspx.cs
    │      BIMShow.aspx.designer.cs
    │      
    ├─bin
    │  │  Antlr3.Runtime.dll
    │  │  Antlr3.Runtime.pdb
    │  │  AspNet.ScriptManager.bootstrap.dll
    │  │  AspNet.ScriptManager.jQuery.dll
    │  │  AspNetPager.dll
    │  │  COMMON.dll
    │  │  COMMON.pdb
    │  │  DAL.dll
    │  │  DAL.pdb
    │  │  EntityFramework.dll
    │  │  EntityFramework.SqlServer.dll
    │  │  EntityFramework.SqlServer.xml
    │  │  EntityFramework.xml
    │  │  IBLL.dll
    │  │  IBLL.pdb
    │  │  ICSharpCode.SharpZipLib.dll
    │  │  Microsoft.AspNet.FriendlyUrls.dll
    │  │  Microsoft.AspNet.FriendlyUrls.xml
    │  │  Microsoft.AspNet.Identity.Core.dll
    │  │  Microsoft.AspNet.Identity.Core.xml
    │  │  Microsoft.AspNet.Identity.EntityFramework.dll
    │  │  Microsoft.AspNet.Identity.EntityFramework.xml
    │  │  Microsoft.AspNet.Identity.Owin.dll
    │  │  Microsoft.AspNet.Identity.Owin.xml
    │  │  Microsoft.AspNet.Web.Optimization.WebForms.dll
    │  │  Microsoft.Owin.dll
    │  │  Microsoft.Owin.Host.SystemWeb.dll
    │  │  Microsoft.Owin.Host.SystemWeb.xml
    │  │  Microsoft.Owin.Security.Cookies.dll
    │  │  Microsoft.Owin.Security.Cookies.xml
    │  │  Microsoft.Owin.Security.dll
    │  │  Microsoft.Owin.Security.Facebook.dll
    │  │  Microsoft.Owin.Security.Facebook.xml
    │  │  Microsoft.Owin.Security.Google.dll
    │  │  Microsoft.Owin.Security.Google.xml
    │  │  Microsoft.Owin.Security.MicrosoftAccount.dll
    │  │  Microsoft.Owin.Security.MicrosoftAccount.xml
    │  │  Microsoft.Owin.Security.OAuth.dll
    │  │  Microsoft.Owin.Security.OAuth.xml
    │  │  Microsoft.Owin.Security.Twitter.dll
    │  │  Microsoft.Owin.Security.Twitter.xml
    │  │  Microsoft.Owin.Security.xml
    │  │  Microsoft.Owin.xml
    │  │  Microsoft.ScriptManager.MSAjax.dll
    │  │  Microsoft.ScriptManager.WebForms.dll
    │  │  Microsoft.Web.Infrastructure.dll
    │  │  MODEL.dll
    │  │  MODEL.pdb
    │  │  Newtonsoft.Json.dll
    │  │  Ninject.dll
    │  │  Ninject.Web.Common.dll
    │  │  Ninject.Web.Common.xml
    │  │  Ninject.Web.dll
    │  │  Ninject.Web.xml
    │  │  Ninject.xml
    │  │  NPOI.dll
    │  │  NPOI.OOXML.dll
    │  │  NPOI.OpenXml4Net.dll
    │  │  NPOI.OpenXmlFormats.dll
    │  │  Owin.dll
    │  │  System.Web.Optimization.dll
    │  │  System.Web.Optimization.xml
    │  │  System.Web.Providers.dll
    │  │  WEB.dll
    │  │  WEB.dll.config
    │  │  WEB.pdb
    │  │  WebActivatorEx.dll
    │  │  WebGrease.dll
    │  │  
    │  └─zh-Hans
    │          EntityFramework.resources.dll
    │          EntityFramework.SqlServer.resources.dll
    │          Microsoft.AspNet.FriendlyUrls.resources.dll
    │          Microsoft.AspNet.Identity.Core.resources.dll
    │          Microsoft.AspNet.Identity.EntityFramework.resources.dll
    │          Microsoft.AspNet.Identity.Owin.resources.dll
    │          Microsoft.Owin.Host.SystemWeb.resources.dll
    │          Microsoft.Owin.resources.dll
    │          Microsoft.Owin.Security.Facebook.resources.dll
    │          Microsoft.Owin.Security.Google.resources.dll
    │          Microsoft.Owin.Security.MicrosoftAccount.resources.dll
    │          Microsoft.Owin.Security.resources.dll
    │          Microsoft.Owin.Security.Twitter.resources.dll
    │          System.Web.Optimization.resources.dll
    │          System.Web.Providers.resources.dll
    │          
    ├─CommonPage
    │      JGTree.aspx
    │      JGTree.aspx.cs
    │      JGTree.aspx.designer.cs
    │      RYXX.aspx
    │      RYXX.aspx.cs
    │      RYXX.aspx.designer.cs
    │      ShowImage.aspx
    │      ShowImage.aspx.cs
    │      ShowImage.aspx.designer.cs
    │      
    ├─Content
    │      bootstrap.css
    │      bootstrap.min.css
    │      easyui.css
    │      Site.css
    │      
    ├─CSS
    │  │  common.css
    │  │  logincss.css
    │  │  Main_right.css
    │  │  pz.css
    │  │  style.css
    │  │  style.css.map
    │  │  style.scss
    │  │  tab.css
    │  │  
    │  └─sass
    │          base.css
    │          base.css.map
    │          base.scss
    │          
    ├─Document
    │      HKOCX.rar
    │      
    ├─Draw
    │      DrawEdit.aspx
    │      DrawEdit.aspx.cs
    │      DrawEdit.aspx.designer.cs
    │      DrawShow.aspx
    │      DrawShow.aspx.cs
    │      DrawShow.aspx.designer.cs
    │      
    ├─FarmerWorker
    │      Default.aspx
    │      Default.aspx.cs
    │      Default.aspx.designer.cs
    │      
    ├─fonts
    │      glyphicons-halflings-regular.eot
    │      glyphicons-halflings-regular.svg
    │      glyphicons-halflings-regular.ttf
    │      glyphicons-halflings-regular.woff
    │      
    ├─GCXX
    │      crossdomain.xml
    │      cyberplayer.flash.swf
    │      cyberplayer.js
    │      GetVideoUrl.ashx
    │      GetVideoUrl.ashx.cs
    │      SetCameraList.aspx
    │      SetCameraList.aspx.cs
    │      SetCameraList.aspx.designer.cs
    │      VideoCenter.aspx
    │      VideoCenter.aspx.cs
    │      VideoCenter.aspx.designer.cs
    │      VideoCenterMU.aspx
    │      VideoCenterMU.aspx.cs
    │      VideoCenterMU.aspx.designer.cs
    │      VideoUrl.aspx
    │      VideoUrl.aspx.cs
    │      VideoUrl.aspx.designer.cs
    │      
    ├─GCZL
    │      ProcessRecord.aspx
    │      ProcessRecord.aspx.cs
    │      ProcessRecord.aspx.designer.cs
    │      
    ├─HKWS
    │      jquery.js
    │      PlayAllView.js
    │      PlayView.js
    │      PlayViewDemo.css
    │      
    ├─images
    │  │  aqjc.png
    │  │  aqys.png
    │  │  back_main.png
    │  │  bg.png
    │  │  bim.png
    │  │  blue.png
    │  │  bottom.png
    │  │  box.png
    │  │  c0.png
    │  │  c1.png
    │  │  c10.png
    │  │  c11.png
    │  │  c2.png
    │  │  c3.png
    │  │  c31.png
    │  │  c32.png
    │  │  c33.png
    │  │  c34.png
    │  │  c35.png
    │  │  c36.png
    │  │  c37.png
    │  │  c38.png
    │  │  c39.png
    │  │  c4.png
    │  │  c40.png
    │  │  c41.png
    │  │  c42.png
    │  │  c43.png
    │  │  c5.png
    │  │  c6.png
    │  │  c61.png
    │  │  c62.png
    │  │  c63.png
    │  │  c7.png
    │  │  c8.png
    │  │  c9.png
    │  │  cb.png
    │  │  cbgl.png
    │  │  cb_sz.png
    │  │  cc0.png
    │  │  cc1.png
    │  │  cc10.png
    │  │  cc11.png
    │  │  cc12.png
    │  │  cc13.png
    │  │  cc2.png
    │  │  cc3.png
    │  │  cc31.png
    │  │  cc32.png
    │  │  cc33.png
    │  │  cc34.png
    │  │  cc35.png
    │  │  cc36.png
    │  │  cc37.png
    │  │  cc38.png
    │  │  cc39.png
    │  │  cc4.png
    │  │  cc40.png
    │  │  cc41.png
    │  │  cc42.png
    │  │  cc43.png
    │  │  cc5.png
    │  │  cc6.png
    │  │  cc61.png
    │  │  cc62.png
    │  │  cc63.png
    │  │  cc7.png
    │  │  cc8.png
    │  │  cc9.png
    │  │  circle-b.png
    │  │  circle-r.png
    │  │  cwgl.png
    │  │  dbbg.png
    │  │  defaultPerson.png
    │  │  equipment-icon-1.png
    │  │  equipment-icon-2.png
    │  │  equipment-icon-3.png
    │  │  equipment-icon-5.png
    │  │  equipment-icon-6.png
    │  │  equipment-icon-7.png
    │  │  equipment-icon-8.png
    │  │  equipment-left-back.png
    │  │  equipment-left-pic.png
    │  │  equipment-right-back.png
    │  │  equipment.png
    │  │  fhys.png
    │  │  GD.png
    │  │  GDDpng.png
    │  │  green.png
    │  │  gxpz_wc_bg.png
    │  │  head.png
    │  │  hexagon-active.png
    │  │  hexagon.png
    │  │  hjjc.png
    │  │  hmc_r.png
    │  │  hmc_ss.png
    │  │  hmc_xq.png
    │  │  hmc_xq_body.png
    │  │  hmc_xq_gb.png
    │  │  hmc_xq_x.png
    │  │  html_bg.png
    │  │  icon-angle.png
    │  │  icon-status.png
    │  │  icon-user.png
    │  │  icon-weight.png
    │  │  item-bg.png
    │  │  item-equipment-bg.png
    │  │  j-cen-back.png
    │  │  j-cen-back1.png
    │  │  j-left-1-back.png
    │  │  j-left-2-back.png
    │  │  j-left-2-c1.png
    │  │  j-right-1-back.png
    │  │  j-right-2-back.png
    │  │  j-top-bat-back1.png
    │  │  j-top-bat-back2.png
    │  │  jldw.png
    │  │  jlpz.png
    │  │  jsdw.png
    │  │  jzqy.png
    │  │  j_body-back.jpg
    │  │  left-active.png
    │  │  left.png
    │  │  left_bg.png
    │  │  light.png
    │  │  light2.png
    │  │  line.png
    │  │  LJ.png
    │  │  LJD.png
    │  │  Loading.gif
    │  │  lsjn.png
    │  │  lwgl.png
    │  │  lwgl_xq_r.png
    │  │  lwgl_xq_r_p.png
    │  │  main-bg.png
    │  │  main.png
    │  │  main1_bg.png
    │  │  main2_bg.png
    │  │  main3_1.png
    │  │  main3_1bg.png
    │  │  main3_2.png
    │  │  main3_2bg.png
    │  │  main3_3bg.png
    │  │  main3_4.png
    │  │  monitor-pic.png
    │  │  MonthDefault.jpg
    │  │  nmg.png
    │  │  noise-0.png
    │  │  noise-10.png
    │  │  noise-100.png
    │  │  noise-15.png
    │  │  noise-20.png
    │  │  noise-25.png
    │  │  noise-30.png
    │  │  noise-35.png
    │  │  noise-40.png
    │  │  noise-45.png
    │  │  noise-5.png
    │  │  noise-50.png
    │  │  noise-55.png
    │  │  noise-60.png
    │  │  noise-65.png
    │  │  noise-70.png
    │  │  noise-75.png
    │  │  noise-80.png
    │  │  noise-85.png
    │  │  noise-90.png
    │  │  noise-95.png
    │  │  noise5.png
    │  │  pic03.jpg
    │  │  pic04.jpg
    │  │  pm10-01.png
    │  │  pm10-02.png
    │  │  pm10-03.png
    │  │  pm10-04.png
    │  │  pm10-05.png
    │  │  pm10-06.png
    │  │  pm10-07.png
    │  │  pm10-08.png
    │  │  pm2.5-back.png
    │  │  red.png
    │  │  right-active.png
    │  │  right.png
    │  │  right_bg.png
    │  │  round.png
    │  │  sgdw.png
    │  │  sgjl.png
    │  │  spjk.png
    │  │  spjkgl.png
    │  │  system-back.png
    │  │  syyy1.png
    │  │  syyy2.png
    │  │  syyy3.png
    │  │  tagleft.png
    │  │  tagright.png
    │  │  tcenter.png
    │  │  temperature-back.png
    │  │  temperature-zz.png
    │  │  tleft.png
    │  │  tleft2.png
    │  │  top-1.png
    │  │  top-2.png
    │  │  top-3.png
    │  │  top-4.png
    │  │  top-5.png
    │  │  top-6.png
    │  │  top-7.png
    │  │  top-8.png
    │  │  top.png
    │  │  top2.png
    │  │  top_bg.png
    │  │  trapezoidal.png
    │  │  tright.png
    │  │  tright2.png
    │  │  ty_bg.png
    │  │  ty_bg1.png
    │  │  tzgl.png
    │  │  tzsb.png
    │  │  tzxq1.png
    │  │  tzxq2.png
    │  │  tzxq3.png
    │  │  tzxq4.png
    │  │  video.png
    │  │  wind-li-back.png
    │  │  wind-li-on-back.png
    │  │  wzys.png
    │  │  xcsy.png
    │  │  yellow.png
    │  │  yy1_li_bg.png
    │  │  yy_li_a_bg.png
    │  │  yy_li_a_bg_h.png
    │  │  zhgd_jsc_pz.png
    │  │  zljc.png
    │  │  zlys.png
    │  │  zsk.png
    │  │  
    │  └─LoginImages
    │          click.png
    │          hover.png
    │          html_bg.png
    │          logo.png
    │          main.png
    │          sum.png
    │          
    ├─JCGL
    │      JcglEdit.aspx
    │      JcglEdit.aspx.cs
    │      JcglEdit.aspx.designer.cs
    │      JcglList.aspx
    │      JcglList.aspx.cs
    │      JcglList.aspx.designer.cs
    │      
    ├─JDGL
    │      JdglIndex.aspx
    │      JdglIndex.aspx.cs
    │      JdglIndex.aspx.designer.cs
    │      JdglJCSG.aspx
    │      JdglJCSG.aspx.cs
    │      JdglJCSG.aspx.designer.cs
    │      JdglZTSG.aspx
    │      JdglZTSG.aspx.cs
    │      JdglZTSG.aspx.designer.cs
    │      JdglZXSG.aspx
    │      JdglZXSG.aspx.cs
    │      JdglZXSG.aspx.designer.cs
    │      
    ├─Models
    │      Common.cs
    │      IdentityModels.cs
    │      
    ├─obj
    │  └─Debug
    │      │  DesignTimeResolveAssemblyReferencesInput.cache
    │      │  TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
    │      │  TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
    │      │  TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
    │      │  WEB.csproj.FileListAbsolute.txt
    │      │  WEB.csprojResolveAssemblyReference.cache
    │      │  WEB.dll
    │      │  WEB.pdb
    │      │  
    │      └─TempPE
    ├─Project
    │      crossdomain.xml
    │      cyberplayer.flash.swf
    │      cyberplayer.js
    │      FeaturesIndex.aspx
    │      FeaturesIndex.aspx.cs
    │      FeaturesIndex.aspx.designer.cs
    │      MJCKQK.aspx
    │      MJCKQK.aspx.cs
    │      MJCKQK.aspx.designer.cs
    │      MJIndex.aspx
    │      MJIndex.aspx.cs
    │      MJIndex.aspx.designer.cs
    │      MJJRKQ.aspx
    │      MJJRKQ.aspx.cs
    │      MJJRKQ.aspx.designer.cs
    │      MJRegistList.aspx
    │      MJRegistList.aspx.cs
    │      MJRegistList.aspx.designer.cs
    │      MonitorIndex.aspx
    │      MonitorIndex.aspx.cs
    │      MonitorIndex.aspx.designer.cs
    │      ProjectIndex.aspx
    │      ProjectIndex.aspx.cs
    │      ProjectIndex.aspx.designer.cs
    │      ProjectIntroduction.aspx
    │      ProjectIntroduction.aspx.cs
    │      ProjectIntroduction.aspx.designer.cs
    │      ProjectModule.aspx
    │      ProjectModule.aspx.cs
    │      ProjectModule.aspx.designer.cs
    │      RyxxEdit.aspx
    │      RyxxEdit.aspx.cs
    │      RyxxEdit.aspx.designer.cs
    │      SPIndex.aspx
    │      SPIndex.aspx.cs
    │      SPIndex.aspx.designer.cs
    │      TZIndex.aspx
    │      TZIndex.aspx.cs
    │      TZIndex.aspx.designer.cs
    │      TZSJJList.aspx
    │      TZSJJList.aspx.cs
    │      TZSJJList.aspx.designer.cs
    │      TZSJJListEdit.aspx
    │      TZSJJListEdit.aspx.cs
    │      TZSJJListEdit.aspx.designer.cs
    │      TZTDList.aspx
    │      TZTDList.aspx.cs
    │      TZTDList.aspx.designer.cs
    │      TZTDListEdit.aspx
    │      TZTDListEdit.aspx.cs
    │      TZTDListEdit.aspx.designer.cs
    │      TZYXJL.aspx
    │      TZYXJL.aspx.cs
    │      TZYXJL.aspx.designer.cs
    │      TZZTQK.aspx
    │      TZZTQK.aspx.cs
    │      TZZTQK.aspx.designer.cs
    │      TZZTT.aspx
    │      TZZTT.aspx.cs
    │      TZZTT.aspx.designer.cs
    │      TZ_SJJIndex.aspx
    │      TZ_SJJIndex.aspx.cs
    │      TZ_SJJIndex.aspx.designer.cs
    │      TZ_SJJYXJL.aspx
    │      TZ_SJJYXJL.aspx.cs
    │      TZ_SJJYXJL.aspx.designer.cs
    │      TZ_SJJZTQK.aspx
    │      TZ_SJJZTQK.aspx.cs
    │      TZ_SJJZTQK.aspx.designer.cs
    │      WDIndex.aspx
    │      WDIndex.aspx.cs
    │      WDIndex.aspx.designer.cs
    │      YCIndex.aspx
    │      YCIndex.aspx.cs
    │      YCIndex.aspx.designer.cs
    │      
    ├─Properties
    │  │  AssemblyInfo.cs
    │  │  
    │  └─PublishProfiles
    │          1.pubxml
    │          
    ├─Resource
    │  ├─GCZL
    │  │  └─2017_7
    │  │          201707251413482679.jpg
    │  │          
    │  ├─Picture
    │  │  └─2018_4
    │  │          201803071419025618.jpg
    │  │          201803071419025619.png
    │  │          
    │  ├─ProcessFile
    │  ├─template
    │  │      ELERePortDay.xls
    │  │      ELEYDRB.xls
    │  │      JCGL.xls
    │  │      mj.xls
    │  │      RePortMonth.xls
    │  │      RePortTJFX.xls
    │  │      ryxx.xls
    │  │      WaterRePortDay.xls
    │  │      WaterRePortMonth.xls
    │  │      WaterRePortTJFX .xls
    │  │      WaterYDRB.xls
    │  │      
    │  ├─Upload
    │  │  └─JCGL
    │  │      └─20180211
    │  └─Video
    ├─Scripts
    │  │  antnw.js
    │  │  bootstrap.js
    │  │  bootstrap.min.js
    │  │  common.js
    │  │  flexible.min.js
    │  │  html5shiv.js
    │  │  jquery-1.10.2.intellisense.js
    │  │  jquery-1.10.2.js
    │  │  jquery-1.10.2.min.js
    │  │  jquery-1.10.2.min.map
    │  │  jquery-1.11.3.min.js
    │  │  jquery.AshAlom.gaugeMeter-2.0.0.min.js
    │  │  jquery.easyui-1.4.5.js
    │  │  modernizr-2.6.2.js
    │  │  respond.js
    │  │  respond.min.js
    │  │  ui-select.js
    │  │  _references.js
    │  │  
    │  ├─Chart
    │  │      echarts.common.min.js
    │  │      
    │  ├─lhgdialog
    │  │  │  index.html
    │  │  │  lhgcore.min.js
    │  │  │  lhgdialog.css
    │  │  │  lhgdialog.js
    │  │  │  _lhgdialog.js
    │  │  │  
    │  │  ├─3_4_1
    │  │  │  │  index.html
    │  │  │  │  lhgcore.min.js
    │  │  │  │  lhgdialog.css
    │  │  │  │  lhgdialog.min.js
    │  │  │  │  _lhgdialog.js
    │  │  │  │  
    │  │  │  ├─images
    │  │  │  │      bottom.png
    │  │  │  │      d_btn.gif
    │  │  │  │      left.png
    │  │  │  │      leftBottom.png
    │  │  │  │      leftTop.png
    │  │  │  │      right.png
    │  │  │  │      rightBottom.png
    │  │  │  │      rightTop.png
    │  │  │  │      Thumbs.db
    │  │  │  │      top.png
    │  │  │  │      wait.gif
    │  │  │  │      xbtn.png
    │  │  │  │      
    │  │  │  └─skins
    │  │  │      │  areo_blue.css
    │  │  │      │  areo_gray.css
    │  │  │      │  chrome.css
    │  │  │      │  default.css
    │  │  │      │  notitle.css
    │  │  │      │  
    │  │  │      ├─areo_blue
    │  │  │      │  │  lhgdg_bg.png
    │  │  │      │  │  lhgdg_x.png
    │  │  │      │  │  wait.gif
    │  │  │      │  │  
    │  │  │      │  └─ie6
    │  │  │      │          bottom.png
    │  │  │      │          left.png
    │  │  │      │          leftBottom.png
    │  │  │      │          leftTop.png
    │  │  │      │          right.png
    │  │  │      │          rightBottom.png
    │  │  │      │          rightTop.png
    │  │  │      │          titBtn.gif
    │  │  │      │          top.png
    │  │  │      │          
    │  │  │      ├─areo_gray
    │  │  │      │  │  lhgdg_bg.png
    │  │  │      │  │  lhgdg_x.png
    │  │  │      │  │  wait.gif
    │  │  │      │  │  
    │  │  │      │  └─ie6
    │  │  │      │          bottom.png
    │  │  │      │          left.png
    │  │  │      │          leftBottom.png
    │  │  │      │          leftTop.png
    │  │  │      │          right.png
    │  │  │      │          rightBottom.png
    │  │  │      │          rightTop.png
    │  │  │      │          titbtn.gif
    │  │  │      │          top.png
    │  │  │      │          
    │  │  │      ├─chrome
    │  │  │      │      lhgdg_bg.gif
    │  │  │      │      lhgdg_btn.gif
    │  │  │      │      lhgdg_x.gif
    │  │  │      │      wait.gif
    │  │  │      │      
    │  │  │      ├─default
    │  │  │      │  │  lhgdg_bg.png
    │  │  │      │  │  lhgdg_x.png
    │  │  │      │  │  wait.gif
    │  │  │      │  │  
    │  │  │      │  └─ie6
    │  │  │      │          bottom.png
    │  │  │      │          left.png
    │  │  │      │          leftBottom.png
    │  │  │      │          leftTop.png
    │  │  │      │          right.png
    │  │  │      │          rightBottom.png
    │  │  │      │          rightTop.png
    │  │  │      │          titBtn.gif
    │  │  │      │          top.png
    │  │  │      │          
    │  │  │      └─notitle
    │  │  │          │  lhgdg_bg.png
    │  │  │          │  lhgdg_x.png
    │  │  │          │  wait.gif
    │  │  │          │  
    │  │  │          └─ie6
    │  │  │                  bottom.png
    │  │  │                  left.png
    │  │  │                  leftBottom.png
    │  │  │                  leftTop.png
    │  │  │                  right.png
    │  │  │                  rightBottom.png
    │  │  │                  rightTop.png
    │  │  │                  top.png
    │  │  │                  
    │  │  ├─images
    │  │  │      bottom.png
    │  │  │      d_btn.gif
    │  │  │      left.png
    │  │  │      leftBottom.png
    │  │  │      leftTop.png
    │  │  │      right.png
    │  │  │      rightBottom.png
    │  │  │      rightTop.png
    │  │  │      Thumbs.db
    │  │  │      top.png
    │  │  │      wait.gif
    │  │  │      xbtn.png
    │  │  │      
    │  │  ├─_content
    │  │  │      01.html
    │  │  │      02.html
    │  │  │      03.html
    │  │  │      04.html
    │  │  │      05.html
    │  │  │      06.html
    │  │  │      value.html
    │  │  │      
    │  │  └─_skins
    │  │      ├─areo_blue
    │  │      │      bottom.png
    │  │      │      d_btn.gif
    │  │      │      left.png
    │  │      │      leftBottom.png
    │  │      │      leftTop.png
    │  │      │      lhgdialog.css
    │  │      │      right.png
    │  │      │      rightBottom.png
    │  │      │      rightTop.png
    │  │      │      Thumbs.db
    │  │      │      top.png
    │  │      │      xbtn.png
    │  │      │      
    │  │      ├─areo_gray
    │  │      │      bottom.png
    │  │      │      d_btn.gif
    │  │      │      left.png
    │  │      │      leftBottom.png
    │  │      │      leftTop.png
    │  │      │      lhgdialog.css
    │  │      │      right.png
    │  │      │      rightBottom.png
    │  │      │      rightTop.png
    │  │      │      Thumbs.db
    │  │      │      top.png
    │  │      │      xbtn.png
    │  │      │      
    │  │      ├─default
    │  │      │      d_bg.gif
    │  │      │      d_btn.gif
    │  │      │      d_x.gif
    │  │      │      lhgdialog.css
    │  │      │      Thumbs.db
    │  │      │      
    │  │      ├─extjs
    │  │      │      d_bg.gif
    │  │      │      d_btn.gif
    │  │      │      d_x.gif
    │  │      │      lhgdialog.css
    │  │      │      Thumbs.db
    │  │      │      
    │  │      ├─skyblue
    │  │      │      d_bg.gif
    │  │      │      d_btn.gif
    │  │      │      d_x.gif
    │  │      │      lhgdialog.css
    │  │      │      Thumbs.db
    │  │      │      
    │  │      └─skyblue2
    │  │              btn.png
    │  │              dialog_cb.png
    │  │              dialog_closebtn.png
    │  │              dialog_closebtn_over.png
    │  │              dialog_ct.png
    │  │              dialog_lb.png
    │  │              dialog_lt.png
    │  │              dialog_mlt.png
    │  │              dialog_mrt.png
    │  │              dialog_rb.png
    │  │              dialog_rt.png
    │  │              lhgdialog.css
    │  │              Thumbs.db
    │  │              
    │  ├─My97DatePicker
    │  │  │  calendar.js
    │  │  │  WdatePicker.js
    │  │  │  
    │  │  ├─lang
    │  │  │      en.js
    │  │  │      zh-cn.js
    │  │  │      zh-tw.js
    │  │  │      
    │  │  ├─skin
    │  │  │  │  datePicker.gif
    │  │  │  │  WdatePicker.css
    │  │  │  │  
    │  │  │  ├─default
    │  │  │  │      datepicker.css
    │  │  │  │      img.gif
    │  │  │  │      
    │  │  │  └─whyGreen
    │  │  │          bg.jpg
    │  │  │          datepicker.css
    │  │  │          img.gif
    │  │  │          
    │  │  └─开发包
    │  │      │  readme.txt
    │  │      │  
    │  │      ├─lang
    │  │      │      en.js
    │  │      │      zh-cn.js
    │  │      │      zh-tw.js
    │  │      │      
    │  │      └─skin
    │  │          │  datePicker.gif
    │  │          │  WdatePicker.css
    │  │          │  
    │  │          ├─default
    │  │          │      datepicker.css
    │  │          │      img.gif
    │  │          │      
    │  │          └─whyGreen
    │  │                  bg.jpg
    │  │                  datepicker.css
    │  │                  img.gif
    │  │                  
    │  ├─ui
    │  │  │  ui.core.js
    │  │  │  ui.tabs.js
    │  │  │  
    │  │  └─Tree
    │  │      │  easyloader.js
    │  │      │  jquery.easyui.min.js
    │  │      │  jquery.easyui.mobile.js
    │  │      │  jquery.min.js
    │  │      │  jquery.tree.js
    │  │      │  
    │  │      └─CSS
    │  │          └─themes
    │  │              │  color.css
    │  │              │  icon.css
    │  │              │  mobile.css
    │  │              │  
    │  │              ├─black
    │  │              │  │  accordion.css
    │  │              │  │  calendar.css
    │  │              │  │  combo.css
    │  │              │  │  combobox.css
    │  │              │  │  datagrid.css
    │  │              │  │  datalist.css
    │  │              │  │  datebox.css
    │  │              │  │  dialog.css
    │  │              │  │  easyui.css
    │  │              │  │  filebox.css
    │  │              │  │  layout.css
    │  │              │  │  linkbutton.css
    │  │              │  │  menu.css
    │  │              │  │  menubutton.css
    │  │              │  │  messager.css
    │  │              │  │  numberbox.css
    │  │              │  │  pagination.css
    │  │              │  │  panel.css
    │  │              │  │  passwordbox.css
    │  │              │  │  progressbar.css
    │  │              │  │  propertygrid.css
    │  │              │  │  searchbox.css
    │  │              │  │  slider.css
    │  │              │  │  spinner.css
    │  │              │  │  splitbutton.css
    │  │              │  │  switchbutton.css
    │  │              │  │  tabs.css
    │  │              │  │  textbox.css
    │  │              │  │  tooltip.css
    │  │              │  │  tree.css
    │  │              │  │  validatebox.css
    │  │              │  │  window.css
    │  │              │  │  
    │  │              │  └─images
    │  │              │          accordion_arrows.png
    │  │              │          blank.gif
    │  │              │          calendar_arrows.png
    │  │              │          combo_arrow.png
    │  │              │          datagrid_icons.png
    │  │              │          datebox_arrow.png
    │  │              │          layout_arrows.png
    │  │              │          linkbutton_bg.png
    │  │              │          loading.gif
    │  │              │          menu_arrows.png
    │  │              │          messager_icons.png
    │  │              │          pagination_icons.png
    │  │              │          panel_tools.png
    │  │              │          passwordbox_close.png
    │  │              │          passwordbox_open.png
    │  │              │          searchbox_button.png
    │  │              │          slider_handle.png
    │  │              │          spinner_arrows.png
    │  │              │          tabs_icons.png
    │  │              │          tree_icons.png
    │  │              │          validatebox_warning.png
    │  │              │          
    │  │              ├─bootstrap
    │  │              │  │  accordion.css
    │  │              │  │  calendar.css
    │  │              │  │  combo.css
    │  │              │  │  combobox.css
    │  │              │  │  datagrid.css
    │  │              │  │  datalist.css
    │  │              │  │  datebox.css
    │  │              │  │  dialog.css
    │  │              │  │  easyui.css
    │  │              │  │  filebox.css
    │  │              │  │  layout.css
    │  │              │  │  linkbutton.css
    │  │              │  │  menu.css
    │  │              │  │  menubutton.css
    │  │              │  │  messager.css
    │  │              │  │  numberbox.css
    │  │              │  │  pagination.css
    │  │              │  │  panel.css
    │  │              │  │  passwordbox.css
    │  │              │  │  progressbar.css
    │  │              │  │  propertygrid.css
    │  │              │  │  searchbox.css
    │  │              │  │  slider.css
    │  │              │  │  spinner.css
    │  │              │  │  splitbutton.css
    │  │              │  │  switchbutton.css
    │  │              │  │  tabs.css
    │  │              │  │  textbox.css
    │  │              │  │  tooltip.css
    │  │              │  │  tree.css
    │  │              │  │  validatebox.css
    │  │              │  │  window.css
    │  │              │  │  
    │  │              │  └─images
    │  │              │          accordion_arrows.png
    │  │              │          blank.gif
    │  │              │          calendar_arrows.png
    │  │              │          combo_arrow.png
    │  │              │          datagrid_icons.png
    │  │              │          datebox_arrow.png
    │  │              │          layout_arrows.png
    │  │              │          linkbutton_bg.png
    │  │              │          loading.gif
    │  │              │          menu_arrows.png
    │  │              │          messager_icons.png
    │  │              │          pagination_icons.png
    │  │              │          panel_tools.png
    │  │              │          passwordbox_close.png
    │  │              │          passwordbox_open.png
    │  │              │          searchbox_button.png
    │  │              │          slider_handle.png
    │  │              │          spinner_arrows.png
    │  │              │          tabs_icons.png
    │  │              │          tree_icons.png
    │  │              │          validatebox_warning.png
    │  │              │          
    │  │              ├─default
    │  │              │  │  accordion.css
    │  │              │  │  calendar.css
    │  │              │  │  combo.css
    │  │              │  │  combobox.css
    │  │              │  │  datagrid.css
    │  │              │  │  datalist.css
    │  │              │  │  datebox.css
    │  │              │  │  dialog.css
    │  │              │  │  easyui.css
    │  │              │  │  filebox.css
    │  │              │  │  layout.css
    │  │              │  │  linkbutton.css
    │  │              │  │  menu.css
    │  │              │  │  menubutton.css
    │  │              │  │  messager.css
    │  │              │  │  numberbox.css
    │  │              │  │  pagination.css
    │  │              │  │  panel.css
    │  │              │  │  passwordbox.css
    │  │              │  │  progressbar.css
    │  │              │  │  propertygrid.css
    │  │              │  │  searchbox.css
    │  │              │  │  slider.css
    │  │              │  │  spinner.css
    │  │              │  │  splitbutton.css
    │  │              │  │  switchbutton.css
    │  │              │  │  tabs.css
    │  │              │  │  textbox.css
    │  │              │  │  tooltip.css
    │  │              │  │  tree.css
    │  │              │  │  validatebox.css
    │  │              │  │  window.css
    │  │              │  │  
    │  │              │  └─images
    │  │              │          accordion_arrows.png
    │  │              │          blank.gif
    │  │              │          calendar_arrows.png
    │  │              │          combo_arrow.png
    │  │              │          datagrid_icons.png
    │  │              │          datebox_arrow.png
    │  │              │          layout_arrows.png
    │  │              │          linkbutton_bg.png
    │  │              │          loading.gif
    │  │              │          menu_arrows.png
    │  │              │          messager_icons.png
    │  │              │          pagination_icons.png
    │  │              │          panel_tools.png
    │  │              │          passwordbox_close.png
    │  │              │          passwordbox_open.png
    │  │              │          searchbox_button.png
    │  │              │          slider_handle.png
    │  │              │          spinner_arrows.png
    │  │              │          tabs_icons.png
    │  │              │          tree_icons.png
    │  │              │          validatebox_warning.png
    │  │              │          
    │  │              ├─gray
    │  │              │  │  accordion.css
    │  │              │  │  calendar.css
    │  │              │  │  combo.css
    │  │              │  │  combobox.css
    │  │              │  │  datagrid.css
    │  │              │  │  datalist.css
    │  │              │  │  datebox.css
    │  │              │  │  dialog.css
    │  │              │  │  easyui.css
    │  │              │  │  filebox.css
    │  │              │  │  layout.css
    │  │              │  │  linkbutton.css
    │  │              │  │  menu.css
    │  │              │  │  menubutton.css
    │  │              │  │  messager.css
    │  │              │  │  numberbox.css
    │  │              │  │  pagination.css
    │  │              │  │  panel.css
    │  │              │  │  passwordbox.css
    │  │              │  │  progressbar.css
    │  │              │  │  propertygrid.css
    │  │              │  │  searchbox.css
    │  │              │  │  slider.css
    │  │              │  │  spinner.css
    │  │              │  │  splitbutton.css
    │  │              │  │  switchbutton.css
    │  │              │  │  tabs.css
    │  │              │  │  textbox.css
    │  │              │  │  tooltip.css
    │  │              │  │  tree.css
    │  │              │  │  validatebox.css
    │  │              │  │  window.css
    │  │              │  │  
    │  │              │  └─images
    │  │              │          accordion_arrows.png
    │  │              │          blank.gif
    │  │              │          calendar_arrows.png
    │  │              │          combo_arrow.png
    │  │              │          datagrid_icons.png
    │  │              │          datebox_arrow.png
    │  │              │          layout_arrows.png
    │  │              │          linkbutton_bg.png
    │  │              │          loading.gif
    │  │              │          menu_arrows.png
    │  │              │          messager_icons.png
    │  │              │          pagination_icons.png
    │  │              │          panel_tools.png
    │  │              │          passwordbox_close.png
    │  │              │          passwordbox_open.png
    │  │              │          searchbox_button.png
    │  │              │          slider_handle.png
    │  │              │          spinner_arrows.png
    │  │              │          tabs_icons.png
    │  │              │          tree_icons.png
    │  │              │          validatebox_warning.png
    │  │              │          
    │  │              ├─icons
    │  │              │      back.png
    │  │              │      blank.gif
    │  │              │      cancel.png
    │  │              │      clear.png
    │  │              │      cut.png
    │  │              │      edit_add.png
    │  │              │      edit_remove.png
    │  │              │      filesave.png
    │  │              │      filter.png
    │  │              │      help.png
    │  │              │      large_chart.png
    │  │              │      large_clipart.png
    │  │              │      large_picture.png
    │  │              │      large_shapes.png
    │  │              │      large_smartart.png
    │  │              │      lock.png
    │  │              │      man.png
    │  │              │      mini_add.png
    │  │              │      mini_edit.png
    │  │              │      mini_refresh.png
    │  │              │      more.png
    │  │              │      no.png
    │  │              │      ok.png
    │  │              │      pencil.png
    │  │              │      print.png
    │  │              │      redo.png
    │  │              │      reload.png
    │  │              │      search.png
    │  │              │      sum.png
    │  │              │      tip.png
    │  │              │      undo.png
    │  │              │      
    │  │              ├─material
    │  │              │  │  accordion.css
    │  │              │  │  calendar.css
    │  │              │  │  combo.css
    │  │              │  │  combobox.css
    │  │              │  │  datagrid.css
    │  │              │  │  datalist.css
    │  │              │  │  datebox.css
    │  │              │  │  dialog.css
    │  │              │  │  easyui.css
    │  │              │  │  filebox.css
    │  │              │  │  layout.css
    │  │              │  │  linkbutton.css
    │  │              │  │  menu.css
    │  │              │  │  menubutton.css
    │  │              │  │  messager.css
    │  │              │  │  numberbox.css
    │  │              │  │  pagination.css
    │  │              │  │  panel.css
    │  │              │  │  passwordbox.css
    │  │              │  │  progressbar.css
    │  │              │  │  propertygrid.css
    │  │              │  │  searchbox.css
    │  │              │  │  slider.css
    │  │              │  │  spinner.css
    │  │              │  │  splitbutton.css
    │  │              │  │  switchbutton.css
    │  │              │  │  tabs.css
    │  │              │  │  textbox.css
    │  │              │  │  tooltip.css
    │  │              │  │  tree.css
    │  │              │  │  validatebox.css
    │  │              │  │  window.css
    │  │              │  │  
    │  │              │  └─images
    │  │              │          accordion_arrows.png
    │  │              │          blank.gif
    │  │              │          calendar_arrows.png
    │  │              │          combo_arrow.png
    │  │              │          datagrid_icons.png
    │  │              │          datebox_arrow.png
    │  │              │          layout_arrows.png
    │  │              │          linkbutton_bg.png
    │  │              │          loading.gif
    │  │              │          menu_arrows.png
    │  │              │          messager_icons.png
    │  │              │          pagination_icons.png
    │  │              │          panel_tools.png
    │  │              │          passwordbox_close.png
    │  │              │          passwordbox_open.png
    │  │              │          searchbox_button.png
    │  │              │          slider_handle.png
    │  │              │          spinner_arrows.png
    │  │              │          tabs_icons.png
    │  │              │          Thumbs.db
    │  │              │          tree_icons.png
    │  │              │          validatebox_warning.png
    │  │              │          
    │  │              └─metro
    │  │                  │  accordion.css
    │  │                  │  calendar.css
    │  │                  │  combo.css
    │  │                  │  combobox.css
    │  │                  │  datagrid.css
    │  │                  │  datalist.css
    │  │                  │  datebox.css
    │  │                  │  dialog.css
    │  │                  │  easyui.css
    │  │                  │  filebox.css
    │  │                  │  layout.css
    │  │                  │  linkbutton.css
    │  │                  │  menu.css
    │  │                  │  menubutton.css
    │  │                  │  messager.css
    │  │                  │  numberbox.css
    │  │                  │  pagination.css
    │  │                  │  panel.css
    │  │                  │  passwordbox.css
    │  │                  │  progressbar.css
    │  │                  │  propertygrid.css
    │  │                  │  searchbox.css
    │  │                  │  slider.css
    │  │                  │  spinner.css
    │  │                  │  splitbutton.css
    │  │                  │  switchbutton.css
    │  │                  │  tabs.css
    │  │                  │  textbox.css
    │  │                  │  tooltip.css
    │  │                  │  tree.css
    │  │                  │  validatebox.css
    │  │                  │  window.css
    │  │                  │  
    │  │                  └─images
    │  │                          accordion_arrows.png
    │  │                          blank.gif
    │  │                          calendar_arrows.png
    │  │                          combo_arrow.png
    │  │                          datagrid_icons.png
    │  │                          datebox_arrow.png
    │  │                          layout_arrows.png
    │  │                          linkbutton_bg.png
    │  │                          loading.gif
    │  │                          menu_arrows.png
    │  │                          messager_icons.png
    │  │                          pagination_icons.png
    │  │                          panel_tools.png
    │  │                          passwordbox_close.png
    │  │                          passwordbox_open.png
    │  │                          searchbox_button.png
    │  │                          slider_handle.png
    │  │                          spinner_arrows.png
    │  │                          tabs_icons.png
    │  │                          tree_icons.png
    │  │                          validatebox_warning.png
    │  │                          
    │  └─WebForms
    │      │  DetailsView.js
    │      │  Focus.js
    │      │  GridView.js
    │      │  Menu.js
    │      │  MenuStandards.js
    │      │  SmartNav.js
    │      │  TreeView.js
    │      │  WebForms.js
    │      │  WebParts.js
    │      │  WebUIValidation.js
    │      │  
    │      └─MSAjax
    │              MicrosoftAjax.js
    │              MicrosoftAjaxApplicationServices.js
    │              MicrosoftAjaxComponentModel.js
    │              MicrosoftAjaxCore.js
    │              MicrosoftAjaxGlobalization.js
    │              MicrosoftAjaxHistory.js
    │              MicrosoftAjaxNetwork.js
    │              MicrosoftAjaxSerialization.js
    │              MicrosoftAjaxTimer.js
    │              MicrosoftAjaxWebForms.js
    │              MicrosoftAjaxWebServices.js
    │              
    ├─SwfUpload
    │  │  BIMGLHelper.ashx
    │  │  BIMGLHelper.ashx.cs
    │  │  css.css
    │  │  
    │  ├─images
    │  │      163_blue_s_css.txt
    │  │      del.gif
    │  │      globle_css.txt
    │  │      ico.gif
    │  │      upload.gif
    │  │      upload_normal.gif
    │  │      upload_waiting.gif
    │  │      XPButtonUploadText_61x22.png
    │  │      
    │  ├─js
    │  │      Blueprintgroupprogress.js
    │  │      Blueprinthandlers.js
    │  │      Blueprintprogress.js
    │  │      Certificategroupprogress.js
    │  │      Certificatehandlers.js
    │  │      Certificateprogress.js
    │  │      Changegroupprogress.js
    │  │      Changehandlers.js
    │  │      Changeprogress.js
    │  │      filegroupprogress0.js
    │  │      fileprogress0.js
    │  │      handlers0.js
    │  │      swfupload.queue.js
    │  │      swfupload.speed.js
    │  │      
    │  ├─New
    │  │      11.png
    │  │      default.css
    │  │      demo.aspx
    │  │      demo.aspx.cs
    │  │      demo.aspx.designer.cs
    │  │      fileprogress.js
    │  │      handlers.js
    │  │      swfupload.js
    │  │      swfupload.queue.js
    │  │      swfupload.swf
    │  │      swfuploadbutton.swf
    │  │      WebForm1.aspx
    │  │      WebForm1.aspx.cs
    │  │      WebForm1.aspx.designer.cs
    │  │      
    │  └─swfupload
    │          swfupload.js
    │          swfupload.swf
    │          
    ├─SystemSet
    │      ELE.png
    │      ProjectEdit.aspx
    │      ProjectEdit.aspx.cs
    │      ProjectEdit.aspx.designer.cs
    │      ProjectElecPeakValleyDetail.aspx
    │      ProjectElecPeakValleyDetail.aspx.cs
    │      ProjectElecPeakValleyDetail.aspx.designer.cs
    │      ProjectElecPeakValleyEdit.aspx
    │      ProjectElecPeakValleyEdit.aspx.cs
    │      ProjectElecPeakValleyEdit.aspx.designer.cs
    │      ProjectElecPeakValleyList.aspx
    │      ProjectElecPeakValleyList.aspx.cs
    │      ProjectElecPeakValleyList.aspx.designer.cs
    │      ProjectElectricEdit.aspx
    │      ProjectElectricEdit.aspx.cs
    │      ProjectElectricEdit.aspx.designer.cs
    │      ProjectElectricList.aspx
    │      ProjectElectricList.aspx.cs
    │      ProjectElectricList.aspx.designer.cs
    │      ProjectList.aspx
    │      ProjectList.aspx.cs
    │      ProjectList.aspx.designer.cs
    │      ProjectWaterEdit.aspx
    │      ProjectWaterEdit.aspx.cs
    │      ProjectWaterEdit.aspx.designer.cs
    │      ProjectWaterList.aspx
    │      ProjectWaterList.aspx.cs
    │      ProjectWaterList.aspx.designer.cs
    │      RyxxEdit.aspx
    │      RyxxEdit.aspx.cs
    │      RyxxEdit.aspx.designer.cs
    │      RYXXList.aspx
    │      RYXXList.aspx.cs
    │      RYXXList.aspx.designer.cs
    │      SetIndex.aspx
    │      SetIndex.aspx.cs
    │      SetIndex.aspx.designer.cs
    │      WATER.png
    │      ZZJGList.aspx
    │      ZZJGList.aspx.cs
    │      ZZJGList.aspx.designer.cs
    │      
    ├─UserControl
    │      Left.ascx
    │      Left.ascx.cs
    │      Left.ascx.designer.cs
    │      Top.ascx
    │      Top.ascx.cs
    │      Top.ascx.designer.cs
    │      
    ├─Video
    │      VideoEdit.aspx
    │      VideoEdit.aspx.cs
    │      VideoEdit.aspx.designer.cs
    │      VideoShow.aspx
    │      VideoShow.aspx.cs
    │      VideoShow.aspx.designer.cs
    │      
    ├─YDJK
    │      MeterListIndex.aspx
    │      MeterListIndex.aspx.cs
    │      MeterListIndex.aspx.designer.cs
    │      MeterListMeter.aspx
    │      MeterListMeter.aspx.cs
    │      MeterListMeter.aspx.designer.cs
    │      MeterListMeterBar.aspx
    │      MeterListMeterBar.aspx.cs
    │      MeterListMeterBar.aspx.designer.cs
    │      MeterListMeterData.aspx
    │      MeterListMeterData.aspx.cs
    │      MeterListMeterData.aspx.designer.cs
    │      MeterListMeterDataEdit.aspx
    │      MeterListMeterDataEdit.aspx.cs
    │      MeterListMeterDataEdit.aspx.designer.cs
    │      MeterListMeterLine.aspx
    │      MeterListMeterLine.aspx.cs
    │      MeterListMeterLine.aspx.designer.cs
    │      MeterPicListIndex.aspx
    │      MeterPicListIndex.aspx.cs
    │      MeterPicListIndex.aspx.designer.cs
    │      StaticIndex.aspx
    │      StaticIndex.aspx.cs
    │      StaticIndex.aspx.designer.cs
    │      StaticReportDay.aspx
    │      StaticReportDay.aspx.cs
    │      StaticReportDay.aspx.designer.cs
    │      StaticReportDayEdit.aspx
    │      StaticReportDayEdit.aspx.cs
    │      StaticReportDayEdit.aspx.designer.cs
    │      StaticReportMonth.aspx
    │      StaticReportMonth.aspx.cs
    │      StaticReportMonth.aspx.designer.cs
    │      StaticReportMonthEdit.aspx
    │      StaticReportMonthEdit.aspx.cs
    │      StaticReportMonthEdit.aspx.designer.cs
    │      StaticStat.aspx
    │      StaticStat.aspx.cs
    │      StaticStat.aspx.designer.cs
    │      StaticStatEdit.aspx
    │      StaticStatEdit.aspx.cs
    │      StaticStatEdit.aspx.designer.cs
    │      YdIndex.aspx
    │      YdIndex.aspx.cs
    │      YdIndex.aspx.designer.cs
    │      
    ├─YSJK
    │      MeterListIndex.aspx
    │      MeterListIndex.aspx.cs
    │      MeterListIndex.aspx.designer.cs
    │      MeterListMeter.aspx
    │      MeterListMeter.aspx.cs
    │      MeterListMeter.aspx.designer.cs
    │      MeterListMeterBar.aspx
    │      MeterListMeterBar.aspx.cs
    │      MeterListMeterBar.aspx.designer.cs
    │      MeterListMeterData.aspx
    │      MeterListMeterData.aspx.cs
    │      MeterListMeterData.aspx.designer.cs
    │      MeterListMeterDataEdit.aspx
    │      MeterListMeterDataEdit.aspx.cs
    │      MeterListMeterDataEdit.aspx.designer.cs
    │      MeterListMeterLine.aspx
    │      MeterListMeterLine.aspx.cs
    │      MeterListMeterLine.aspx.designer.cs
    │      MeterPicListIndex.aspx
    │      MeterPicListIndex.aspx.cs
    │      MeterPicListIndex.aspx.designer.cs
    │      StaticIndex.aspx
    │      StaticIndex.aspx.cs
    │      StaticIndex.aspx.designer.cs
    │      StaticReportDay.aspx
    │      StaticReportDay.aspx.cs
    │      StaticReportDay.aspx.designer.cs
    │      StaticReportDayEdit.aspx
    │      StaticReportDayEdit.aspx.cs
    │      StaticReportDayEdit.aspx.designer.cs
    │      StaticReportMonth.aspx
    │      StaticReportMonth.aspx.cs
    │      StaticReportMonth.aspx.designer.cs
    │      StaticReportMonthEdit.aspx
    │      StaticReportMonthEdit.aspx.cs
    │      StaticReportMonthEdit.aspx.designer.cs
    │      StaticStat.aspx
    │      StaticStat.aspx.cs
    │      StaticStat.aspx.designer.cs
    │      StaticStatEdit.aspx
    │      StaticStatEdit.aspx.cs
    │      StaticStatEdit.aspx.designer.cs
    │      YSIndex.aspx
    │      YSIndex.aspx.cs
    │      YSIndex.aspx.designer.cs
    │      
    └─ZTKH
            IndicatorsIndex.aspx
            IndicatorsIndex.aspx.cs
            IndicatorsIndex.aspx.designer.cs
            



标签: MVC

实例下载地址

MVC小实例(基于三层架构)

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

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

网友评论

发表评论

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

查看所有0条评论>>

小贴士

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

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

关于好例子网

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

;
报警