├── .gitattributes ├── .gitignore ├── README.md ├── UCsoft.Common ├── Base64.cs ├── CacheHelper.cs ├── DESEncrypt.cs ├── LogHelper.cs ├── Properties │ └── AssemblyInfo.cs ├── UCsoft.Common.csproj ├── Utils.cs └── packages.config ├── UCsoft.Dao ├── ITCusBaseDao.cs ├── ITCusConDao.cs ├── ITCusLogDao.cs ├── ITFunAppCompanyDao.cs ├── ITFunAppDao.cs ├── ITFunExpandDao.cs ├── ITFunFilterDao.cs ├── ITFunMyappCompanyDao.cs ├── ITFunMyappDao.cs ├── ITFunOperatingDao.cs ├── ITFunTagDao.cs ├── ITSysCompanyDao.cs ├── ITSysDepartmentDao.cs ├── ITSysLogDao.cs ├── ITSysPowerDao.cs ├── ITSysRoleDao.cs ├── ITSysUserDao.cs ├── ITableDao.cs ├── IVAppCompanyDao.cs ├── IVCompanyUserDao.cs ├── IVCustomerContactDao.cs ├── IVMyappCompanyDao.cs ├── IVSysDepartmentDao.cs ├── IViewDao.cs ├── Impl │ ├── TCusBaseDaoImpl.cs │ ├── TCusConDaoImpl.cs │ ├── TCusLogDaoImpl.cs │ ├── TFunAppCompanyDaoImpl.cs │ ├── TFunAppDaoImpl.cs │ ├── TFunExpandDaoImpl.cs │ ├── TFunFilterDaoImpl.cs │ ├── TFunMyappCompanyDaoImpl.cs │ ├── TFunMyappDaoImpl.cs │ ├── TFunOperatingDaoImpl.cs │ ├── TFunTagDaoImpl.cs │ ├── TSysCompanyDaoImpl.cs │ ├── TSysDepartmentDaoImpl.cs │ ├── TSysLogDaoImpl.cs │ ├── TSysPowerDaoImpl.cs │ ├── TSysRoleDaoImpl.cs │ ├── TSysUserDaoImpl.cs │ ├── VAppCompanyDaoImpl.cs │ ├── VCompanyUserDaoImpl.cs │ ├── VCustomerContactDaoImpl.cs │ ├── VMyappCompanyDaoImpl.cs │ └── VSysDepartmentDaoImpl.cs ├── Properties │ └── AssemblyInfo.cs ├── UCsoft.Dao.csproj └── packages.config ├── UCsoft.Data ├── Properties │ └── AssemblyInfo.cs ├── UCDbContext.cs ├── UCsoft.Data.csproj └── packages.config ├── UCsoft.Entity ├── Field.cs ├── Properties │ └── AssemblyInfo.cs ├── ResponseMessage.cs ├── TCusBase.cs ├── TCusCon.cs ├── TCusLog.cs ├── TFunApp.cs ├── TFunAppCompany.cs ├── TFunExpand.cs ├── TFunFilter.cs ├── TFunMyapp.cs ├── TFunMyappCompany.cs ├── TFunOperating.cs ├── TFunTag.cs ├── TSysCompany.cs ├── TSysDepartment.cs ├── TSysLog.cs ├── TSysPower.cs ├── TSysRole.cs ├── TSysUser.cs ├── UCEnums.cs ├── UCKeys.cs ├── UCsoft.Entity.csproj ├── VAppCompany.cs ├── VCompanyUser.cs ├── VCustomerContact.cs ├── VMyappCompany.cs ├── VSysDepartment.cs └── packages.config ├── UCsoft.Service ├── IAccountService.cs ├── ITCusBaseService.cs ├── ITCusConService.cs ├── ITCusLogService.cs ├── ITFunAppCompanyService.cs ├── ITFunAppService.cs ├── ITFunExpandService.cs ├── ITFunFilterService.cs ├── ITFunMyappCompanyService.cs ├── ITFunMyappService.cs ├── ITFunOperatingService.cs ├── ITFunTagService.cs ├── ITSysCompanyService.cs ├── ITSysDepartmentService.cs ├── ITSysLogService.cs ├── ITSysPowerService.cs ├── ITSysRoleService.cs ├── ITSysUserService.cs ├── IVAppCompanyService.cs ├── IVCompanyUserService.cs ├── IVCustomerContactService.cs ├── IVMyappCompanyService.cs ├── IVSysDepartmentService.cs ├── Impl │ ├── AccountServiceImpl.cs │ ├── TCusBaseServiceImpl.cs │ ├── TCusConServiceImpl.cs │ ├── TCusLogServiceImpl.cs │ ├── TFunAppCompanyServiceImpl.cs │ ├── TFunAppServiceImpl.cs │ ├── TFunExpandServiceImpl.cs │ ├── TFunFilterServiceImpl.cs │ ├── TFunMyappCompanyServiceImpl.cs │ ├── TFunMyappServiceImpl.cs │ ├── TFunOperatingServiceImpl.cs │ ├── TFunTagServiceImpl.cs │ ├── TSysCompanyServiceImpl.cs │ ├── TSysDepartmentServiceImpl.cs │ ├── TSysLogServiceImpl.cs │ ├── TSysPowerServiceImpl.cs │ ├── TSysRoleServiceImpl.cs │ ├── TSysUserServiceImpl.cs │ ├── VAppCompanyServiceImpl.cs │ ├── VCompanyUserServiceImpl.cs │ ├── VCustomerContactServiceImpl.cs │ ├── VMyappCompanyServiceImpl.cs │ └── VSysDepartmentServiceImpl.cs ├── Properties │ └── AssemblyInfo.cs ├── UCsoft.Service.csproj └── packages.config ├── UCsoft.T4 ├── App.config ├── Dao │ ├── ITCusBaseDao.cs │ ├── ITCusConDao.cs │ ├── ITCusLogDao.cs │ ├── ITFunAppCompanyDao.cs │ ├── ITFunAppDao.cs │ ├── ITFunExpandDao.cs │ ├── ITFunFilterDao.cs │ ├── ITFunMyappCompanyDao.cs │ ├── ITFunMyappDao.cs │ ├── ITFunOperatingDao.cs │ ├── ITFunTagDao.cs │ ├── ITSysCompanyDao.cs │ ├── ITSysDepartmentDao.cs │ ├── ITSysLogDao.cs │ ├── ITSysPowerDao.cs │ ├── ITSysRoleDao.cs │ ├── ITSysUserDao.cs │ ├── ITableDao.cs │ ├── IVAppCompanyDao.cs │ ├── IVCompanyUserDao.cs │ ├── IVCustomerContactDao.cs │ ├── IVMyappCompanyDao.cs │ ├── IVSysDepartmentDao.cs │ ├── IViewDao.cs │ ├── Impl │ │ ├── TCusBaseDaoImpl.cs │ │ ├── TCusConDaoImpl.cs │ │ ├── TCusLogDaoImpl.cs │ │ ├── TFunAppCompanyDaoImpl.cs │ │ ├── TFunAppDaoImpl.cs │ │ ├── TFunExpandDaoImpl.cs │ │ ├── TFunFilterDaoImpl.cs │ │ ├── TFunMyappCompanyDaoImpl.cs │ │ ├── TFunMyappDaoImpl.cs │ │ ├── TFunOperatingDaoImpl.cs │ │ ├── TFunTagDaoImpl.cs │ │ ├── TSysCompanyDaoImpl.cs │ │ ├── TSysDepartmentDaoImpl.cs │ │ ├── TSysLogDaoImpl.cs │ │ ├── TSysPowerDaoImpl.cs │ │ ├── TSysRoleDaoImpl.cs │ │ ├── TSysUserDaoImpl.cs │ │ ├── UCDaoImpl.cs │ │ ├── UCDaoImpl.tt │ │ ├── VAppCompanyDaoImpl.cs │ │ ├── VCompanyUserDaoImpl.cs │ │ ├── VCustomerContactDaoImpl.cs │ │ ├── VMyappCompanyDaoImpl.cs │ │ └── VSysDepartmentDaoImpl.cs │ ├── UCIDao.cs │ └── UCIDao.tt ├── Data │ ├── Access │ │ ├── .svn │ │ │ ├── entries │ │ │ ├── props │ │ │ │ ├── AccessDB.accdb.svn-work │ │ │ │ ├── AccessDB.laccdb.svn-work │ │ │ │ ├── DateTime.accdb.svn-work │ │ │ │ ├── DateTimeTest.accdb.svn-work │ │ │ │ ├── Northwind.mdb.svn-work │ │ │ │ └── users.accdb.svn-work │ │ │ └── tmp │ │ │ │ └── text-base │ │ │ │ └── Northwind.mdb.svn-base │ │ ├── AccessDB.accdb │ │ ├── AccessDB.laccdb │ │ ├── DateTime.accdb │ │ ├── DateTimeTest.accdb │ │ ├── Northwind.mdb │ │ └── users.accdb │ ├── SQLite │ │ ├── .svn │ │ │ ├── entries │ │ │ └── props │ │ │ │ ├── Northwind.sl3.svn-work │ │ │ │ ├── SQLite.db.svn-work │ │ │ │ ├── SqliteDB.db.svn-work │ │ │ │ └── SqliteTest.db.svn-work │ │ ├── Northwind.sl3 │ │ ├── SQLite.db │ │ ├── SqliteDB.db │ │ └── SqliteTest.db │ ├── SqlCE │ │ ├── .svn │ │ │ ├── entries │ │ │ └── props │ │ │ │ ├── Northwind.sdf.svn-work │ │ │ │ └── TypeInfo.sdf.svn-work │ │ ├── Northwind.sdf │ │ └── TypeInfo.sdf │ └── UCDbContext.tt ├── Entity │ ├── Entity.tt │ ├── TCusBase.cs │ ├── TCusCon.cs │ ├── TCusLog.cs │ ├── TFunApp.cs │ ├── TFunAppCompany.cs │ ├── TFunExpand.cs │ ├── TFunFilter.cs │ ├── TFunMyapp.cs │ ├── TFunMyappCompany.cs │ ├── TFunOperating.cs │ ├── TFunTag.cs │ ├── TSysCompany.cs │ ├── TSysDepartment.cs │ ├── TSysLog.cs │ ├── TSysPower.cs │ ├── TSysRole.cs │ ├── TSysUser.cs │ ├── VAppCompany.cs │ ├── VCompanyUser.cs │ ├── VCustomerContact.cs │ ├── VMyappCompany.cs │ └── VSysDepartment.cs ├── MultipleOutputHelper.ttinclude ├── Properties │ └── AssemblyInfo.cs ├── Service │ ├── EdIService.cs │ ├── EdIService.tt │ ├── ITCusBaseService.cs │ ├── ITCusConService.cs │ ├── ITCusLogService.cs │ ├── ITFunAppCompanyService.cs │ ├── ITFunAppService.cs │ ├── ITFunExpandService.cs │ ├── ITFunFilterService.cs │ ├── ITFunMyappCompanyService.cs │ ├── ITFunMyappService.cs │ ├── ITFunOperatingService.cs │ ├── ITFunTagService.cs │ ├── ITSysCompanyService.cs │ ├── ITSysDepartmentService.cs │ ├── ITSysLogService.cs │ ├── ITSysPowerService.cs │ ├── ITSysRoleService.cs │ ├── ITSysUserService.cs │ ├── IVAppCompanyService.cs │ ├── IVCompanyUserService.cs │ ├── IVCustomerContactService.cs │ ├── IVMyappCompanyService.cs │ ├── IVSysDepartmentService.cs │ └── Impl │ │ ├── EdServiceImpl.cs │ │ ├── EdServiceImpl.tt │ │ ├── TCusBaseServiceImpl.cs │ │ ├── TCusConServiceImpl.cs │ │ ├── TCusLogServiceImpl.cs │ │ ├── TFunAppCompanyServiceImpl.cs │ │ ├── TFunAppServiceImpl.cs │ │ ├── TFunExpandServiceImpl.cs │ │ ├── TFunFilterServiceImpl.cs │ │ ├── TFunMyappCompanyServiceImpl.cs │ │ ├── TFunMyappServiceImpl.cs │ │ ├── TFunOperatingServiceImpl.cs │ │ ├── TFunTagServiceImpl.cs │ │ ├── TSysCompanyServiceImpl.cs │ │ ├── TSysDepartmentServiceImpl.cs │ │ ├── TSysLogServiceImpl.cs │ │ ├── TSysPowerServiceImpl.cs │ │ ├── TSysRoleServiceImpl.cs │ │ ├── TSysUserServiceImpl.cs │ │ ├── VAppCompanyServiceImpl.cs │ │ ├── VCompanyUserServiceImpl.cs │ │ ├── VCustomerContactServiceImpl.cs │ │ ├── VMyappCompanyServiceImpl.cs │ │ └── VSysDepartmentServiceImpl.cs ├── UCsoft.T4.csproj ├── Web │ ├── Configs │ │ ├── Daos.tt │ │ ├── Daos.xml │ │ ├── Objects.tt │ │ ├── Services.tt │ │ ├── Services.xml │ │ └── Webs.tt │ ├── Controllers │ │ ├── EdApiController.tt │ │ └── EdControllers.tt │ └── Views │ │ ├── EdEditViews.tt │ │ ├── EdIndexViews.tt │ │ └── EdListViews.tt └── packages.config ├── UCsoft.Web.Tests ├── App.config ├── Properties │ └── AssemblyInfo.cs ├── UCsoft.Web.Tests.csproj └── packages.config ├── UCsoft.Web ├── App_Data │ └── XmlDocument.xml ├── App_Start │ ├── BundleConfig.cs │ ├── FilterConfig.cs │ ├── RouteConfig.cs │ └── WebApiConfig.cs ├── Areas │ ├── Account │ │ ├── AccountAreaRegistration.cs │ │ ├── Controllers │ │ │ └── LoginController.cs │ │ └── Views │ │ │ ├── Login │ │ │ ├── ForgetPassword.cshtml │ │ │ └── Index.cshtml │ │ │ └── Web.config │ ├── Customer │ │ ├── Controllers │ │ │ ├── CusBaseApiController.cs │ │ │ └── CusBaseController.cs │ │ ├── CustomerAreaRegistration.cs │ │ └── Views │ │ │ ├── CusBase │ │ │ └── List.cshtml │ │ │ └── Web.config │ └── HelpPage │ │ ├── ApiDescriptionExtensions.cs │ │ ├── App_Start │ │ └── HelpPageConfig.cs │ │ ├── Content │ │ ├── Site.css │ │ └── themes │ │ │ └── base │ │ │ ├── images │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_454545_256x240.png │ │ │ ├── ui-icons_888888_256x240.png │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ ├── jquery-ui.css │ │ │ ├── jquery.ui.accordion.css │ │ │ ├── jquery.ui.all.css │ │ │ ├── jquery.ui.autocomplete.css │ │ │ ├── jquery.ui.base.css │ │ │ ├── jquery.ui.button.css │ │ │ ├── jquery.ui.core.css │ │ │ ├── jquery.ui.datepicker.css │ │ │ ├── jquery.ui.dialog.css │ │ │ ├── jquery.ui.progressbar.css │ │ │ ├── jquery.ui.resizable.css │ │ │ ├── jquery.ui.selectable.css │ │ │ ├── jquery.ui.slider.css │ │ │ ├── jquery.ui.tabs.css │ │ │ ├── jquery.ui.theme.css │ │ │ └── minified │ │ │ ├── images │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_454545_256x240.png │ │ │ ├── ui-icons_888888_256x240.png │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ ├── jquery-ui.min.css │ │ │ ├── jquery.ui.accordion.min.css │ │ │ ├── jquery.ui.autocomplete.min.css │ │ │ ├── jquery.ui.button.min.css │ │ │ ├── jquery.ui.core.min.css │ │ │ ├── jquery.ui.datepicker.min.css │ │ │ ├── jquery.ui.dialog.min.css │ │ │ ├── jquery.ui.progressbar.min.css │ │ │ ├── jquery.ui.resizable.min.css │ │ │ ├── jquery.ui.selectable.min.css │ │ │ ├── jquery.ui.slider.min.css │ │ │ ├── jquery.ui.tabs.min.css │ │ │ └── jquery.ui.theme.min.css │ │ ├── Controllers │ │ ├── HelpController.cs │ │ └── RestApiTestController.cs │ │ ├── HelpPage.css │ │ ├── HelpPageAreaRegistration.cs │ │ ├── HelpPageConfigurationExtensions.cs │ │ ├── Images │ │ ├── accent.png │ │ ├── bullet.png │ │ ├── heroAccent.png │ │ ├── orderedList0.png │ │ ├── orderedList1.png │ │ ├── orderedList2.png │ │ ├── orderedList3.png │ │ ├── orderedList4.png │ │ ├── orderedList5.png │ │ ├── orderedList6.png │ │ ├── orderedList7.png │ │ ├── orderedList8.png │ │ └── orderedList9.png │ │ ├── Models │ │ └── HelpPageApiModel.cs │ │ ├── SampleGeneration │ │ ├── HelpPageSampleGenerator.cs │ │ ├── HelpPageSampleKey.cs │ │ ├── ImageSample.cs │ │ ├── InvalidSample.cs │ │ ├── ObjectGenerator.cs │ │ ├── SampleDirection.cs │ │ └── TextSample.cs │ │ ├── Views │ │ ├── Help │ │ │ ├── Api.cshtml │ │ │ ├── DisplayTemplates │ │ │ │ ├── ApiGroup.cshtml │ │ │ │ ├── HelpPageApiModel.cshtml │ │ │ │ ├── ImageSample.cshtml │ │ │ │ ├── InvalidSample.cshtml │ │ │ │ ├── Parameters.cshtml │ │ │ │ ├── Samples.cshtml │ │ │ │ └── TextSample.cshtml │ │ │ └── Index.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ ├── _Globe.cshtml │ │ │ └── _Layout.cshtml │ │ ├── Web.config │ │ └── _ViewStart.cshtml │ │ └── XmlDocumentationProvider.cs ├── Configs │ ├── Daos.xml │ ├── Objects.xml │ ├── Services.xml │ └── Webs.xml ├── Global.asax ├── Global.asax.cs ├── Handlers │ ├── SessionStateRouteHandler.cs │ └── SessionableControlHandler.cs ├── Log │ ├── 20141105.error.html │ └── 20141105.html ├── Properties │ └── AssemblyInfo.cs ├── Themes │ └── default │ │ ├── base │ │ └── images │ │ │ └── ie_update.jpg │ │ ├── home │ │ ├── css │ │ │ ├── index.css │ │ │ └── login.css │ │ ├── images │ │ │ ├── body_bg_02.png │ │ │ ├── btn_03.png │ │ │ ├── btn_05.png │ │ │ ├── btn_06.png │ │ │ ├── btn_07.png │ │ │ ├── btn_09.png │ │ │ ├── btn_15.png │ │ │ ├── btn_16.png │ │ │ ├── btn_17.png │ │ │ ├── daochu.png │ │ │ ├── date_03.png │ │ │ ├── date_06.png │ │ │ ├── error_06.png │ │ │ ├── global-mi-ico.png │ │ │ ├── header_left_03.png │ │ │ ├── header_user_05.png │ │ │ ├── home_btn_03.png │ │ │ ├── home_btn_05.png │ │ │ ├── home_btn_07.png │ │ │ ├── home_btn_09.png │ │ │ ├── home_btn_11.png │ │ │ ├── kh_btn_bg_22.png │ │ │ ├── login_ico.png │ │ │ ├── logo.png │ │ │ ├── none.gif │ │ │ ├── nophoto.gif │ │ │ ├── select.png │ │ │ ├── sidebar.png │ │ │ ├── v-logo-big-con.png │ │ │ ├── xiala_06.png │ │ │ ├── xing_03.png │ │ │ ├── xinjian.png │ │ │ └── xuanxiang_03.png │ │ └── js │ │ │ └── index.js │ │ └── lib │ │ ├── artDialog │ │ ├── css │ │ │ └── ui-dialog.css │ │ ├── dist │ │ │ ├── dialog-min.js │ │ │ ├── dialog-plus-min.js │ │ │ ├── dialog-plus.js │ │ │ └── dialog.js │ │ ├── img │ │ │ ├── alert.gif │ │ │ ├── confirm.gif │ │ │ ├── error.gif │ │ │ ├── loading.gif │ │ │ └── ok.gif │ │ └── lib │ │ │ ├── require.js │ │ │ └── sea.js │ │ ├── autoComplete │ │ └── jquery.autocomplete.js │ │ ├── bootstrap │ │ ├── List.cshtml │ │ ├── assets │ │ │ └── css │ │ │ │ ├── _notes │ │ │ │ └── dwsync.xml │ │ │ │ └── docs.css │ │ ├── css │ │ │ ├── _notes │ │ │ │ └── dwsync.xml │ │ │ ├── bootstrap-3.2.0.css │ │ │ ├── bootstrap-3.2.0.min.css │ │ │ └── bootstrap.css.map │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ └── glyphicons-halflings-regular.woff │ │ └── js │ │ │ ├── bootstrap-3.2.0.js │ │ │ └── bootstrap-3.2.0.min.js │ │ ├── bt-validate │ │ └── bt-validate.js │ │ ├── capture │ │ ├── FaustCplus.swf │ │ └── swfobject.js │ │ ├── cookie │ │ └── jquery.cookie.js │ │ ├── function.js │ │ ├── jquery.bootgrid │ │ ├── bak │ │ │ ├── jquery.bootgrid.css │ │ │ ├── jquery.bootgrid.js │ │ │ └── jquery.bootgrid.min.js │ │ ├── jquery.bootgrid.css │ │ ├── jquery.bootgrid.js │ │ └── jquery.bootgrid.min.js │ │ ├── jquery.form │ │ └── jquery.form.js │ │ ├── jquery │ │ ├── jquery-1.11.1.js │ │ └── jquery-1.11.1.min.js │ │ ├── json │ │ └── json2.js │ │ ├── moderniz │ │ └── moderniz.2.8.1.js │ │ ├── my97DatePicker │ │ ├── WdatePicker.js │ │ ├── calendar.js │ │ ├── lang │ │ │ ├── en.js │ │ │ ├── zh-cn.js │ │ │ └── zh-tw.js │ │ └── skin │ │ │ ├── WdatePicker.css │ │ │ ├── datePicker.gif │ │ │ ├── default │ │ │ ├── datepicker.css │ │ │ └── img.gif │ │ │ └── whyGreen │ │ │ ├── bg.jpg │ │ │ ├── datepicker.css │ │ │ └── img.gif │ │ ├── pie │ │ ├── PIE.htc │ │ └── PIE.js │ │ ├── poshytip │ │ ├── jquery.poshytip.js │ │ ├── jquery.poshytip.min.js │ │ ├── tip-darkgray │ │ │ ├── tip-darkgray.css │ │ │ ├── tip-darkgray.png │ │ │ └── tip-darkgray_arrows.png │ │ ├── tip-green │ │ │ ├── tip-green.css │ │ │ └── tip-green_arrows.gif │ │ ├── tip-skyblue │ │ │ ├── tip-skyblue.css │ │ │ ├── tip-skyblue.png │ │ │ └── tip-skyblue_arrows.png │ │ ├── tip-twitter │ │ │ ├── tip-twitter.css │ │ │ └── tip-twitter_arrows.gif │ │ ├── tip-violet │ │ │ ├── tip-violet.css │ │ │ ├── tip-violet.png │ │ │ └── tip-violet_arrows.png │ │ ├── tip-yellow │ │ │ ├── tip-yellow.css │ │ │ ├── tip-yellow.png │ │ │ └── tip-yellow_arrows.png │ │ └── tip-yellowsimple │ │ │ ├── tip-yellowsimple.css │ │ │ └── tip-yellowsimple_arrows.gif │ │ ├── swfupload │ │ ├── swfupload.handlers.js │ │ ├── swfupload.js │ │ ├── swfupload.queue.js │ │ └── swfupload.swf │ │ ├── validate │ │ ├── jquery.validate.extend.js │ │ ├── jquery.validate.js │ │ ├── jquery.validate.min.js │ │ └── messages_cn.js │ │ └── zTree │ │ ├── css │ │ └── zTreeStyle │ │ │ ├── img │ │ │ ├── diy │ │ │ │ ├── 1_close.png │ │ │ │ ├── 1_open.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ ├── 5.png │ │ │ │ ├── 6.png │ │ │ │ ├── 7.png │ │ │ │ ├── 8.png │ │ │ │ └── 9.png │ │ │ ├── line_conn.gif │ │ │ ├── loading.gif │ │ │ ├── zTreeStandard.gif │ │ │ └── zTreeStandard.png │ │ │ └── zTreeStyle.css │ │ └── js │ │ ├── jquery.ztree.all-3.5.js │ │ ├── jquery.ztree.all-3.5.min.js │ │ ├── jquery.ztree.core-3.5.js │ │ ├── jquery.ztree.core-3.5.min.js │ │ ├── jquery.ztree.excheck-3.5.js │ │ ├── jquery.ztree.excheck-3.5.min.js │ │ ├── jquery.ztree.exedit-3.5.js │ │ ├── jquery.ztree.exedit-3.5.min.js │ │ └── jquery.ztree.exedit.js ├── UCsoft.Web.csproj ├── Web.Debug.config ├── Web.Release.config ├── Web.config ├── ie6update.html ├── log4net.config └── packages.config ├── UCsoft.sln ├── UCsoft.sln.GhostDoc.xml ├── WE-Markdown.css ├── mysql-connector-net-6.8.3.msi └── packages ├── Common.Logging.2.1.2 ├── Common.Logging.2.1.2.nupkg └── lib │ ├── net35 │ ├── Common.Logging.dll │ └── Common.Logging.xml │ └── net40 │ ├── Common.Logging.dll │ └── Common.Logging.xml ├── ELinq.0.6.1 ├── ELinq.0.6.1.nupkg └── lib │ ├── net35 │ ├── ELinq.dll │ └── ELinq.xml │ ├── net40 │ ├── ELinq.dll │ └── ELinq.xml │ └── net45 │ ├── ELinq.XML │ └── ELinq.dll ├── Microsoft.AspNet.Mvc.4.0.30506.0 ├── Microsoft.AspNet.Mvc.4.0.30506.0.nupkg └── lib │ └── net40 │ ├── System.Web.Mvc.dll │ ├── System.Web.Mvc.xml │ └── zh-Hans │ ├── System.Web.Mvc.resources.dll │ └── System.Web.Mvc.xml ├── Microsoft.AspNet.Mvc.FixedDisplayModes.1.0.0 ├── Microsoft.AspNet.Mvc.FixedDisplayModes.1.0.0.nupkg └── lib │ └── net40 │ └── Microsoft.Web.Mvc.FixedDisplayModes.dll ├── Microsoft.AspNet.Mvc.zh-Hans.4.0.30506.0 ├── Microsoft.AspNet.Mvc.zh-Hans.4.0.30506.0.nupkg └── lib │ └── net40 │ └── zh-Hans │ ├── System.Web.Mvc.resources.dll │ └── System.Web.Mvc.xml ├── Microsoft.AspNet.Razor.2.0.30506.0 ├── Microsoft.AspNet.Razor.2.0.30506.0.nupkg └── lib │ └── net40 │ ├── System.Web.Razor.dll │ ├── System.Web.Razor.xml │ └── zh-Hans │ ├── System.Web.Razor.resources.dll │ └── system.web.razor.xml ├── Microsoft.AspNet.Razor.zh-Hans.2.0.30506.0 ├── Microsoft.AspNet.Razor.zh-Hans.2.0.30506.0.nupkg └── lib │ └── net40 │ └── zh-Hans │ ├── System.Web.Razor.resources.dll │ └── system.web.razor.xml ├── Microsoft.AspNet.Web.Optimization.1.1.0 ├── Microsoft.AspNet.Web.Optimization.1.1.0.nupkg └── lib │ └── net40 │ └── System.Web.Optimization.dll ├── Microsoft.AspNet.WebApi.4.0.30506.0 └── Microsoft.AspNet.WebApi.4.0.30506.0.nupkg ├── Microsoft.AspNet.WebApi.Client.4.0.30506.0 ├── Microsoft.AspNet.WebApi.Client.4.0.30506.0.nupkg └── lib │ └── net40 │ ├── System.Net.Http.Formatting.dll │ ├── System.Net.Http.Formatting.xml │ └── zh-Hans │ ├── System.Net.Http.Formatting.resources.dll │ └── System.Net.Http.Formatting.xml ├── Microsoft.AspNet.WebApi.Client.zh-Hans.4.0.30506.0 ├── Microsoft.AspNet.WebApi.Client.zh-Hans.4.0.30506.0.nupkg └── lib │ └── net40 │ └── zh-Hans │ ├── System.Net.Http.Formatting.resources.dll │ └── System.Net.Http.Formatting.xml ├── Microsoft.AspNet.WebApi.Core.4.0.30506.0 ├── Microsoft.AspNet.WebApi.Core.4.0.30506.0.nupkg ├── content │ └── web.config.transform └── lib │ └── net40 │ ├── System.Web.Http.dll │ ├── System.Web.Http.xml │ └── zh-Hans │ ├── System.Web.Http.resources.dll │ └── System.Web.Http.xml ├── Microsoft.AspNet.WebApi.Core.zh-Hans.4.0.30506.0 ├── Microsoft.AspNet.WebApi.Core.zh-Hans.4.0.30506.0.nupkg └── lib │ └── net40 │ └── zh-Hans │ ├── System.Web.Http.resources.dll │ └── System.Web.Http.xml ├── Microsoft.AspNet.WebApi.WebHost.4.0.30506.0 ├── Microsoft.AspNet.WebApi.WebHost.4.0.30506.0.nupkg └── lib │ └── net40 │ ├── System.Web.Http.WebHost.dll │ ├── System.Web.Http.WebHost.xml │ └── zh-Hans │ ├── System.Web.Http.WebHost.resources.dll │ └── System.Web.Http.WebHost.xml ├── Microsoft.AspNet.WebApi.WebHost.zh-Hans.4.0.30506.0 ├── Microsoft.AspNet.WebApi.WebHost.zh-Hans.4.0.30506.0.nupkg └── lib │ └── net40 │ └── zh-Hans │ ├── System.Web.Http.WebHost.resources.dll │ └── System.Web.Http.WebHost.xml ├── Microsoft.AspNet.WebPages.2.0.30506.0 ├── Microsoft.AspNet.WebPages.2.0.30506.0.nupkg └── lib │ └── net40 │ ├── System.Web.Helpers.dll │ ├── System.Web.Helpers.xml │ ├── System.Web.WebPages.Deployment.dll │ ├── System.Web.WebPages.Deployment.xml │ ├── System.Web.WebPages.Razor.dll │ ├── System.Web.WebPages.Razor.xml │ ├── System.Web.WebPages.dll │ ├── System.Web.WebPages.xml │ └── zh-Hans │ ├── System.Web.Helpers.resources.dll │ ├── System.Web.WebPages.Deployment.resources.dll │ ├── System.Web.WebPages.Razor.resources.dll │ ├── System.Web.WebPages.resources.dll │ ├── system.web.helpers.xml │ ├── system.web.webpages.deployment.xml │ ├── system.web.webpages.razor.xml │ └── system.web.webpages.xml ├── Microsoft.AspNet.WebPages.zh-Hans.2.0.30506.0 ├── Microsoft.AspNet.WebPages.zh-Hans.2.0.30506.0.nupkg └── lib │ └── net40 │ └── zh-Hans │ ├── System.Web.Helpers.resources.dll │ ├── System.Web.WebPages.Deployment.resources.dll │ ├── System.Web.WebPages.Razor.resources.dll │ ├── System.Web.WebPages.resources.dll │ ├── system.web.helpers.xml │ ├── system.web.webpages.deployment.xml │ ├── system.web.webpages.razor.xml │ └── system.web.webpages.xml ├── Microsoft.Net.Http.2.0.20710.0 ├── Microsoft.Net.Http.2.0.20710.0.nupkg └── lib │ ├── net40 │ ├── System.Net.Http.WebRequest.dll │ ├── System.Net.Http.WebRequest.xml │ ├── System.Net.Http.dll │ ├── System.Net.Http.xml │ └── zh-Hans │ │ ├── System.Net.Http.WebRequest.resources.dll │ │ ├── System.Net.Http.WebRequest.xml │ │ ├── System.Net.Http.resources.dll │ │ └── System.Net.Http.xml │ └── net45 │ └── _._ ├── Microsoft.Net.Http.zh-Hans.2.0.20710.0 ├── Microsoft.Net.Http.zh-Hans.2.0.20710.0.nupkg └── lib │ └── net40 │ └── zh-Hans │ ├── System.Net.Http.WebRequest.resources.dll │ ├── System.Net.Http.WebRequest.xml │ ├── System.Net.Http.resources.dll │ └── System.Net.Http.xml ├── Microsoft.Web.Infrastructure.1.0.0.0 ├── Microsoft.Web.Infrastructure.1.0.0.0.nupkg └── lib │ └── net40 │ └── Microsoft.Web.Infrastructure.dll ├── MySql.Data.6.8.3 ├── MySql.Data.6.8.3.nupkg └── lib │ ├── net20-cf │ └── MySql.Data.cf.dll │ ├── net20 │ └── MySql.Data.dll │ ├── net40 │ └── MySql.Data.dll │ ├── net45 │ └── MySql.Data.dll │ └── netcore45 │ └── MySql.Data.RT.dll ├── NLite.0.9.5.7 ├── NLite.0.9.5.7.nupkg └── lib │ ├── net35 │ ├── NLite.XML │ └── NLite.dll │ ├── net40 │ ├── NLite.XML │ └── NLite.dll │ └── net45 │ ├── NLite.XML │ └── NLite.dll ├── Newtonsoft.Json.4.5.11 ├── Newtonsoft.Json.4.5.11.nupkg └── lib │ ├── net20 │ ├── Newtonsoft.Json.dll │ └── Newtonsoft.Json.xml │ ├── net35 │ ├── Newtonsoft.Json.dll │ └── Newtonsoft.Json.xml │ ├── net40 │ ├── 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 │ ├── sl3-wp │ ├── Newtonsoft.Json.dll │ └── Newtonsoft.Json.xml │ ├── sl4-windowsphone71 │ ├── Newtonsoft.Json.dll │ └── Newtonsoft.Json.xml │ ├── sl4 │ ├── Newtonsoft.Json.dll │ └── Newtonsoft.Json.xml │ └── winrt45 │ ├── Newtonsoft.Json.dll │ └── Newtonsoft.Json.xml ├── Spring.Core.2.0.0-RC1 ├── Spring.Core.2.0.0-RC1.nupkg └── lib │ ├── net35 │ ├── Spring.Core.dll │ └── Spring.Core.xml │ ├── net40 │ ├── Spring.Core.dll │ └── Spring.Core.xml │ └── net45 │ ├── Spring.Core.dll │ └── Spring.Core.xml ├── Spring.Web.2.0.0-RC1 ├── Spring.Web.2.0.0-RC1.nupkg └── lib │ ├── net35 │ ├── Spring.Web.dll │ └── Spring.Web.xml │ ├── net40 │ ├── Spring.Web.dll │ └── Spring.Web.xml │ └── net45 │ ├── Spring.Web.dll │ └── Spring.Web.xml ├── Spring.Web.Mvc4.2.0.0-RC1 ├── Spring.Web.Mvc4.2.0.0-RC1.nupkg └── lib │ ├── net40 │ ├── Spring.Web.Mvc4.dll │ └── Spring.Web.Mvc4.xml │ └── net45 │ ├── Spring.Web.Mvc4.dll │ └── Spring.Web.Mvc4.xml ├── System.Linq.Dynamic.1.0.2 ├── System.Linq.Dynamic.1.0.2.nupkg └── lib │ └── net40 │ └── System.Linq.Dynamic.dll ├── WebGrease.1.3.0 ├── WebGrease.1.3.0.nupkg └── lib │ ├── Antlr3.Runtime.dll │ └── WebGrease.dll ├── log4net.2.0.3 ├── lib │ ├── net10-full │ │ ├── log4net.dll │ │ └── log4net.xml │ ├── net11-full │ │ ├── log4net.dll │ │ └── log4net.xml │ ├── net20-full │ │ ├── log4net.dll │ │ └── log4net.xml │ ├── net35-client │ │ ├── log4net.dll │ │ └── log4net.xml │ ├── net35-full │ │ ├── log4net.dll │ │ └── log4net.xml │ ├── net40-client │ │ ├── log4net.dll │ │ └── log4net.xml │ └── net40-full │ │ ├── log4net.dll │ │ └── log4net.xml └── log4net.2.0.3.nupkg ├── repositories.config └── routedebugger.1.0.0 ├── lib └── RouteDebug.dll ├── license.txt ├── readme.txt └── routedebugger.1.0.0.nupkg /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | #ignore thumbnails created by windows 3 | Thumbs.db 4 | #Ignore files build by Visual Studio 5 | *.obj 6 | *.exe 7 | *.pdb 8 | *.user 9 | *.aps 10 | *.pch 11 | *.vspscc 12 | *_i.c 13 | *_p.c 14 | *.ncb 15 | *.suo 16 | *.tlb 17 | *.tlh 18 | *.bak 19 | *.cache 20 | *.ilk 21 | *.log 22 | [Bb]in 23 | [Dd]ebug*/ 24 | *.lib 25 | *.sbr 26 | obj/ 27 | [Rr]elease*/ 28 | _ReSharper*/ 29 | [Tt]est[Rr]esult* 30 | UCsoft.T4/Entity/*.cs 31 | UCsoft.T4/Data/*.cs 32 | UCsoft.Web/Log/* 33 | -------------------------------------------------------------------------------- /UCsoft.Common/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /UCsoft.Dao/ITCusBaseDao.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * ======================================================================== 3 | * Copyright(c) 2013-2014 郑州优创科技有限公司, All Rights Reserved. 4 | * ======================================================================== 5 | * 6 | * 【表操作Dao接口】 7 | * 8 | * 9 | * 作者:唐有炜 时间:2014-11-05 18:17:30 10 | * 文件名:ITCusBaseDao 11 | * 版本:V1.0.0 12 | * 13 | * 修改者:唐有炜 时间:2014-11-05 18:17:30 14 | * 修改说明:修改说明 15 | * ======================================================================== 16 | */ 17 | using UCsoft.Entity; 18 | namespace UCsoft.Dao 19 | { 20 | public interface ITCusBaseDao:ITableDao 21 | { 22 | 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /UCsoft.Dao/ITCusConDao.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * ======================================================================== 3 | * Copyright(c) 2013-2014 郑州优创科技有限公司, All Rights Reserved. 4 | * ======================================================================== 5 | * 6 | * 【表操作Dao接口】 7 | * 8 | * 9 | * 作者:唐有炜 时间:2014-11-05 18:17:30 10 | * 文件名:ITCusConDao 11 | * 版本:V1.0.0 12 | * 13 | * 修改者:唐有炜 时间:2014-11-05 18:17:30 14 | * 修改说明:修改说明 15 | * ======================================================================== 16 | */ 17 | using UCsoft.Entity; 18 | namespace UCsoft.Dao 19 | { 20 | public interface ITCusConDao:ITableDao 21 | { 22 | 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /UCsoft.Dao/ITCusLogDao.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * ======================================================================== 3 | * Copyright(c) 2013-2014 郑州优创科技有限公司, All Rights Reserved. 4 | * ======================================================================== 5 | * 6 | * 【表操作Dao接口】 7 | * 8 | * 9 | * 作者:唐有炜 时间:2014-11-05 18:17:30 10 | * 文件名:ITCusLogDao 11 | * 版本:V1.0.0 12 | * 13 | * 修改者:唐有炜 时间:2014-11-05 18:17:30 14 | * 修改说明:修改说明 15 | * ======================================================================== 16 | */ 17 | using UCsoft.Entity; 18 | namespace UCsoft.Dao 19 | { 20 | public interface ITCusLogDao:ITableDao 21 | { 22 | 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /UCsoft.Dao/ITFunAppCompanyDao.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * ======================================================================== 3 | * Copyright(c) 2013-2014 郑州优创科技有限公司, All Rights Reserved. 4 | * ======================================================================== 5 | * 6 | * 【表操作Dao接口】 7 | * 8 | * 9 | * 作者:唐有炜 时间:2014-11-05 18:17:30 10 | * 文件名:ITFunAppCompanyDao 11 | * 版本:V1.0.0 12 | * 13 | * 修改者:唐有炜 时间:2014-11-05 18:17:30 14 | * 修改说明:修改说明 15 | * ======================================================================== 16 | */ 17 | using UCsoft.Entity; 18 | namespace UCsoft.Dao 19 | { 20 | public interface ITFunAppCompanyDao:ITableDao 21 | { 22 | 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /UCsoft.Dao/ITFunAppDao.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * ======================================================================== 3 | * Copyright(c) 2013-2014 郑州优创科技有限公司, All Rights Reserved. 4 | * ======================================================================== 5 | * 6 | * 【表操作Dao接口】 7 | * 8 | * 9 | * 作者:唐有炜 时间:2014-11-05 18:17:30 10 | * 文件名:ITFunAppDao 11 | * 版本:V1.0.0 12 | * 13 | * 修改者:唐有炜 时间:2014-11-05 18:17:30 14 | * 修改说明:修改说明 15 | * ======================================================================== 16 | */ 17 | using UCsoft.Entity; 18 | namespace UCsoft.Dao 19 | { 20 | public interface ITFunAppDao:ITableDao 21 | { 22 | 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /UCsoft.Dao/ITFunExpandDao.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * ======================================================================== 3 | * Copyright(c) 2013-2014 郑州优创科技有限公司, All Rights Reserved. 4 | * ======================================================================== 5 | * 6 | * 【表操作Dao接口】 7 | * 8 | * 9 | * 作者:唐有炜 时间:2014-11-05 18:17:30 10 | * 文件名:ITFunExpandDao 11 | * 版本:V1.0.0 12 | * 13 | * 修改者:唐有炜 时间:2014-11-05 18:17:30 14 | * 修改说明:修改说明 15 | * ======================================================================== 16 | */ 17 | using UCsoft.Entity; 18 | namespace UCsoft.Dao 19 | { 20 | public interface ITFunExpandDao:ITableDao 21 | { 22 | 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /UCsoft.Dao/ITFunFilterDao.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * ======================================================================== 3 | * Copyright(c) 2013-2014 郑州优创科技有限公司, All Rights Reserved. 4 | * ======================================================================== 5 | * 6 | * 【表操作Dao接口】 7 | * 8 | * 9 | * 作者:唐有炜 时间:2014-11-05 18:17:30 10 | * 文件名:ITFunFilterDao 11 | * 版本:V1.0.0 12 | * 13 | * 修改者:唐有炜 时间:2014-11-05 18:17:30 14 | * 修改说明:修改说明 15 | * ======================================================================== 16 | */ 17 | using UCsoft.Entity; 18 | namespace UCsoft.Dao 19 | { 20 | public interface ITFunFilterDao:ITableDao 21 | { 22 | 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /UCsoft.Dao/ITFunMyappCompanyDao.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * ======================================================================== 3 | * Copyright(c) 2013-2014 郑州优创科技有限公司, All Rights Reserved. 4 | * ======================================================================== 5 | * 6 | * 【表操作Dao接口】 7 | * 8 | * 9 | * 作者:唐有炜 时间:2014-11-05 18:17:30 10 | * 文件名:ITFunMyappCompanyDao 11 | * 版本:V1.0.0 12 | * 13 | * 修改者:唐有炜 时间:2014-11-05 18:17:30 14 | * 修改说明:修改说明 15 | * ======================================================================== 16 | */ 17 | using UCsoft.Entity; 18 | namespace UCsoft.Dao 19 | { 20 | public interface ITFunMyappCompanyDao:ITableDao 21 | { 22 | 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /UCsoft.Dao/ITFunMyappDao.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * ======================================================================== 3 | * Copyright(c) 2013-2014 郑州优创科技有限公司, All Rights Reserved. 4 | * ======================================================================== 5 | * 6 | * 【表操作Dao接口】 7 | * 8 | * 9 | * 作者:唐有炜 时间:2014-11-05 18:17:30 10 | * 文件名:ITFunMyappDao 11 | * 版本:V1.0.0 12 | * 13 | * 修改者:唐有炜 时间:2014-11-05 18:17:30 14 | * 修改说明:修改说明 15 | * ======================================================================== 16 | */ 17 | using UCsoft.Entity; 18 | namespace UCsoft.Dao 19 | { 20 | public interface ITFunMyappDao:ITableDao 21 | { 22 | 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /UCsoft.Dao/ITFunOperatingDao.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * ======================================================================== 3 | * Copyright(c) 2013-2014 郑州优创科技有限公司, All Rights Reserved. 4 | * ======================================================================== 5 | * 6 | * 【表操作Dao接口】 7 | * 8 | * 9 | * 作者:唐有炜 时间:2014-11-05 18:17:30 10 | * 文件名:ITFunOperatingDao 11 | * 版本:V1.0.0 12 | * 13 | * 修改者:唐有炜 时间:2014-11-05 18:17:30 14 | * 修改说明:修改说明 15 | * ======================================================================== 16 | */ 17 | using UCsoft.Entity; 18 | namespace UCsoft.Dao 19 | { 20 | public interface ITFunOperatingDao:ITableDao 21 | { 22 | 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /UCsoft.Dao/ITFunTagDao.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * ======================================================================== 3 | * Copyright(c) 2013-2014 郑州优创科技有限公司, All Rights Reserved. 4 | * ======================================================================== 5 | * 6 | * 【表操作Dao接口】 7 | * 8 | * 9 | * 作者:唐有炜 时间:2014-11-05 18:17:30 10 | * 文件名:ITFunTagDao 11 | * 版本:V1.0.0 12 | * 13 | * 修改者:唐有炜 时间:2014-11-05 18:17:30 14 | * 修改说明:修改说明 15 | * ======================================================================== 16 | */ 17 | using UCsoft.Entity; 18 | namespace UCsoft.Dao 19 | { 20 | public interface ITFunTagDao:ITableDao 21 | { 22 | 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /UCsoft.Dao/ITSysCompanyDao.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * ======================================================================== 3 | * Copyright(c) 2013-2014 郑州优创科技有限公司, All Rights Reserved. 4 | * ======================================================================== 5 | * 6 | * 【表操作Dao接口】 7 | * 8 | * 9 | * 作者:唐有炜 时间:2014-11-05 18:17:30 10 | * 文件名:ITSysCompanyDao 11 | * 版本:V1.0.0 12 | * 13 | * 修改者:唐有炜 时间:2014-11-05 18:17:30 14 | * 修改说明:修改说明 15 | * ======================================================================== 16 | */ 17 | using UCsoft.Entity; 18 | namespace UCsoft.Dao 19 | { 20 | public interface ITSysCompanyDao:ITableDao 21 | { 22 | 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /UCsoft.Dao/ITSysDepartmentDao.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * ======================================================================== 3 | * Copyright(c) 2013-2014 郑州优创科技有限公司, All Rights Reserved. 4 | * ======================================================================== 5 | * 6 | * 【表操作Dao接口】 7 | * 8 | * 9 | * 作者:唐有炜 时间:2014-11-05 18:17:30 10 | * 文件名:ITSysDepartmentDao 11 | * 版本:V1.0.0 12 | * 13 | * 修改者:唐有炜 时间:2014-11-05 18:17:30 14 | * 修改说明:修改说明 15 | * ======================================================================== 16 | */ 17 | using UCsoft.Entity; 18 | namespace UCsoft.Dao 19 | { 20 | public interface ITSysDepartmentDao:ITableDao 21 | { 22 | 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /UCsoft.Dao/ITSysLogDao.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * ======================================================================== 3 | * Copyright(c) 2013-2014 郑州优创科技有限公司, All Rights Reserved. 4 | * ======================================================================== 5 | * 6 | * 【表操作Dao接口】 7 | * 8 | * 9 | * 作者:唐有炜 时间:2014-11-05 18:17:30 10 | * 文件名:ITSysLogDao 11 | * 版本:V1.0.0 12 | * 13 | * 修改者:唐有炜 时间:2014-11-05 18:17:30 14 | * 修改说明:修改说明 15 | * ======================================================================== 16 | */ 17 | using UCsoft.Entity; 18 | namespace UCsoft.Dao 19 | { 20 | public interface ITSysLogDao:ITableDao 21 | { 22 | 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /UCsoft.Dao/ITSysPowerDao.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * ======================================================================== 3 | * Copyright(c) 2013-2014 郑州优创科技有限公司, All Rights Reserved. 4 | * ======================================================================== 5 | * 6 | * 【表操作Dao接口】 7 | * 8 | * 9 | * 作者:唐有炜 时间:2014-11-05 18:17:30 10 | * 文件名:ITSysPowerDao 11 | * 版本:V1.0.0 12 | * 13 | * 修改者:唐有炜 时间:2014-11-05 18:17:30 14 | * 修改说明:修改说明 15 | * ======================================================================== 16 | */ 17 | using UCsoft.Entity; 18 | namespace UCsoft.Dao 19 | { 20 | public interface ITSysPowerDao:ITableDao 21 | { 22 | 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /UCsoft.Dao/ITSysRoleDao.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * ======================================================================== 3 | * Copyright(c) 2013-2014 郑州优创科技有限公司, All Rights Reserved. 4 | * ======================================================================== 5 | * 6 | * 【表操作Dao接口】 7 | * 8 | * 9 | * 作者:唐有炜 时间:2014-11-05 18:17:30 10 | * 文件名:ITSysRoleDao 11 | * 版本:V1.0.0 12 | * 13 | * 修改者:唐有炜 时间:2014-11-05 18:17:30 14 | * 修改说明:修改说明 15 | * ======================================================================== 16 | */ 17 | using UCsoft.Entity; 18 | namespace UCsoft.Dao 19 | { 20 | public interface ITSysRoleDao:ITableDao 21 | { 22 | 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /UCsoft.Dao/ITSysUserDao.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * ======================================================================== 3 | * Copyright(c) 2013-2014 郑州优创科技有限公司, All Rights Reserved. 4 | * ======================================================================== 5 | * 6 | * 【表操作Dao接口】 7 | * 8 | * 9 | * 作者:唐有炜 时间:2014-11-05 18:17:30 10 | * 文件名:ITSysUserDao 11 | * 版本:V1.0.0 12 | * 13 | * 修改者:唐有炜 时间:2014-11-05 18:17:30 14 | * 修改说明:修改说明 15 | * ======================================================================== 16 | */ 17 | using UCsoft.Entity; 18 | namespace UCsoft.Dao 19 | { 20 | public interface ITSysUserDao:ITableDao 21 | { 22 | 23 | } 24 | } 25 | 26 | -------------------------------------------------------------------------------- /UCsoft.Dao/IVAppCompanyDao.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * ======================================================================== 3 | * Copyright(c) 2013-2014 郑州优创科技有限公司, All Rights Reserved. 4 | * ======================================================================== 5 | * 6 | * 【视图操作Dao接口】 7 | * 8 | * 9 | * 作者:唐有炜 时间:2014-11-05 18:17:30 10 | * 文件名:IVAppCompanyDao 11 | * 版本:V1.0.0 12 | * 13 | * 修改者:唐有炜 时间:2014-11-05 18:17:30 14 | * 修改说明:修改说明 15 | * ======================================================================== 16 | */ 17 | using UCsoft.Entity; 18 | namespace UCsoft.Dao 19 | { 20 | public interface IVAppCompanyDao:IViewDao 21 | { 22 | 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /UCsoft.Dao/IVCompanyUserDao.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * ======================================================================== 3 | * Copyright(c) 2013-2014 郑州优创科技有限公司, All Rights Reserved. 4 | * ======================================================================== 5 | * 6 | * 【视图操作Dao接口】 7 | * 8 | * 9 | * 作者:唐有炜 时间:2014-11-05 18:17:30 10 | * 文件名:IVCompanyUserDao 11 | * 版本:V1.0.0 12 | * 13 | * 修改者:唐有炜 时间:2014-11-05 18:17:30 14 | * 修改说明:修改说明 15 | * ======================================================================== 16 | */ 17 | using UCsoft.Entity; 18 | namespace UCsoft.Dao 19 | { 20 | public interface IVCompanyUserDao:IViewDao 21 | { 22 | 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /UCsoft.Dao/IVCustomerContactDao.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * ======================================================================== 3 | * Copyright(c) 2013-2014 郑州优创科技有限公司, All Rights Reserved. 4 | * ======================================================================== 5 | * 6 | * 【视图操作Dao接口】 7 | * 8 | * 9 | * 作者:唐有炜 时间:2014-11-05 18:17:30 10 | * 文件名:IVCustomerContactDao 11 | * 版本:V1.0.0 12 | * 13 | * 修改者:唐有炜 时间:2014-11-05 18:17:30 14 | * 修改说明:修改说明 15 | * ======================================================================== 16 | */ 17 | using UCsoft.Entity; 18 | namespace UCsoft.Dao 19 | { 20 | public interface IVCustomerContactDao:IViewDao 21 | { 22 | 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /UCsoft.Dao/IVMyappCompanyDao.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * ======================================================================== 3 | * Copyright(c) 2013-2014 郑州优创科技有限公司, All Rights Reserved. 4 | * ======================================================================== 5 | * 6 | * 【视图操作Dao接口】 7 | * 8 | * 9 | * 作者:唐有炜 时间:2014-11-05 18:17:30 10 | * 文件名:IVMyappCompanyDao 11 | * 版本:V1.0.0 12 | * 13 | * 修改者:唐有炜 时间:2014-11-05 18:17:30 14 | * 修改说明:修改说明 15 | * ======================================================================== 16 | */ 17 | using UCsoft.Entity; 18 | namespace UCsoft.Dao 19 | { 20 | public interface IVMyappCompanyDao:IViewDao 21 | { 22 | 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /UCsoft.Dao/IVSysDepartmentDao.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * ======================================================================== 3 | * Copyright(c) 2013-2014 郑州优创科技有限公司, All Rights Reserved. 4 | * ======================================================================== 5 | * 6 | * 【视图操作Dao接口】 7 | * 8 | * 9 | * 作者:唐有炜 时间:2014-11-05 18:17:30 10 | * 文件名:IVSysDepartmentDao 11 | * 版本:V1.0.0 12 | * 13 | * 修改者:唐有炜 时间:2014-11-05 18:17:30 14 | * 修改说明:修改说明 15 | * ======================================================================== 16 | */ 17 | using UCsoft.Entity; 18 | namespace UCsoft.Dao 19 | { 20 | public interface IVSysDepartmentDao:IViewDao 21 | { 22 | 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /UCsoft.Dao/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /UCsoft.Data/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /UCsoft.Entity/ResponseMessage.cs: -------------------------------------------------------------------------------- 1 | namespace UCsoft.Entity 2 | { 3 | /// 4 | /// 返回结果封装类 2014-09-05 14:58:50 By 唐有炜 5 | /// 6 | public class ResponseMessage 7 | { 8 | /// 9 | /// 操作类型(teaCRMEnums.ActionEnum的字符串形式) 10 | /// 11 | public string Action { get; set; } 12 | 13 | /// 14 | /// 返回状态 15 | /// 16 | public bool Status { get; set; } 17 | 18 | /// 19 | /// 返回结果 20 | /// 21 | public string Result { get; set; } 22 | 23 | /// 24 | /// 自定义提示信息 25 | /// 26 | public string Msg { get; set; } 27 | } 28 | } -------------------------------------------------------------------------------- /UCsoft.Entity/TCusCon.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using NLite.Data; 4 | namespace UCsoft.Entity 5 | { 6 | [Table("T_cus_con")] 7 | public partial class TCusCon 8 | { 9 | 10 | [Id("id",IsDbGenerated=true)] 11 | public Int32 Id { get;set; } 12 | 13 | [Column("cus_id")] 14 | public Int32 CusId { get;set; } 15 | [Column("comp_num")] 16 | public String CompNum { get;set; } 17 | [Column("con_name")] 18 | public String ConName { get;set; } 19 | [Column("con_tel")] 20 | public String ConTel { get;set; } 21 | [Column("con_qq")] 22 | public String ConQq { get;set; } 23 | [Column("con_email")] 24 | public String ConEmail { get;set; } 25 | [Column("con_bir")] 26 | public DateTime? ConBir { get;set; } 27 | [Column("con_note")] 28 | public String ConNote { get;set; } 29 | [Column("con_is_main")] 30 | public Int32 ConIsMain { get;set; } 31 | [Column("user_id")] 32 | public Int32 UserId { get;set; } 33 | [Column("con_fields")] 34 | public String ConFields { get;set; } 35 | 36 | 37 | 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /UCsoft.Entity/TCusLog.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using NLite.Data; 4 | namespace UCsoft.Entity 5 | { 6 | [Table("T_cus_log")] 7 | public partial class TCusLog 8 | { 9 | 10 | [Id("id",IsDbGenerated=true)] 11 | public Int32 Id { get;set; } 12 | 13 | [Column("cus_id")] 14 | public Int32 CusId { get;set; } 15 | [Column("cus_type")] 16 | public String CusType { get;set; } 17 | [Column("cus_info")] 18 | public String CusInfo { get;set; } 19 | [Column("user_id")] 20 | public Int32? UserId { get;set; } 21 | [Column("cus_addtime")] 22 | public DateTime CusAddtime { get;set; } 23 | 24 | 25 | 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /UCsoft.Entity/TFunAppCompany.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using NLite.Data; 4 | namespace UCsoft.Entity 5 | { 6 | [Table("T_fun_app_company")] 7 | public partial class TFunAppCompany 8 | { 9 | 10 | [Id("id",IsDbGenerated=true)] 11 | public Int32 Id { get;set; } 12 | 13 | [Column("comp_num")] 14 | public String CompNum { get;set; } 15 | [Column("app_id")] 16 | public Int32? AppId { get;set; } 17 | [Column("app_is_menu")] 18 | public Int32? AppIsMenu { get;set; } 19 | [Column("app_lastdate")] 20 | public DateTime? AppLastdate { get;set; } 21 | 22 | 23 | 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /UCsoft.Entity/TFunFilter.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using NLite.Data; 4 | namespace UCsoft.Entity 5 | { 6 | [Table("T_fun_filters")] 7 | public partial class TFunFilter 8 | { 9 | 10 | [Id("id",IsDbGenerated=true)] 11 | public Int32 Id { get;set; } 12 | 13 | [Column("parent_id")] 14 | public Int32? ParentId { get;set; } 15 | [Column("comp_num")] 16 | public String CompNum { get;set; } 17 | [Column("myapp_id")] 18 | public Int32 MyappId { get;set; } 19 | [Column("fil_name")] 20 | public String FilName { get;set; } 21 | [Column("fil_where")] 22 | public String FilWhere { get;set; } 23 | [Column("fil_order")] 24 | public Int32? FilOrder { get;set; } 25 | [Column("fil_is_show")] 26 | public Int32? FilIsShow { get;set; } 27 | [Column("fil_is_sys")] 28 | public Int32? FilIsSys { get;set; } 29 | 30 | [ManyToOne(ThisKey="MyappId",OtherKey="Id")] 31 | public TFunMyapp Myapp { get;set; } 32 | 33 | 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /UCsoft.Entity/TFunMyappCompany.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using NLite.Data; 4 | namespace UCsoft.Entity 5 | { 6 | [Table("T_fun_myapp_company")] 7 | public partial class TFunMyappCompany 8 | { 9 | 10 | [Id("id",IsDbGenerated=true)] 11 | public Int32 Id { get;set; } 12 | 13 | [Column("comp_num")] 14 | public String CompNum { get;set; } 15 | [Column("myapp_id")] 16 | public Int32 MyappId { get;set; } 17 | 18 | 19 | 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /UCsoft.Entity/TFunOperating.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using NLite.Data; 4 | namespace UCsoft.Entity 5 | { 6 | [Table("T_fun_operating")] 7 | public partial class TFunOperating 8 | { 9 | 10 | [Id("id",IsDbGenerated=true)] 11 | public Int32 Id { get;set; } 12 | 13 | [Column("comp_num")] 14 | public String CompNum { get;set; } 15 | [Column("myapp_id")] 16 | public Int32 MyappId { get;set; } 17 | [Column("ope_action")] 18 | public String OpeAction { get;set; } 19 | [Column("ope_type")] 20 | public Int32? OpeType { get;set; } 21 | [Column("ope_name")] 22 | public String OpeName { get;set; } 23 | [Column("ope_icon")] 24 | public String OpeIcon { get;set; } 25 | [Column("ope_function")] 26 | public String OpeFunction { get;set; } 27 | [Column("ope_is_sys")] 28 | public Int32 OpeIsSys { get;set; } 29 | [Column("ope_is_status")] 30 | public Int32 OpeIsStatus { get;set; } 31 | [Column("ope_is_fast")] 32 | public Int32 OpeIsFast { get;set; } 33 | 34 | [ManyToOne(ThisKey="MyappId",OtherKey="Id")] 35 | public TFunMyapp Myapp { get;set; } 36 | 37 | 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /UCsoft.Entity/TFunTag.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using NLite.Data; 4 | namespace UCsoft.Entity 5 | { 6 | [Table("T_fun_tags")] 7 | public partial class TFunTag 8 | { 9 | 10 | [Id("id",IsDbGenerated=false)] 11 | public Int32 Id { get;set; } 12 | 13 | [Column("myapp_id")] 14 | public Int32 MyappId { get;set; } 15 | [Column("tag_name")] 16 | public String TagName { get;set; } 17 | [Column("tag_value")] 18 | public String TagValue { get;set; } 19 | [Column("tag_color")] 20 | public String TagColor { get;set; } 21 | 22 | [ManyToOne(ThisKey="MyappId",OtherKey="Id")] 23 | public TFunMyapp Myapp { get;set; } 24 | 25 | 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /UCsoft.Entity/TSysCompany.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using NLite.Data; 4 | namespace UCsoft.Entity 5 | { 6 | [Table("T_sys_company")] 7 | public partial class TSysCompany 8 | { 9 | 10 | [Id("id",IsDbGenerated=true)] 11 | public Int32 Id { get;set; } 12 | 13 | [Id("comp_num",IsDbGenerated=false)] 14 | public String CompNum { get;set; } 15 | 16 | [Column("comp_tname")] 17 | public String CompTname { get;set; } 18 | 19 | 20 | 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /UCsoft.Entity/TSysDepartment.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using NLite.Data; 4 | namespace UCsoft.Entity 5 | { 6 | [Table("T_sys_department")] 7 | public partial class TSysDepartment 8 | { 9 | 10 | [Id("id",IsDbGenerated=true)] 11 | public Int32 Id { get;set; } 12 | 13 | [Column("parent_id")] 14 | public Int32 ParentId { get;set; } 15 | [Column("comp_num")] 16 | public String CompNum { get;set; } 17 | [Column("dep_name")] 18 | public String DepName { get;set; } 19 | [Column("dep_num")] 20 | public Int32? DepNum { get;set; } 21 | [Column("create_date")] 22 | public DateTime? CreateDate { get;set; } 23 | [Column("dep_order")] 24 | public Int32? DepOrder { get;set; } 25 | [Column("dep_goal")] 26 | public String DepGoal { get;set; } 27 | [Column("dep_respon")] 28 | public String DepRespon { get;set; } 29 | [Column("dep_skills")] 30 | public String DepSkills { get;set; } 31 | [Column("dep_course")] 32 | public String DepCourse { get;set; } 33 | [Column("dep_note")] 34 | public String DepNote { get;set; } 35 | 36 | 37 | [OneToMany(ThisKey="Id",OtherKey="DepId")] 38 | public IList TSysUsers { get;set; } 39 | 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /UCsoft.Entity/TSysLog.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using NLite.Data; 4 | namespace UCsoft.Entity 5 | { 6 | [Table("T_sys_log")] 7 | public partial class TSysLog 8 | { 9 | 10 | [Id("id",IsDbGenerated=true)] 11 | public Int32 Id { get;set; } 12 | 13 | [Column("user_id")] 14 | public Int32 UserId { get;set; } 15 | [Column("user_lname")] 16 | public String UserLname { get;set; } 17 | [Column("log_action")] 18 | public String LogAction { get;set; } 19 | [Column("log_remark")] 20 | public String LogRemark { get;set; } 21 | [Column("log_ip")] 22 | public String LogIp { get;set; } 23 | [Column("log_place")] 24 | public String LogPlace { get;set; } 25 | [Column("log_time")] 26 | public DateTime? LogTime { get;set; } 27 | 28 | 29 | 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /UCsoft.Entity/TSysPower.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using NLite.Data; 4 | namespace UCsoft.Entity 5 | { 6 | [Table("T_sys_power")] 7 | public partial class TSysPower 8 | { 9 | 10 | [Id("id",IsDbGenerated=true)] 11 | public Int32 Id { get;set; } 12 | 13 | [Column("role_id")] 14 | public Int32? RoleId { get;set; } 15 | [Column("module")] 16 | public Int32 Module { get;set; } 17 | [Column("power_nav")] 18 | public String PowerNav { get;set; } 19 | [Column("power_action")] 20 | public String PowerAction { get;set; } 21 | 22 | 23 | 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /UCsoft.Entity/TSysRole.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using NLite.Data; 4 | namespace UCsoft.Entity 5 | { 6 | [Table("T_sys_role")] 7 | public partial class TSysRole 8 | { 9 | 10 | [Id("id",IsDbGenerated=true)] 11 | public Int32 Id { get;set; } 12 | 13 | [Column("comp_num")] 14 | public String CompNum { get;set; } 15 | [Column("role_name")] 16 | public String RoleName { get;set; } 17 | [Column("role_type")] 18 | public Int32 RoleType { get;set; } 19 | [Column("role_issys")] 20 | public Int32 RoleIssys { get;set; } 21 | [Column("role_order")] 22 | public Int32? RoleOrder { get;set; } 23 | [Column("role_desc")] 24 | public String RoleDesc { get;set; } 25 | 26 | 27 | 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /UCsoft.Entity/VMyappCompany.cs: -------------------------------------------------------------------------------- 1 |  2 | using System; 3 | using System.Collections.Generic; 4 | using System.Linq; 5 | using NLite.Data; 6 | namespace UCsoft.Entity 7 | { 8 | 9 | [Table("V_myapp_company",Readonly=true)] 10 | public partial class VMyappCompany 11 | { 12 | [Column("id")] 13 | public Int32 Id { get;set; } 14 | 15 | 16 | [Column("comp_num")] 17 | public String CompNum { get;set; } 18 | 19 | 20 | [Column("app_id")] 21 | public Int32 AppId { get;set; } 22 | 23 | 24 | [Column("myapp_name")] 25 | public String MyappName { get;set; } 26 | 27 | 28 | [Column("myapp_link")] 29 | public String MyappLink { get;set; } 30 | 31 | 32 | [Column("myapp_note")] 33 | public String MyappNote { get;set; } 34 | 35 | 36 | [Column("myapp_action")] 37 | public String MyappAction { get;set; } 38 | 39 | 40 | [Column("myapp_date")] 41 | public String MyappDate { get;set; } 42 | 43 | 44 | [Column("myapp_is_nav")] 45 | public Int32 MyappIsNav { get;set; } 46 | 47 | 48 | [Column("myapp_is_sys")] 49 | public Int32 MyappIsSys { get;set; } 50 | 51 | 52 | [Column("myapp_base_table")] 53 | public String MyappBaseTable { get;set; } 54 | 55 | 56 | [Column("myapp_is_show")] 57 | public Int32 MyappIsShow { get;set; } 58 | 59 | 60 | 61 | 62 | } 63 | } 64 | -------------------------------------------------------------------------------- /UCsoft.Entity/VSysDepartment.cs: -------------------------------------------------------------------------------- 1 |  2 | using System; 3 | using System.Collections.Generic; 4 | using System.Linq; 5 | using NLite.Data; 6 | namespace UCsoft.Entity 7 | { 8 | 9 | [Table("V_sys_department",Readonly=true)] 10 | public partial class VSysDepartment 11 | { 12 | [Column("id")] 13 | public Int32 Id { get;set; } 14 | 15 | 16 | [Column("parent_id")] 17 | public Int32 ParentId { get;set; } 18 | 19 | 20 | [Column("parent_name")] 21 | public String ParentName { get;set; } 22 | 23 | 24 | [Column("comp_num")] 25 | public String CompNum { get;set; } 26 | 27 | 28 | [Column("dep_name")] 29 | public String DepName { get;set; } 30 | 31 | 32 | [Column("dep_num")] 33 | public Int32 DepNum { get;set; } 34 | 35 | 36 | [Column("create_date")] 37 | public DateTime CreateDate { get;set; } 38 | 39 | 40 | [Column("dep_order")] 41 | public Int32 DepOrder { get;set; } 42 | 43 | 44 | [Column("dep_goal")] 45 | public String DepGoal { get;set; } 46 | 47 | 48 | [Column("dep_respon")] 49 | public String DepRespon { get;set; } 50 | 51 | 52 | [Column("dep_skills")] 53 | public String DepSkills { get;set; } 54 | 55 | 56 | [Column("dep_course")] 57 | public String DepCourse { get;set; } 58 | 59 | 60 | [Column("dep_note")] 61 | public String DepNote { get;set; } 62 | 63 | 64 | 65 | 66 | } 67 | } 68 | -------------------------------------------------------------------------------- /UCsoft.Entity/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /UCsoft.Service/IVAppCompanyService.cs: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | using System; 5 | using System.Collections.Generic; 6 | using System.Linq; 7 | using System.Linq.Expressions; 8 | using NLite.Data; 9 | using UCsoft.Dao; 10 | using UCsoft.Data; 11 | using UCsoft.Entity; 12 | 13 | 14 | namespace UCsoft.Service 15 | { 16 | public interface IVAppCompanyService:IViewDao 17 | { 18 | 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /UCsoft.Service/IVCompanyUserService.cs: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | using System; 5 | using System.Collections.Generic; 6 | using System.Linq; 7 | using System.Linq.Expressions; 8 | using NLite.Data; 9 | using UCsoft.Dao; 10 | using UCsoft.Data; 11 | using UCsoft.Entity; 12 | 13 | 14 | namespace UCsoft.Service 15 | { 16 | public interface IVCompanyUserService:IViewDao 17 | { 18 | 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /UCsoft.Service/IVCustomerContactService.cs: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | using System; 5 | using System.Collections.Generic; 6 | using System.Linq; 7 | using System.Linq.Expressions; 8 | using NLite.Data; 9 | using UCsoft.Dao; 10 | using UCsoft.Data; 11 | using UCsoft.Entity; 12 | 13 | 14 | namespace UCsoft.Service 15 | { 16 | public interface IVCustomerContactService:IViewDao 17 | { 18 | 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /UCsoft.Service/IVMyappCompanyService.cs: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | using System; 5 | using System.Collections.Generic; 6 | using System.Linq; 7 | using System.Linq.Expressions; 8 | using NLite.Data; 9 | using UCsoft.Dao; 10 | using UCsoft.Data; 11 | using UCsoft.Entity; 12 | 13 | 14 | namespace UCsoft.Service 15 | { 16 | public interface IVMyappCompanyService:IViewDao 17 | { 18 | 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /UCsoft.Service/IVSysDepartmentService.cs: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | using System; 5 | using System.Collections.Generic; 6 | using System.Linq; 7 | using System.Linq.Expressions; 8 | using NLite.Data; 9 | using UCsoft.Dao; 10 | using UCsoft.Data; 11 | using UCsoft.Entity; 12 | 13 | 14 | namespace UCsoft.Service 15 | { 16 | public interface IVSysDepartmentService:IViewDao 17 | { 18 | 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /UCsoft.Service/Impl/VAppCompanyServiceImpl.cs: -------------------------------------------------------------------------------- 1 |  2 | 3 | using System; 4 | using System.Collections.Generic; 5 | using System.Linq; 6 | using System.Linq.Expressions; 7 | using NLite.Data; 8 | using UCsoft.Dao; 9 | using UCsoft.Data; 10 | using UCsoft.Entity; 11 | 12 | namespace UCsoft.Service.Impl 13 | { 14 | public interface VAppCompanyServiceImpl:IViewDao 15 | { 16 | 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /UCsoft.Service/Impl/VCompanyUserServiceImpl.cs: -------------------------------------------------------------------------------- 1 |  2 | 3 | using System; 4 | using System.Collections.Generic; 5 | using System.Linq; 6 | using System.Linq.Expressions; 7 | using NLite.Data; 8 | using UCsoft.Dao; 9 | using UCsoft.Data; 10 | using UCsoft.Entity; 11 | 12 | namespace UCsoft.Service.Impl 13 | { 14 | public interface VCompanyUserServiceImpl:IViewDao 15 | { 16 | 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /UCsoft.Service/Impl/VCustomerContactServiceImpl.cs: -------------------------------------------------------------------------------- 1 |  2 | 3 | using System; 4 | using System.Collections.Generic; 5 | using System.Linq; 6 | using System.Linq.Expressions; 7 | using NLite.Data; 8 | using UCsoft.Dao; 9 | using UCsoft.Data; 10 | using UCsoft.Entity; 11 | 12 | namespace UCsoft.Service.Impl 13 | { 14 | public interface VCustomerContactServiceImpl:IViewDao 15 | { 16 | 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /UCsoft.Service/Impl/VMyappCompanyServiceImpl.cs: -------------------------------------------------------------------------------- 1 |  2 | 3 | using System; 4 | using System.Collections.Generic; 5 | using System.Linq; 6 | using System.Linq.Expressions; 7 | using NLite.Data; 8 | using UCsoft.Dao; 9 | using UCsoft.Data; 10 | using UCsoft.Entity; 11 | 12 | namespace UCsoft.Service.Impl 13 | { 14 | public interface VMyappCompanyServiceImpl:IViewDao 15 | { 16 | 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /UCsoft.Service/Impl/VSysDepartmentServiceImpl.cs: -------------------------------------------------------------------------------- 1 |  2 | 3 | using System; 4 | using System.Collections.Generic; 5 | using System.Linq; 6 | using System.Linq.Expressions; 7 | using NLite.Data; 8 | using UCsoft.Dao; 9 | using UCsoft.Data; 10 | using UCsoft.Entity; 11 | 12 | namespace UCsoft.Service.Impl 13 | { 14 | public interface VSysDepartmentServiceImpl:IViewDao 15 | { 16 | 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /UCsoft.Service/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /UCsoft.T4/Dao/ITCusBaseDao.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * ======================================================================== 3 | * Copyright(c) 2013-2014 郑州优创科技有限公司, All Rights Reserved. 4 | * ======================================================================== 5 | * 6 | * 【表操作Dao接口】 7 | * 8 | * 9 | * 作者:唐有炜 时间:2014-11-05 18:59:49 10 | * 文件名:ITCusBaseDao 11 | * 版本:V1.0.0 12 | * 13 | * 修改者:唐有炜 时间:2014-11-05 18:59:49 14 | * 修改说明:修改说明 15 | * ======================================================================== 16 | */ 17 | using UCsoft.Entity; 18 | namespace UCsoft.Dao 19 | { 20 | public interface ITCusBaseDao:ITableDao 21 | { 22 | 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /UCsoft.T4/Dao/ITCusConDao.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * ======================================================================== 3 | * Copyright(c) 2013-2014 郑州优创科技有限公司, All Rights Reserved. 4 | * ======================================================================== 5 | * 6 | * 【表操作Dao接口】 7 | * 8 | * 9 | * 作者:唐有炜 时间:2014-11-05 18:59:49 10 | * 文件名:ITCusConDao 11 | * 版本:V1.0.0 12 | * 13 | * 修改者:唐有炜 时间:2014-11-05 18:59:49 14 | * 修改说明:修改说明 15 | * ======================================================================== 16 | */ 17 | using UCsoft.Entity; 18 | namespace UCsoft.Dao 19 | { 20 | public interface ITCusConDao:ITableDao 21 | { 22 | 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /UCsoft.T4/Dao/ITCusLogDao.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * ======================================================================== 3 | * Copyright(c) 2013-2014 郑州优创科技有限公司, All Rights Reserved. 4 | * ======================================================================== 5 | * 6 | * 【表操作Dao接口】 7 | * 8 | * 9 | * 作者:唐有炜 时间:2014-11-05 18:59:49 10 | * 文件名:ITCusLogDao 11 | * 版本:V1.0.0 12 | * 13 | * 修改者:唐有炜 时间:2014-11-05 18:59:49 14 | * 修改说明:修改说明 15 | * ======================================================================== 16 | */ 17 | using UCsoft.Entity; 18 | namespace UCsoft.Dao 19 | { 20 | public interface ITCusLogDao:ITableDao 21 | { 22 | 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /UCsoft.T4/Dao/ITFunAppCompanyDao.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * ======================================================================== 3 | * Copyright(c) 2013-2014 郑州优创科技有限公司, All Rights Reserved. 4 | * ======================================================================== 5 | * 6 | * 【表操作Dao接口】 7 | * 8 | * 9 | * 作者:唐有炜 时间:2014-11-05 18:59:49 10 | * 文件名:ITFunAppCompanyDao 11 | * 版本:V1.0.0 12 | * 13 | * 修改者:唐有炜 时间:2014-11-05 18:59:49 14 | * 修改说明:修改说明 15 | * ======================================================================== 16 | */ 17 | using UCsoft.Entity; 18 | namespace UCsoft.Dao 19 | { 20 | public interface ITFunAppCompanyDao:ITableDao 21 | { 22 | 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /UCsoft.T4/Dao/ITFunAppDao.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * ======================================================================== 3 | * Copyright(c) 2013-2014 郑州优创科技有限公司, All Rights Reserved. 4 | * ======================================================================== 5 | * 6 | * 【表操作Dao接口】 7 | * 8 | * 9 | * 作者:唐有炜 时间:2014-11-05 18:59:49 10 | * 文件名:ITFunAppDao 11 | * 版本:V1.0.0 12 | * 13 | * 修改者:唐有炜 时间:2014-11-05 18:59:49 14 | * 修改说明:修改说明 15 | * ======================================================================== 16 | */ 17 | using UCsoft.Entity; 18 | namespace UCsoft.Dao 19 | { 20 | public interface ITFunAppDao:ITableDao 21 | { 22 | 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /UCsoft.T4/Dao/ITFunExpandDao.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * ======================================================================== 3 | * Copyright(c) 2013-2014 郑州优创科技有限公司, All Rights Reserved. 4 | * ======================================================================== 5 | * 6 | * 【表操作Dao接口】 7 | * 8 | * 9 | * 作者:唐有炜 时间:2014-11-05 18:59:49 10 | * 文件名:ITFunExpandDao 11 | * 版本:V1.0.0 12 | * 13 | * 修改者:唐有炜 时间:2014-11-05 18:59:49 14 | * 修改说明:修改说明 15 | * ======================================================================== 16 | */ 17 | using UCsoft.Entity; 18 | namespace UCsoft.Dao 19 | { 20 | public interface ITFunExpandDao:ITableDao 21 | { 22 | 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /UCsoft.T4/Dao/ITFunFilterDao.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * ======================================================================== 3 | * Copyright(c) 2013-2014 郑州优创科技有限公司, All Rights Reserved. 4 | * ======================================================================== 5 | * 6 | * 【表操作Dao接口】 7 | * 8 | * 9 | * 作者:唐有炜 时间:2014-11-05 18:59:49 10 | * 文件名:ITFunFilterDao 11 | * 版本:V1.0.0 12 | * 13 | * 修改者:唐有炜 时间:2014-11-05 18:59:49 14 | * 修改说明:修改说明 15 | * ======================================================================== 16 | */ 17 | using UCsoft.Entity; 18 | namespace UCsoft.Dao 19 | { 20 | public interface ITFunFilterDao:ITableDao 21 | { 22 | 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /UCsoft.T4/Dao/ITFunMyappCompanyDao.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * ======================================================================== 3 | * Copyright(c) 2013-2014 郑州优创科技有限公司, All Rights Reserved. 4 | * ======================================================================== 5 | * 6 | * 【表操作Dao接口】 7 | * 8 | * 9 | * 作者:唐有炜 时间:2014-11-05 18:59:49 10 | * 文件名:ITFunMyappCompanyDao 11 | * 版本:V1.0.0 12 | * 13 | * 修改者:唐有炜 时间:2014-11-05 18:59:49 14 | * 修改说明:修改说明 15 | * ======================================================================== 16 | */ 17 | using UCsoft.Entity; 18 | namespace UCsoft.Dao 19 | { 20 | public interface ITFunMyappCompanyDao:ITableDao 21 | { 22 | 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /UCsoft.T4/Dao/ITFunMyappDao.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * ======================================================================== 3 | * Copyright(c) 2013-2014 郑州优创科技有限公司, All Rights Reserved. 4 | * ======================================================================== 5 | * 6 | * 【表操作Dao接口】 7 | * 8 | * 9 | * 作者:唐有炜 时间:2014-11-05 18:59:49 10 | * 文件名:ITFunMyappDao 11 | * 版本:V1.0.0 12 | * 13 | * 修改者:唐有炜 时间:2014-11-05 18:59:49 14 | * 修改说明:修改说明 15 | * ======================================================================== 16 | */ 17 | using UCsoft.Entity; 18 | namespace UCsoft.Dao 19 | { 20 | public interface ITFunMyappDao:ITableDao 21 | { 22 | 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /UCsoft.T4/Dao/ITFunOperatingDao.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * ======================================================================== 3 | * Copyright(c) 2013-2014 郑州优创科技有限公司, All Rights Reserved. 4 | * ======================================================================== 5 | * 6 | * 【表操作Dao接口】 7 | * 8 | * 9 | * 作者:唐有炜 时间:2014-11-05 18:59:49 10 | * 文件名:ITFunOperatingDao 11 | * 版本:V1.0.0 12 | * 13 | * 修改者:唐有炜 时间:2014-11-05 18:59:49 14 | * 修改说明:修改说明 15 | * ======================================================================== 16 | */ 17 | using UCsoft.Entity; 18 | namespace UCsoft.Dao 19 | { 20 | public interface ITFunOperatingDao:ITableDao 21 | { 22 | 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /UCsoft.T4/Dao/ITFunTagDao.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * ======================================================================== 3 | * Copyright(c) 2013-2014 郑州优创科技有限公司, All Rights Reserved. 4 | * ======================================================================== 5 | * 6 | * 【表操作Dao接口】 7 | * 8 | * 9 | * 作者:唐有炜 时间:2014-11-05 18:59:49 10 | * 文件名:ITFunTagDao 11 | * 版本:V1.0.0 12 | * 13 | * 修改者:唐有炜 时间:2014-11-05 18:59:49 14 | * 修改说明:修改说明 15 | * ======================================================================== 16 | */ 17 | using UCsoft.Entity; 18 | namespace UCsoft.Dao 19 | { 20 | public interface ITFunTagDao:ITableDao 21 | { 22 | 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /UCsoft.T4/Dao/ITSysCompanyDao.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * ======================================================================== 3 | * Copyright(c) 2013-2014 郑州优创科技有限公司, All Rights Reserved. 4 | * ======================================================================== 5 | * 6 | * 【表操作Dao接口】 7 | * 8 | * 9 | * 作者:唐有炜 时间:2014-11-05 18:59:49 10 | * 文件名:ITSysCompanyDao 11 | * 版本:V1.0.0 12 | * 13 | * 修改者:唐有炜 时间:2014-11-05 18:59:49 14 | * 修改说明:修改说明 15 | * ======================================================================== 16 | */ 17 | using UCsoft.Entity; 18 | namespace UCsoft.Dao 19 | { 20 | public interface ITSysCompanyDao:ITableDao 21 | { 22 | 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /UCsoft.T4/Dao/ITSysDepartmentDao.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * ======================================================================== 3 | * Copyright(c) 2013-2014 郑州优创科技有限公司, All Rights Reserved. 4 | * ======================================================================== 5 | * 6 | * 【表操作Dao接口】 7 | * 8 | * 9 | * 作者:唐有炜 时间:2014-11-05 18:59:49 10 | * 文件名:ITSysDepartmentDao 11 | * 版本:V1.0.0 12 | * 13 | * 修改者:唐有炜 时间:2014-11-05 18:59:49 14 | * 修改说明:修改说明 15 | * ======================================================================== 16 | */ 17 | using UCsoft.Entity; 18 | namespace UCsoft.Dao 19 | { 20 | public interface ITSysDepartmentDao:ITableDao 21 | { 22 | 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /UCsoft.T4/Dao/ITSysLogDao.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * ======================================================================== 3 | * Copyright(c) 2013-2014 郑州优创科技有限公司, All Rights Reserved. 4 | * ======================================================================== 5 | * 6 | * 【表操作Dao接口】 7 | * 8 | * 9 | * 作者:唐有炜 时间:2014-11-05 18:59:49 10 | * 文件名:ITSysLogDao 11 | * 版本:V1.0.0 12 | * 13 | * 修改者:唐有炜 时间:2014-11-05 18:59:49 14 | * 修改说明:修改说明 15 | * ======================================================================== 16 | */ 17 | using UCsoft.Entity; 18 | namespace UCsoft.Dao 19 | { 20 | public interface ITSysLogDao:ITableDao 21 | { 22 | 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /UCsoft.T4/Dao/ITSysPowerDao.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * ======================================================================== 3 | * Copyright(c) 2013-2014 郑州优创科技有限公司, All Rights Reserved. 4 | * ======================================================================== 5 | * 6 | * 【表操作Dao接口】 7 | * 8 | * 9 | * 作者:唐有炜 时间:2014-11-05 18:59:49 10 | * 文件名:ITSysPowerDao 11 | * 版本:V1.0.0 12 | * 13 | * 修改者:唐有炜 时间:2014-11-05 18:59:49 14 | * 修改说明:修改说明 15 | * ======================================================================== 16 | */ 17 | using UCsoft.Entity; 18 | namespace UCsoft.Dao 19 | { 20 | public interface ITSysPowerDao:ITableDao 21 | { 22 | 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /UCsoft.T4/Dao/ITSysRoleDao.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * ======================================================================== 3 | * Copyright(c) 2013-2014 郑州优创科技有限公司, All Rights Reserved. 4 | * ======================================================================== 5 | * 6 | * 【表操作Dao接口】 7 | * 8 | * 9 | * 作者:唐有炜 时间:2014-11-05 18:59:49 10 | * 文件名:ITSysRoleDao 11 | * 版本:V1.0.0 12 | * 13 | * 修改者:唐有炜 时间:2014-11-05 18:59:49 14 | * 修改说明:修改说明 15 | * ======================================================================== 16 | */ 17 | using UCsoft.Entity; 18 | namespace UCsoft.Dao 19 | { 20 | public interface ITSysRoleDao:ITableDao 21 | { 22 | 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /UCsoft.T4/Dao/ITSysUserDao.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * ======================================================================== 3 | * Copyright(c) 2013-2014 郑州优创科技有限公司, All Rights Reserved. 4 | * ======================================================================== 5 | * 6 | * 【表操作Dao接口】 7 | * 8 | * 9 | * 作者:唐有炜 时间:2014-11-05 18:59:49 10 | * 文件名:ITSysUserDao 11 | * 版本:V1.0.0 12 | * 13 | * 修改者:唐有炜 时间:2014-11-05 18:59:49 14 | * 修改说明:修改说明 15 | * ======================================================================== 16 | */ 17 | using UCsoft.Entity; 18 | namespace UCsoft.Dao 19 | { 20 | public interface ITSysUserDao:ITableDao 21 | { 22 | 23 | } 24 | } 25 | 26 | -------------------------------------------------------------------------------- /UCsoft.T4/Dao/IVAppCompanyDao.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * ======================================================================== 3 | * Copyright(c) 2013-2014 郑州优创科技有限公司, All Rights Reserved. 4 | * ======================================================================== 5 | * 6 | * 【视图操作Dao接口】 7 | * 8 | * 9 | * 作者:唐有炜 时间:2014-11-05 18:59:49 10 | * 文件名:IVAppCompanyDao 11 | * 版本:V1.0.0 12 | * 13 | * 修改者:唐有炜 时间:2014-11-05 18:59:49 14 | * 修改说明:修改说明 15 | * ======================================================================== 16 | */ 17 | using UCsoft.Entity; 18 | namespace UCsoft.Dao 19 | { 20 | public interface IVAppCompanyDao:IViewDao 21 | { 22 | 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /UCsoft.T4/Dao/IVCompanyUserDao.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * ======================================================================== 3 | * Copyright(c) 2013-2014 郑州优创科技有限公司, All Rights Reserved. 4 | * ======================================================================== 5 | * 6 | * 【视图操作Dao接口】 7 | * 8 | * 9 | * 作者:唐有炜 时间:2014-11-05 18:59:49 10 | * 文件名:IVCompanyUserDao 11 | * 版本:V1.0.0 12 | * 13 | * 修改者:唐有炜 时间:2014-11-05 18:59:49 14 | * 修改说明:修改说明 15 | * ======================================================================== 16 | */ 17 | using UCsoft.Entity; 18 | namespace UCsoft.Dao 19 | { 20 | public interface IVCompanyUserDao:IViewDao 21 | { 22 | 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /UCsoft.T4/Dao/IVCustomerContactDao.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * ======================================================================== 3 | * Copyright(c) 2013-2014 郑州优创科技有限公司, All Rights Reserved. 4 | * ======================================================================== 5 | * 6 | * 【视图操作Dao接口】 7 | * 8 | * 9 | * 作者:唐有炜 时间:2014-11-05 18:59:49 10 | * 文件名:IVCustomerContactDao 11 | * 版本:V1.0.0 12 | * 13 | * 修改者:唐有炜 时间:2014-11-05 18:59:49 14 | * 修改说明:修改说明 15 | * ======================================================================== 16 | */ 17 | using UCsoft.Entity; 18 | namespace UCsoft.Dao 19 | { 20 | public interface IVCustomerContactDao:IViewDao 21 | { 22 | 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /UCsoft.T4/Dao/IVMyappCompanyDao.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * ======================================================================== 3 | * Copyright(c) 2013-2014 郑州优创科技有限公司, All Rights Reserved. 4 | * ======================================================================== 5 | * 6 | * 【视图操作Dao接口】 7 | * 8 | * 9 | * 作者:唐有炜 时间:2014-11-05 18:59:49 10 | * 文件名:IVMyappCompanyDao 11 | * 版本:V1.0.0 12 | * 13 | * 修改者:唐有炜 时间:2014-11-05 18:59:49 14 | * 修改说明:修改说明 15 | * ======================================================================== 16 | */ 17 | using UCsoft.Entity; 18 | namespace UCsoft.Dao 19 | { 20 | public interface IVMyappCompanyDao:IViewDao 21 | { 22 | 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /UCsoft.T4/Dao/IVSysDepartmentDao.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * ======================================================================== 3 | * Copyright(c) 2013-2014 郑州优创科技有限公司, All Rights Reserved. 4 | * ======================================================================== 5 | * 6 | * 【视图操作Dao接口】 7 | * 8 | * 9 | * 作者:唐有炜 时间:2014-11-05 18:59:49 10 | * 文件名:IVSysDepartmentDao 11 | * 版本:V1.0.0 12 | * 13 | * 修改者:唐有炜 时间:2014-11-05 18:59:49 14 | * 修改说明:修改说明 15 | * ======================================================================== 16 | */ 17 | using UCsoft.Entity; 18 | namespace UCsoft.Dao 19 | { 20 | public interface IVSysDepartmentDao:IViewDao 21 | { 22 | 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /UCsoft.T4/Dao/Impl/UCDaoImpl.cs: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /UCsoft.T4/Dao/UCIDao.cs: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /UCsoft.T4/Data/Access/.svn/entries: -------------------------------------------------------------------------------- 1 | 10 2 | 3 | dir 4 | 0 5 | https://ndo.svn.codeplex.com/svn/Db/Access 6 | https://ndo.svn.codeplex.com/svn 7 | add 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 4ef1bfeb-0a34-4d02-9305-240e5b07a168 28 | 29 | AccessDB.accdb 30 | file 31 | 32 | 33 | 34 | add 35 | 36 | 37 | 38 | 39 | 40 | has-props 41 | has-prop-mods 42 | 43 | DateTime.accdb 44 | file 45 | 46 | 47 | 48 | add 49 | 50 | 51 | 52 | 53 | 54 | has-props 55 | has-prop-mods 56 | 57 | DateTimeTest.accdb 58 | file 59 | 60 | 61 | 62 | add 63 | 64 | 65 | 66 | 67 | 68 | has-props 69 | has-prop-mods 70 | 71 | users.accdb 72 | file 73 | 74 | 75 | 76 | add 77 | 78 | 79 | 80 | 81 | 82 | has-props 83 | has-prop-mods 84 | 85 | Northwind.mdb 86 | file 87 | 88 | 89 | 90 | add 91 | 92 | 93 | 94 | 95 | 96 | has-props 97 | has-prop-mods 98 | 99 | AccessDB.laccdb 100 | file 101 | 102 | 103 | 104 | add 105 | 106 | 107 | 108 | 109 | 110 | has-props 111 | has-prop-mods 112 | 113 | -------------------------------------------------------------------------------- /UCsoft.T4/Data/Access/.svn/props/AccessDB.accdb.svn-work: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /UCsoft.T4/Data/Access/.svn/props/AccessDB.laccdb.svn-work: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /UCsoft.T4/Data/Access/.svn/props/DateTime.accdb.svn-work: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /UCsoft.T4/Data/Access/.svn/props/DateTimeTest.accdb.svn-work: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /UCsoft.T4/Data/Access/.svn/props/Northwind.mdb.svn-work: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /UCsoft.T4/Data/Access/.svn/props/users.accdb.svn-work: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /UCsoft.T4/Data/Access/.svn/tmp/text-base/Northwind.mdb.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.T4/Data/Access/.svn/tmp/text-base/Northwind.mdb.svn-base -------------------------------------------------------------------------------- /UCsoft.T4/Data/Access/AccessDB.accdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.T4/Data/Access/AccessDB.accdb -------------------------------------------------------------------------------- /UCsoft.T4/Data/Access/AccessDB.laccdb: -------------------------------------------------------------------------------- 1 | WIN7U-20120306F Admin -------------------------------------------------------------------------------- /UCsoft.T4/Data/Access/DateTime.accdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.T4/Data/Access/DateTime.accdb -------------------------------------------------------------------------------- /UCsoft.T4/Data/Access/DateTimeTest.accdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.T4/Data/Access/DateTimeTest.accdb -------------------------------------------------------------------------------- /UCsoft.T4/Data/Access/Northwind.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.T4/Data/Access/Northwind.mdb -------------------------------------------------------------------------------- /UCsoft.T4/Data/Access/users.accdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.T4/Data/Access/users.accdb -------------------------------------------------------------------------------- /UCsoft.T4/Data/SQLite/.svn/entries: -------------------------------------------------------------------------------- 1 | 10 2 | 3 | dir 4 | 0 5 | https://ndo.svn.codeplex.com/svn/Db/SQLite 6 | https://ndo.svn.codeplex.com/svn 7 | add 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 4ef1bfeb-0a34-4d02-9305-240e5b07a168 28 | 29 | SQLite.db 30 | file 31 | 32 | 33 | 34 | add 35 | 36 | 37 | 38 | 39 | 40 | has-props 41 | has-prop-mods 42 | 43 | SqliteTest.db 44 | file 45 | 46 | 47 | 48 | add 49 | 50 | 51 | 52 | 53 | 54 | has-props 55 | has-prop-mods 56 | 57 | SqliteDB.db 58 | file 59 | 60 | 61 | 62 | add 63 | 64 | 65 | 66 | 67 | 68 | has-props 69 | has-prop-mods 70 | 71 | Northwind.sl3 72 | file 73 | 74 | 75 | 76 | add 77 | 78 | 79 | 80 | 81 | 82 | has-props 83 | has-prop-mods 84 | 85 | -------------------------------------------------------------------------------- /UCsoft.T4/Data/SQLite/.svn/props/Northwind.sl3.svn-work: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /UCsoft.T4/Data/SQLite/.svn/props/SQLite.db.svn-work: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /UCsoft.T4/Data/SQLite/.svn/props/SqliteDB.db.svn-work: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /UCsoft.T4/Data/SQLite/.svn/props/SqliteTest.db.svn-work: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /UCsoft.T4/Data/SQLite/Northwind.sl3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.T4/Data/SQLite/Northwind.sl3 -------------------------------------------------------------------------------- /UCsoft.T4/Data/SQLite/SQLite.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.T4/Data/SQLite/SQLite.db -------------------------------------------------------------------------------- /UCsoft.T4/Data/SQLite/SqliteDB.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.T4/Data/SQLite/SqliteDB.db -------------------------------------------------------------------------------- /UCsoft.T4/Data/SQLite/SqliteTest.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.T4/Data/SQLite/SqliteTest.db -------------------------------------------------------------------------------- /UCsoft.T4/Data/SqlCE/.svn/entries: -------------------------------------------------------------------------------- 1 | 10 2 | 3 | dir 4 | 0 5 | https://ndo.svn.codeplex.com/svn/Db/SqlCE 6 | https://ndo.svn.codeplex.com/svn 7 | add 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 4ef1bfeb-0a34-4d02-9305-240e5b07a168 28 | 29 | Northwind.sdf 30 | file 31 | 32 | 33 | 34 | add 35 | 36 | 37 | 38 | 39 | 40 | has-props 41 | has-prop-mods 42 | 43 | TypeInfo.sdf 44 | file 45 | 46 | 47 | 48 | add 49 | 50 | 51 | 52 | 53 | 54 | has-props 55 | has-prop-mods 56 | 57 | -------------------------------------------------------------------------------- /UCsoft.T4/Data/SqlCE/.svn/props/Northwind.sdf.svn-work: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /UCsoft.T4/Data/SqlCE/.svn/props/TypeInfo.sdf.svn-work: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /UCsoft.T4/Data/SqlCE/Northwind.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.T4/Data/SqlCE/Northwind.sdf -------------------------------------------------------------------------------- /UCsoft.T4/Data/SqlCE/TypeInfo.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.T4/Data/SqlCE/TypeInfo.sdf -------------------------------------------------------------------------------- /UCsoft.T4/Entity/TCusLog.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * ======================================================================== 3 | * Copyright(c) 2013-2014 郑州优创科技有限公司, All Rights Reserved. 4 | * ======================================================================== 5 | * 6 | * 【实体类】 7 | * 8 | * 9 | * 作者:唐有炜 时间:2014-11-05 18:10:48 10 | * 文件名:TCusLog 11 | * 版本:V1.0.0 12 | * 13 | * 修改者:唐有炜 时间:2014-11-05 18:10:48 14 | * 修改说明:修改说明 15 | * ======================================================================== 16 | */ 17 | using System; 18 | using System.Collections.Generic; 19 | using System.Linq; 20 | using NLite.Data; 21 | namespace UCsoft.Entity 22 | { 23 | [Table("T_cus_log")] 24 | public partial class TCusLog 25 | { 26 | 27 | [Id("id",IsDbGenerated=true)] 28 | public Int32 Id { get;set; } 29 | 30 | [Column("cus_id")] 31 | public Int32 CusId { get;set; } 32 | [Column("cus_type")] 33 | public String CusType { get;set; } 34 | [Column("cus_info")] 35 | public String CusInfo { get;set; } 36 | [Column("user_id")] 37 | public Int32? UserId { get;set; } 38 | [Column("cus_addtime")] 39 | public DateTime CusAddtime { get;set; } 40 | 41 | 42 | 43 | } 44 | 45 | } 46 | 47 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /UCsoft.T4/Entity/TFunAppCompany.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * ======================================================================== 3 | * Copyright(c) 2013-2014 郑州优创科技有限公司, All Rights Reserved. 4 | * ======================================================================== 5 | * 6 | * 【实体类】 7 | * 8 | * 9 | * 作者:唐有炜 时间:2014-11-05 18:10:48 10 | * 文件名:TFunAppCompany 11 | * 版本:V1.0.0 12 | * 13 | * 修改者:唐有炜 时间:2014-11-05 18:10:48 14 | * 修改说明:修改说明 15 | * ======================================================================== 16 | */ 17 | using System; 18 | using System.Collections.Generic; 19 | using System.Linq; 20 | using NLite.Data; 21 | namespace UCsoft.Entity 22 | { 23 | [Table("T_fun_app_company")] 24 | public partial class TFunAppCompany 25 | { 26 | 27 | [Id("id",IsDbGenerated=true)] 28 | public Int32 Id { get;set; } 29 | 30 | [Column("comp_num")] 31 | public String CompNum { get;set; } 32 | [Column("app_id")] 33 | public Int32? AppId { get;set; } 34 | [Column("app_is_menu")] 35 | public Int32? AppIsMenu { get;set; } 36 | [Column("app_lastdate")] 37 | public DateTime? AppLastdate { get;set; } 38 | 39 | 40 | 41 | } 42 | 43 | } 44 | 45 | 46 | 47 | 48 | -------------------------------------------------------------------------------- /UCsoft.T4/Entity/TFunMyappCompany.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * ======================================================================== 3 | * Copyright(c) 2013-2014 郑州优创科技有限公司, All Rights Reserved. 4 | * ======================================================================== 5 | * 6 | * 【实体类】 7 | * 8 | * 9 | * 作者:唐有炜 时间:2014-11-05 18:10:48 10 | * 文件名:TFunMyappCompany 11 | * 版本:V1.0.0 12 | * 13 | * 修改者:唐有炜 时间:2014-11-05 18:10:48 14 | * 修改说明:修改说明 15 | * ======================================================================== 16 | */ 17 | using System; 18 | using System.Collections.Generic; 19 | using System.Linq; 20 | using NLite.Data; 21 | namespace UCsoft.Entity 22 | { 23 | [Table("T_fun_myapp_company")] 24 | public partial class TFunMyappCompany 25 | { 26 | 27 | [Id("id",IsDbGenerated=true)] 28 | public Int32 Id { get;set; } 29 | 30 | [Column("comp_num")] 31 | public String CompNum { get;set; } 32 | [Column("myapp_id")] 33 | public Int32 MyappId { get;set; } 34 | 35 | 36 | 37 | } 38 | 39 | } 40 | 41 | 42 | 43 | 44 | -------------------------------------------------------------------------------- /UCsoft.T4/Entity/TFunTag.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * ======================================================================== 3 | * Copyright(c) 2013-2014 郑州优创科技有限公司, All Rights Reserved. 4 | * ======================================================================== 5 | * 6 | * 【实体类】 7 | * 8 | * 9 | * 作者:唐有炜 时间:2014-11-05 18:10:48 10 | * 文件名:TFunTag 11 | * 版本:V1.0.0 12 | * 13 | * 修改者:唐有炜 时间:2014-11-05 18:10:48 14 | * 修改说明:修改说明 15 | * ======================================================================== 16 | */ 17 | using System; 18 | using System.Collections.Generic; 19 | using System.Linq; 20 | using NLite.Data; 21 | namespace UCsoft.Entity 22 | { 23 | [Table("T_fun_tags")] 24 | public partial class TFunTag 25 | { 26 | 27 | [Id("id",IsDbGenerated=false)] 28 | public Int32 Id { get;set; } 29 | 30 | [Column("myapp_id")] 31 | public Int32 MyappId { get;set; } 32 | [Column("tag_name")] 33 | public String TagName { get;set; } 34 | [Column("tag_value")] 35 | public String TagValue { get;set; } 36 | [Column("tag_color")] 37 | public String TagColor { get;set; } 38 | 39 | [ManyToOne(ThisKey="MyappId",OtherKey="Id")] 40 | public TFunMyapp Myapp { get;set; } 41 | 42 | 43 | } 44 | 45 | } 46 | 47 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /UCsoft.T4/Entity/TSysCompany.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * ======================================================================== 3 | * Copyright(c) 2013-2014 郑州优创科技有限公司, All Rights Reserved. 4 | * ======================================================================== 5 | * 6 | * 【实体类】 7 | * 8 | * 9 | * 作者:唐有炜 时间:2014-11-05 18:10:48 10 | * 文件名:TSysCompany 11 | * 版本:V1.0.0 12 | * 13 | * 修改者:唐有炜 时间:2014-11-05 18:10:48 14 | * 修改说明:修改说明 15 | * ======================================================================== 16 | */ 17 | using System; 18 | using System.Collections.Generic; 19 | using System.Linq; 20 | using NLite.Data; 21 | namespace UCsoft.Entity 22 | { 23 | [Table("T_sys_company")] 24 | public partial class TSysCompany 25 | { 26 | 27 | [Id("id",IsDbGenerated=true)] 28 | public Int32 Id { get;set; } 29 | 30 | [Id("comp_num",IsDbGenerated=false)] 31 | public String CompNum { get;set; } 32 | 33 | [Column("comp_tname")] 34 | public String CompTname { get;set; } 35 | 36 | 37 | 38 | } 39 | 40 | } 41 | 42 | 43 | 44 | 45 | -------------------------------------------------------------------------------- /UCsoft.T4/Entity/TSysLog.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * ======================================================================== 3 | * Copyright(c) 2013-2014 郑州优创科技有限公司, All Rights Reserved. 4 | * ======================================================================== 5 | * 6 | * 【实体类】 7 | * 8 | * 9 | * 作者:唐有炜 时间:2014-11-05 18:10:48 10 | * 文件名:TSysLog 11 | * 版本:V1.0.0 12 | * 13 | * 修改者:唐有炜 时间:2014-11-05 18:10:48 14 | * 修改说明:修改说明 15 | * ======================================================================== 16 | */ 17 | using System; 18 | using System.Collections.Generic; 19 | using System.Linq; 20 | using NLite.Data; 21 | namespace UCsoft.Entity 22 | { 23 | [Table("T_sys_log")] 24 | public partial class TSysLog 25 | { 26 | 27 | [Id("id",IsDbGenerated=true)] 28 | public Int32 Id { get;set; } 29 | 30 | [Column("user_id")] 31 | public Int32 UserId { get;set; } 32 | [Column("user_lname")] 33 | public String UserLname { get;set; } 34 | [Column("log_action")] 35 | public String LogAction { get;set; } 36 | [Column("log_remark")] 37 | public String LogRemark { get;set; } 38 | [Column("log_ip")] 39 | public String LogIp { get;set; } 40 | [Column("log_place")] 41 | public String LogPlace { get;set; } 42 | [Column("log_time")] 43 | public DateTime? LogTime { get;set; } 44 | 45 | 46 | 47 | } 48 | 49 | } 50 | 51 | 52 | 53 | 54 | -------------------------------------------------------------------------------- /UCsoft.T4/Entity/TSysPower.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * ======================================================================== 3 | * Copyright(c) 2013-2014 郑州优创科技有限公司, All Rights Reserved. 4 | * ======================================================================== 5 | * 6 | * 【实体类】 7 | * 8 | * 9 | * 作者:唐有炜 时间:2014-11-05 18:10:48 10 | * 文件名:TSysPower 11 | * 版本:V1.0.0 12 | * 13 | * 修改者:唐有炜 时间:2014-11-05 18:10:48 14 | * 修改说明:修改说明 15 | * ======================================================================== 16 | */ 17 | using System; 18 | using System.Collections.Generic; 19 | using System.Linq; 20 | using NLite.Data; 21 | namespace UCsoft.Entity 22 | { 23 | [Table("T_sys_power")] 24 | public partial class TSysPower 25 | { 26 | 27 | [Id("id",IsDbGenerated=true)] 28 | public Int32 Id { get;set; } 29 | 30 | [Column("role_id")] 31 | public Int32? RoleId { get;set; } 32 | [Column("module")] 33 | public Int32 Module { get;set; } 34 | [Column("power_nav")] 35 | public String PowerNav { get;set; } 36 | [Column("power_action")] 37 | public String PowerAction { get;set; } 38 | 39 | 40 | 41 | } 42 | 43 | } 44 | 45 | 46 | 47 | 48 | -------------------------------------------------------------------------------- /UCsoft.T4/Entity/TSysRole.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * ======================================================================== 3 | * Copyright(c) 2013-2014 郑州优创科技有限公司, All Rights Reserved. 4 | * ======================================================================== 5 | * 6 | * 【实体类】 7 | * 8 | * 9 | * 作者:唐有炜 时间:2014-11-05 18:10:48 10 | * 文件名:TSysRole 11 | * 版本:V1.0.0 12 | * 13 | * 修改者:唐有炜 时间:2014-11-05 18:10:48 14 | * 修改说明:修改说明 15 | * ======================================================================== 16 | */ 17 | using System; 18 | using System.Collections.Generic; 19 | using System.Linq; 20 | using NLite.Data; 21 | namespace UCsoft.Entity 22 | { 23 | [Table("T_sys_role")] 24 | public partial class TSysRole 25 | { 26 | 27 | [Id("id",IsDbGenerated=true)] 28 | public Int32 Id { get;set; } 29 | 30 | [Column("comp_num")] 31 | public String CompNum { get;set; } 32 | [Column("role_name")] 33 | public String RoleName { get;set; } 34 | [Column("role_type")] 35 | public Int32 RoleType { get;set; } 36 | [Column("role_issys")] 37 | public Int32 RoleIssys { get;set; } 38 | [Column("role_order")] 39 | public Int32? RoleOrder { get;set; } 40 | [Column("role_desc")] 41 | public String RoleDesc { get;set; } 42 | 43 | 44 | 45 | } 46 | 47 | } 48 | 49 | 50 | 51 | 52 | -------------------------------------------------------------------------------- /UCsoft.T4/Entity/VMyappCompany.cs: -------------------------------------------------------------------------------- 1 |  2 | using System; 3 | using System.Collections.Generic; 4 | using System.Linq; 5 | using NLite.Data; 6 | namespace UCsoft.Entity 7 | { 8 | 9 | [Table("V_myapp_company",Readonly=true)] 10 | public partial class VMyappCompany 11 | { 12 | [Column("id")] 13 | public Int32 Id { get;set; } 14 | 15 | 16 | [Column("comp_num")] 17 | public String CompNum { get;set; } 18 | 19 | 20 | [Column("app_id")] 21 | public Int32 AppId { get;set; } 22 | 23 | 24 | [Column("myapp_name")] 25 | public String MyappName { get;set; } 26 | 27 | 28 | [Column("myapp_link")] 29 | public String MyappLink { get;set; } 30 | 31 | 32 | [Column("myapp_note")] 33 | public String MyappNote { get;set; } 34 | 35 | 36 | [Column("myapp_action")] 37 | public String MyappAction { get;set; } 38 | 39 | 40 | [Column("myapp_date")] 41 | public String MyappDate { get;set; } 42 | 43 | 44 | [Column("myapp_is_nav")] 45 | public Int32 MyappIsNav { get;set; } 46 | 47 | 48 | [Column("myapp_is_sys")] 49 | public Int32 MyappIsSys { get;set; } 50 | 51 | 52 | [Column("myapp_base_table")] 53 | public String MyappBaseTable { get;set; } 54 | 55 | 56 | [Column("myapp_is_show")] 57 | public Int32 MyappIsShow { get;set; } 58 | 59 | 60 | 61 | 62 | 63 | } 64 | 65 | } 66 | 67 | 68 | 69 | 70 | -------------------------------------------------------------------------------- /UCsoft.T4/Entity/VSysDepartment.cs: -------------------------------------------------------------------------------- 1 |  2 | using System; 3 | using System.Collections.Generic; 4 | using System.Linq; 5 | using NLite.Data; 6 | namespace UCsoft.Entity 7 | { 8 | 9 | [Table("V_sys_department",Readonly=true)] 10 | public partial class VSysDepartment 11 | { 12 | [Column("id")] 13 | public Int32 Id { get;set; } 14 | 15 | 16 | [Column("parent_id")] 17 | public Int32 ParentId { get;set; } 18 | 19 | 20 | [Column("parent_name")] 21 | public String ParentName { get;set; } 22 | 23 | 24 | [Column("comp_num")] 25 | public String CompNum { get;set; } 26 | 27 | 28 | [Column("dep_name")] 29 | public String DepName { get;set; } 30 | 31 | 32 | [Column("dep_num")] 33 | public Int32 DepNum { get;set; } 34 | 35 | 36 | [Column("create_date")] 37 | public DateTime CreateDate { get;set; } 38 | 39 | 40 | [Column("dep_order")] 41 | public Int32 DepOrder { get;set; } 42 | 43 | 44 | [Column("dep_goal")] 45 | public String DepGoal { get;set; } 46 | 47 | 48 | [Column("dep_respon")] 49 | public String DepRespon { get;set; } 50 | 51 | 52 | [Column("dep_skills")] 53 | public String DepSkills { get;set; } 54 | 55 | 56 | [Column("dep_course")] 57 | public String DepCourse { get;set; } 58 | 59 | 60 | [Column("dep_note")] 61 | public String DepNote { get;set; } 62 | 63 | 64 | 65 | 66 | 67 | } 68 | 69 | } 70 | 71 | 72 | 73 | 74 | -------------------------------------------------------------------------------- /UCsoft.T4/Service/EdIService.cs: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /UCsoft.T4/Service/IVAppCompanyService.cs: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | using System; 5 | using System.Collections.Generic; 6 | using System.Linq; 7 | using System.Linq.Expressions; 8 | using NLite.Data; 9 | using UCsoft.Dao; 10 | using UCsoft.Data; 11 | using UCsoft.Entity; 12 | 13 | 14 | namespace UCsoft.Service 15 | { 16 | public interface IVAppCompanyService:IViewDao 17 | { 18 | 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /UCsoft.T4/Service/IVCompanyUserService.cs: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | using System; 5 | using System.Collections.Generic; 6 | using System.Linq; 7 | using System.Linq.Expressions; 8 | using NLite.Data; 9 | using UCsoft.Dao; 10 | using UCsoft.Data; 11 | using UCsoft.Entity; 12 | 13 | 14 | namespace UCsoft.Service 15 | { 16 | public interface IVCompanyUserService:IViewDao 17 | { 18 | 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /UCsoft.T4/Service/IVCustomerContactService.cs: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | using System; 5 | using System.Collections.Generic; 6 | using System.Linq; 7 | using System.Linq.Expressions; 8 | using NLite.Data; 9 | using UCsoft.Dao; 10 | using UCsoft.Data; 11 | using UCsoft.Entity; 12 | 13 | 14 | namespace UCsoft.Service 15 | { 16 | public interface IVCustomerContactService:IViewDao 17 | { 18 | 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /UCsoft.T4/Service/IVMyappCompanyService.cs: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | using System; 5 | using System.Collections.Generic; 6 | using System.Linq; 7 | using System.Linq.Expressions; 8 | using NLite.Data; 9 | using UCsoft.Dao; 10 | using UCsoft.Data; 11 | using UCsoft.Entity; 12 | 13 | 14 | namespace UCsoft.Service 15 | { 16 | public interface IVMyappCompanyService:IViewDao 17 | { 18 | 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /UCsoft.T4/Service/IVSysDepartmentService.cs: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | using System; 5 | using System.Collections.Generic; 6 | using System.Linq; 7 | using System.Linq.Expressions; 8 | using NLite.Data; 9 | using UCsoft.Dao; 10 | using UCsoft.Data; 11 | using UCsoft.Entity; 12 | 13 | 14 | namespace UCsoft.Service 15 | { 16 | public interface IVSysDepartmentService:IViewDao 17 | { 18 | 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /UCsoft.T4/Service/Impl/EdServiceImpl.cs: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /UCsoft.T4/Service/Impl/VAppCompanyServiceImpl.cs: -------------------------------------------------------------------------------- 1 |  2 | 3 | using System; 4 | using System.Collections.Generic; 5 | using System.Linq; 6 | using System.Linq.Expressions; 7 | using NLite.Data; 8 | using UCsoft.Dao; 9 | using UCsoft.Data; 10 | using UCsoft.Entity; 11 | 12 | namespace UCsoft.Service.Impl 13 | { 14 | public interface VAppCompanyServiceImpl:IViewDao 15 | { 16 | 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /UCsoft.T4/Service/Impl/VCompanyUserServiceImpl.cs: -------------------------------------------------------------------------------- 1 |  2 | 3 | using System; 4 | using System.Collections.Generic; 5 | using System.Linq; 6 | using System.Linq.Expressions; 7 | using NLite.Data; 8 | using UCsoft.Dao; 9 | using UCsoft.Data; 10 | using UCsoft.Entity; 11 | 12 | namespace UCsoft.Service.Impl 13 | { 14 | public interface VCompanyUserServiceImpl:IViewDao 15 | { 16 | 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /UCsoft.T4/Service/Impl/VCustomerContactServiceImpl.cs: -------------------------------------------------------------------------------- 1 |  2 | 3 | using System; 4 | using System.Collections.Generic; 5 | using System.Linq; 6 | using System.Linq.Expressions; 7 | using NLite.Data; 8 | using UCsoft.Dao; 9 | using UCsoft.Data; 10 | using UCsoft.Entity; 11 | 12 | namespace UCsoft.Service.Impl 13 | { 14 | public interface VCustomerContactServiceImpl:IViewDao 15 | { 16 | 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /UCsoft.T4/Service/Impl/VMyappCompanyServiceImpl.cs: -------------------------------------------------------------------------------- 1 |  2 | 3 | using System; 4 | using System.Collections.Generic; 5 | using System.Linq; 6 | using System.Linq.Expressions; 7 | using NLite.Data; 8 | using UCsoft.Dao; 9 | using UCsoft.Data; 10 | using UCsoft.Entity; 11 | 12 | namespace UCsoft.Service.Impl 13 | { 14 | public interface VMyappCompanyServiceImpl:IViewDao 15 | { 16 | 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /UCsoft.T4/Service/Impl/VSysDepartmentServiceImpl.cs: -------------------------------------------------------------------------------- 1 |  2 | 3 | using System; 4 | using System.Collections.Generic; 5 | using System.Linq; 6 | using System.Linq.Expressions; 7 | using NLite.Data; 8 | using UCsoft.Dao; 9 | using UCsoft.Data; 10 | using UCsoft.Entity; 11 | 12 | namespace UCsoft.Service.Impl 13 | { 14 | public interface VSysDepartmentServiceImpl:IViewDao 15 | { 16 | 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /UCsoft.T4/Web/Configs/Objects.tt: -------------------------------------------------------------------------------- 1 | <#@ template debug="false" hostspecific="false" language="C#" #> 2 | <#@ assembly name="System.Core" #> 3 | <#@ import namespace="System.Linq" #> 4 | <#@ import namespace="System.Text" #> 5 | <#@ import namespace="System.Collections.Generic" #> 6 | <#@ output extension=".txt" #> -------------------------------------------------------------------------------- /UCsoft.T4/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /UCsoft.Web.Tests/App.config: -------------------------------------------------------------------------------- 1 |  2 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /UCsoft.Web.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // 有关程序集的常规信息通过下列特性集 6 | // 控制。更改这些特性值可修改 7 | // 与程序集关联的信息。 8 | [assembly: AssemblyTitle("UCsoft.Web.Tests")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("UCsoft.Web.Tests")] 13 | [assembly: AssemblyCopyright("版权所有(C) 2014")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // 将 ComVisible 设置为 false 会使此程序集中的类型 18 | // 对 COM 组件不可见。如果需要从 COM 访问此程序集中的某个类型, 19 | // 请针对该类型将 ComVisible 特性设置为 true。 20 | [assembly: ComVisible(false)] 21 | 22 | // 如果此项目向 COM 公开,则下列 GUID 用于类型库的 ID 23 | [assembly: Guid("8732a6f9-26a3-4bfc-9d39-ef02225490d0")] 24 | 25 | // 程序集的版本信息由下列四个值组成: 26 | // 27 | // 主版本 28 | // 次版本 29 | // 内部版本号 30 | // 修订号 31 | // 32 | // 可以指定所有这些值,也可以使用“修订号”和“内部版本号”的默认值, 33 | // 方法是按如下所示使用“*”: 34 | [assembly: AssemblyVersion("1.0.0.0")] 35 | [assembly: AssemblyFileVersion("1.0.0.0")] 36 | -------------------------------------------------------------------------------- /UCsoft.Web/App_Start/FilterConfig.cs: -------------------------------------------------------------------------------- 1 | using System.Web; 2 | using System.Web.Mvc; 3 | 4 | namespace UCsoft.Web 5 | { 6 | public class FilterConfig 7 | { 8 | public static void RegisterGlobalFilters(GlobalFilterCollection filters) 9 | { 10 | filters.Add(new HandleErrorAttribute()); 11 | } 12 | } 13 | } -------------------------------------------------------------------------------- /UCsoft.Web/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using System.Web.Mvc; 6 | using System.Web.Routing; 7 | 8 | namespace UCsoft.Web 9 | { 10 | public class RouteConfig 11 | { 12 | public static void RegisterRoutes(RouteCollection routes) 13 | { 14 | routes.IgnoreRoute("{resource}.axd/{*pathInfo}"); 15 | 16 | //设置全局默认首页 17 | routes.MapRoute( 18 | name: "Default", 19 | url: "{controller}/{action}/{id}", 20 | defaults: new { controller = "Login", action = "Index", id = UrlParameter.Optional }, 21 | namespaces: new[] { "UCsoft.Web.Areas.Account" } //默认控制器的命名空间 22 | ).DataTokens.Add("area", "Account"); //默认area 的控制器名称 23 | 24 | } 25 | } 26 | } -------------------------------------------------------------------------------- /UCsoft.Web/Areas/Account/AccountAreaRegistration.cs: -------------------------------------------------------------------------------- 1 | using System.Web.Mvc; 2 | using Microsoft.Ajax.Utilities; 3 | 4 | namespace UCsoft.Web.Areas.Account 5 | { 6 | public class AccountAreaRegistration : AreaRegistration 7 | { 8 | public override string AreaName 9 | { 10 | get 11 | { 12 | return "Account"; 13 | } 14 | } 15 | 16 | public override void RegisterArea(AreaRegistrationContext context) 17 | { 18 | context.MapRoute( 19 | "Account_default", 20 | "Account/{controller}/{action}/{id}", 21 | new { action = "Index", id = UrlParameter.Optional }, 22 | null, 23 | new[] { "UCsoft.Web.Areas.Account.Controllers" } 24 | ); 25 | } 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /UCsoft.Web/Areas/Account/Views/Login/ForgetPassword.cshtml: -------------------------------------------------------------------------------- 1 | @model dynamic 2 | 3 | @{ 4 | Layout = null; 5 | } 6 | 7 | 8 | 9 | 10 | 11 | title 12 | 13 | 14 | 26 | 27 | 28 |
29 | F 30 |
31 | 32 | -------------------------------------------------------------------------------- /UCsoft.Web/Areas/Customer/Controllers/CusBaseApiController.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Net; 5 | using System.Net.Http; 6 | using System.Web.Http; 7 | 8 | namespace UCsoft.Web.Areas.Customer.Controllers 9 | { 10 | public class CusBaseApiController : ApiController 11 | { 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /UCsoft.Web/Areas/Customer/Controllers/CusBaseController.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using System.Web.Mvc; 6 | using UCsoft.Common; 7 | 8 | namespace UCsoft.Web.Areas.Customer.Controllers 9 | { 10 | public class CusBaseController : Controller 11 | { 12 | // 13 | // GET: /Customer/CusBase/ 14 | 15 | public ActionResult List() 16 | { 17 | return View("List"); 18 | } 19 | 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /UCsoft.Web/Areas/Customer/CustomerAreaRegistration.cs: -------------------------------------------------------------------------------- 1 | using System.Web.Mvc; 2 | 3 | namespace UCsoft.Web.Areas.Customer 4 | { 5 | public class CustomerAreaRegistration : AreaRegistration 6 | { 7 | public override string AreaName 8 | { 9 | get 10 | { 11 | return "Customer"; 12 | } 13 | } 14 | 15 | public override void RegisterArea(AreaRegistrationContext context) 16 | { 17 | context.MapRoute( 18 | "Customer_default", 19 | "Customer/{controller}/{action}/{id}", 20 | new { action = "Index", id = UrlParameter.Optional } 21 | ); 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /UCsoft.Web/Areas/Customer/Views/CusBase/List.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewBag.Title = "List"; 3 | } 4 | 5 |

List

6 | -------------------------------------------------------------------------------- /UCsoft.Web/Areas/HelpPage/Content/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Areas/HelpPage/Content/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /UCsoft.Web/Areas/HelpPage/Content/themes/base/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Areas/HelpPage/Content/themes/base/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /UCsoft.Web/Areas/HelpPage/Content/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Areas/HelpPage/Content/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /UCsoft.Web/Areas/HelpPage/Content/themes/base/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Areas/HelpPage/Content/themes/base/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /UCsoft.Web/Areas/HelpPage/Content/themes/base/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Areas/HelpPage/Content/themes/base/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /UCsoft.Web/Areas/HelpPage/Content/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Areas/HelpPage/Content/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /UCsoft.Web/Areas/HelpPage/Content/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Areas/HelpPage/Content/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /UCsoft.Web/Areas/HelpPage/Content/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Areas/HelpPage/Content/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /UCsoft.Web/Areas/HelpPage/Content/themes/base/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Areas/HelpPage/Content/themes/base/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /UCsoft.Web/Areas/HelpPage/Content/themes/base/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Areas/HelpPage/Content/themes/base/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /UCsoft.Web/Areas/HelpPage/Content/themes/base/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Areas/HelpPage/Content/themes/base/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /UCsoft.Web/Areas/HelpPage/Content/themes/base/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Areas/HelpPage/Content/themes/base/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /UCsoft.Web/Areas/HelpPage/Content/themes/base/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Areas/HelpPage/Content/themes/base/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /UCsoft.Web/Areas/HelpPage/Content/themes/base/jquery.ui.accordion.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Accordion 1.8.24 3 | * 4 | * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) 5 | * Licensed under the MIT license. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Accordion#theming 9 | */ 10 | /* IE/Win - Fix animation bug - #4615 */ 11 | .ui-accordion { width: 100%; } 12 | .ui-accordion .ui-accordion-header { cursor: pointer; position: relative; margin-top: 1px; zoom: 1; } 13 | .ui-accordion .ui-accordion-li-fix { display: inline; } 14 | .ui-accordion .ui-accordion-header-active { border-bottom: 0 !important; } 15 | .ui-accordion .ui-accordion-header a { display: block; font-size: 1em; padding: .5em .5em .5em .7em; } 16 | .ui-accordion-icons .ui-accordion-header a { padding-left: 2.2em; } 17 | .ui-accordion .ui-accordion-header .ui-icon { position: absolute; left: .5em; top: 50%; margin-top: -8px; } 18 | .ui-accordion .ui-accordion-content { padding: 1em 2.2em; border-top: 0; margin-top: -2px; position: relative; top: 1px; margin-bottom: 2px; overflow: auto; display: none; zoom: 1; } 19 | .ui-accordion .ui-accordion-content-active { display: block; } 20 | -------------------------------------------------------------------------------- /UCsoft.Web/Areas/HelpPage/Content/themes/base/jquery.ui.all.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI CSS Framework 1.8.24 3 | * 4 | * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) 5 | * Licensed under the MIT license. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Theming 9 | */ 10 | @import "jquery.ui.base.css"; 11 | @import "jquery.ui.theme.css"; 12 | -------------------------------------------------------------------------------- /UCsoft.Web/Areas/HelpPage/Content/themes/base/jquery.ui.autocomplete.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Autocomplete 1.8.24 3 | * 4 | * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) 5 | * Licensed under the MIT license. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Autocomplete#theming 9 | */ 10 | .ui-autocomplete { position: absolute; cursor: default; } 11 | 12 | /* workarounds */ 13 | * html .ui-autocomplete { width:1px; } /* without this, the menu expands to 100% in IE6 */ 14 | 15 | /* 16 | * jQuery UI Menu 1.8.24 17 | * 18 | * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about) 19 | * Licensed under the MIT license. 20 | * http://jquery.org/license 21 | * 22 | * http://docs.jquery.com/UI/Menu#theming 23 | */ 24 | .ui-menu { 25 | list-style:none; 26 | padding: 2px; 27 | margin: 0; 28 | display:block; 29 | float: left; 30 | } 31 | .ui-menu .ui-menu { 32 | margin-top: -3px; 33 | } 34 | .ui-menu .ui-menu-item { 35 | margin:0; 36 | padding: 0; 37 | zoom: 1; 38 | float: left; 39 | clear: left; 40 | width: 100%; 41 | } 42 | .ui-menu .ui-menu-item a { 43 | text-decoration:none; 44 | display:block; 45 | padding:.2em .4em; 46 | line-height:1.5; 47 | zoom:1; 48 | } 49 | .ui-menu .ui-menu-item a.ui-state-hover, 50 | .ui-menu .ui-menu-item a.ui-state-active { 51 | font-weight: normal; 52 | margin: -1px; 53 | } 54 | -------------------------------------------------------------------------------- /UCsoft.Web/Areas/HelpPage/Content/themes/base/jquery.ui.base.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI CSS Framework 1.8.24 3 | * 4 | * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) 5 | * Licensed under the MIT license. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Theming 9 | */ 10 | @import url("jquery.ui.core.css"); 11 | 12 | @import url("jquery.ui.accordion.css"); 13 | @import url("jquery.ui.autocomplete.css"); 14 | @import url("jquery.ui.button.css"); 15 | @import url("jquery.ui.datepicker.css"); 16 | @import url("jquery.ui.dialog.css"); 17 | @import url("jquery.ui.progressbar.css"); 18 | @import url("jquery.ui.resizable.css"); 19 | @import url("jquery.ui.selectable.css"); 20 | @import url("jquery.ui.slider.css"); 21 | @import url("jquery.ui.tabs.css"); 22 | -------------------------------------------------------------------------------- /UCsoft.Web/Areas/HelpPage/Content/themes/base/jquery.ui.dialog.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Dialog 1.8.24 3 | * 4 | * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) 5 | * Licensed under the MIT license. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Dialog#theming 9 | */ 10 | .ui-dialog { position: absolute; padding: .2em; width: 300px; overflow: hidden; } 11 | .ui-dialog .ui-dialog-titlebar { padding: .4em 1em; position: relative; } 12 | .ui-dialog .ui-dialog-title { float: left; margin: .1em 16px .1em 0; } 13 | .ui-dialog .ui-dialog-titlebar-close { position: absolute; right: .3em; top: 50%; width: 19px; margin: -10px 0 0 0; padding: 1px; height: 18px; } 14 | .ui-dialog .ui-dialog-titlebar-close span { display: block; margin: 1px; } 15 | .ui-dialog .ui-dialog-titlebar-close:hover, .ui-dialog .ui-dialog-titlebar-close:focus { padding: 0; } 16 | .ui-dialog .ui-dialog-content { position: relative; border: 0; padding: .5em 1em; background: none; overflow: auto; zoom: 1; } 17 | .ui-dialog .ui-dialog-buttonpane { text-align: left; border-width: 1px 0 0 0; background-image: none; margin: .5em 0 0 0; padding: .3em 1em .5em .4em; } 18 | .ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset { float: right; } 19 | .ui-dialog .ui-dialog-buttonpane button { margin: .5em .4em .5em 0; cursor: pointer; } 20 | .ui-dialog .ui-resizable-se { width: 14px; height: 14px; right: 3px; bottom: 3px; } 21 | .ui-draggable .ui-dialog-titlebar { cursor: move; } 22 | -------------------------------------------------------------------------------- /UCsoft.Web/Areas/HelpPage/Content/themes/base/jquery.ui.progressbar.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Progressbar 1.8.24 3 | * 4 | * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) 5 | * Licensed under the MIT license. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Progressbar#theming 9 | */ 10 | .ui-progressbar { height:2em; text-align: left; overflow: hidden; } 11 | .ui-progressbar .ui-progressbar-value {margin: -1px; height:100%; } -------------------------------------------------------------------------------- /UCsoft.Web/Areas/HelpPage/Content/themes/base/jquery.ui.resizable.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Resizable 1.8.24 3 | * 4 | * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) 5 | * Licensed under the MIT license. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Resizable#theming 9 | */ 10 | .ui-resizable { position: relative;} 11 | .ui-resizable-handle { position: absolute;font-size: 0.1px; display: block; } 12 | .ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle { display: none; } 13 | .ui-resizable-n { cursor: n-resize; height: 7px; width: 100%; top: -5px; left: 0; } 14 | .ui-resizable-s { cursor: s-resize; height: 7px; width: 100%; bottom: -5px; left: 0; } 15 | .ui-resizable-e { cursor: e-resize; width: 7px; right: -5px; top: 0; height: 100%; } 16 | .ui-resizable-w { cursor: w-resize; width: 7px; left: -5px; top: 0; height: 100%; } 17 | .ui-resizable-se { cursor: se-resize; width: 12px; height: 12px; right: 1px; bottom: 1px; } 18 | .ui-resizable-sw { cursor: sw-resize; width: 9px; height: 9px; left: -5px; bottom: -5px; } 19 | .ui-resizable-nw { cursor: nw-resize; width: 9px; height: 9px; left: -5px; top: -5px; } 20 | .ui-resizable-ne { cursor: ne-resize; width: 9px; height: 9px; right: -5px; top: -5px;} -------------------------------------------------------------------------------- /UCsoft.Web/Areas/HelpPage/Content/themes/base/jquery.ui.selectable.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Selectable 1.8.24 3 | * 4 | * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) 5 | * Licensed under the MIT license. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Selectable#theming 9 | */ 10 | .ui-selectable-helper { position: absolute; z-index: 100; border:1px dotted black; } 11 | -------------------------------------------------------------------------------- /UCsoft.Web/Areas/HelpPage/Content/themes/base/jquery.ui.slider.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Slider 1.8.24 3 | * 4 | * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) 5 | * Licensed under the MIT license. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Slider#theming 9 | */ 10 | .ui-slider { position: relative; text-align: left; } 11 | .ui-slider .ui-slider-handle { position: absolute; z-index: 2; width: 1.2em; height: 1.2em; cursor: default; } 12 | .ui-slider .ui-slider-range { position: absolute; z-index: 1; font-size: .7em; display: block; border: 0; background-position: 0 0; } 13 | 14 | .ui-slider-horizontal { height: .8em; } 15 | .ui-slider-horizontal .ui-slider-handle { top: -.3em; margin-left: -.6em; } 16 | .ui-slider-horizontal .ui-slider-range { top: 0; height: 100%; } 17 | .ui-slider-horizontal .ui-slider-range-min { left: 0; } 18 | .ui-slider-horizontal .ui-slider-range-max { right: 0; } 19 | 20 | .ui-slider-vertical { width: .8em; height: 100px; } 21 | .ui-slider-vertical .ui-slider-handle { left: -.3em; margin-left: 0; margin-bottom: -.6em; } 22 | .ui-slider-vertical .ui-slider-range { left: 0; width: 100%; } 23 | .ui-slider-vertical .ui-slider-range-min { bottom: 0; } 24 | .ui-slider-vertical .ui-slider-range-max { top: 0; } -------------------------------------------------------------------------------- /UCsoft.Web/Areas/HelpPage/Content/themes/base/minified/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Areas/HelpPage/Content/themes/base/minified/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /UCsoft.Web/Areas/HelpPage/Content/themes/base/minified/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Areas/HelpPage/Content/themes/base/minified/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /UCsoft.Web/Areas/HelpPage/Content/themes/base/minified/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Areas/HelpPage/Content/themes/base/minified/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /UCsoft.Web/Areas/HelpPage/Content/themes/base/minified/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Areas/HelpPage/Content/themes/base/minified/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /UCsoft.Web/Areas/HelpPage/Content/themes/base/minified/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Areas/HelpPage/Content/themes/base/minified/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /UCsoft.Web/Areas/HelpPage/Content/themes/base/minified/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Areas/HelpPage/Content/themes/base/minified/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /UCsoft.Web/Areas/HelpPage/Content/themes/base/minified/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Areas/HelpPage/Content/themes/base/minified/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /UCsoft.Web/Areas/HelpPage/Content/themes/base/minified/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Areas/HelpPage/Content/themes/base/minified/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /UCsoft.Web/Areas/HelpPage/Content/themes/base/minified/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Areas/HelpPage/Content/themes/base/minified/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /UCsoft.Web/Areas/HelpPage/Content/themes/base/minified/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Areas/HelpPage/Content/themes/base/minified/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /UCsoft.Web/Areas/HelpPage/Content/themes/base/minified/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Areas/HelpPage/Content/themes/base/minified/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /UCsoft.Web/Areas/HelpPage/Content/themes/base/minified/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Areas/HelpPage/Content/themes/base/minified/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /UCsoft.Web/Areas/HelpPage/Content/themes/base/minified/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Areas/HelpPage/Content/themes/base/minified/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /UCsoft.Web/Areas/HelpPage/Content/themes/base/minified/jquery.ui.accordion.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.8.24 - 2012-09-28 2 | * https://github.com/jquery/jquery-ui 3 | * Includes: jquery.ui.accordion.css 4 | * Copyright (c) 2012 AUTHORS.txt; Licensed MIT */ 5 | .ui-accordion{width:100%}.ui-accordion .ui-accordion-header{cursor:pointer;position:relative;margin-top:1px;zoom:1}.ui-accordion .ui-accordion-li-fix{display:inline}.ui-accordion .ui-accordion-header-active{border-bottom:0!important}.ui-accordion .ui-accordion-header a{display:block;font-size:1em;padding:.5em .5em .5em .7em}.ui-accordion-icons .ui-accordion-header a{padding-left:2.2em}.ui-accordion .ui-accordion-header .ui-icon{position:absolute;left:.5em;top:50%;margin-top:-8px}.ui-accordion .ui-accordion-content{padding:1em 2.2em;border-top:0;margin-top:-2px;position:relative;top:1px;margin-bottom:2px;overflow:auto;display:none;zoom:1}.ui-accordion .ui-accordion-content-active{display:block} -------------------------------------------------------------------------------- /UCsoft.Web/Areas/HelpPage/Content/themes/base/minified/jquery.ui.autocomplete.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.8.24 - 2012-09-28 2 | * https://github.com/jquery/jquery-ui 3 | * Includes: jquery.ui.autocomplete.css 4 | * Copyright (c) 2012 AUTHORS.txt; Licensed MIT */ 5 | .ui-autocomplete{position:absolute;cursor:default}* html .ui-autocomplete{width:1px}.ui-menu{list-style:none;padding:2px;margin:0;display:block;float:left}.ui-menu .ui-menu{margin-top:-3px}.ui-menu .ui-menu-item{margin:0;padding:0;zoom:1;float:left;clear:left;width:100%}.ui-menu .ui-menu-item a{text-decoration:none;display:block;padding:.2em .4em;line-height:1.5;zoom:1}.ui-menu .ui-menu-item a.ui-state-hover,.ui-menu .ui-menu-item a.ui-state-active{font-weight:normal;margin:-1px} -------------------------------------------------------------------------------- /UCsoft.Web/Areas/HelpPage/Content/themes/base/minified/jquery.ui.core.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.8.24 - 2012-09-28 2 | * https://github.com/jquery/jquery-ui 3 | * Includes: jquery.ui.core.css 4 | * Copyright (c) 2012 AUTHORS.txt; Licensed MIT */ 5 | .ui-helper-hidden{display:none}.ui-helper-hidden-accessible{position:absolute!important;clip:rect(1px);clip:rect(1px,1px,1px,1px)}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:before,.ui-helper-clearfix:after{content:"";display:table}.ui-helper-clearfix:after{clear:both}.ui-helper-clearfix{zoom:1}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-state-disabled{cursor:default!important}.ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-overlay{position:absolute;top:0;left:0;width:100%;height:100%} -------------------------------------------------------------------------------- /UCsoft.Web/Areas/HelpPage/Content/themes/base/minified/jquery.ui.dialog.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.8.24 - 2012-09-28 2 | * https://github.com/jquery/jquery-ui 3 | * Includes: jquery.ui.dialog.css 4 | * Copyright (c) 2012 AUTHORS.txt; Licensed MIT */ 5 | .ui-dialog{position:absolute;padding:.2em;width:300px;overflow:hidden}.ui-dialog .ui-dialog-titlebar{padding:.4em 1em;position:relative}.ui-dialog .ui-dialog-title{float:left;margin:.1em 16px .1em 0}.ui-dialog .ui-dialog-titlebar-close{position:absolute;right:.3em;top:50%;width:19px;margin:-10px 0 0 0;padding:1px;height:18px}.ui-dialog .ui-dialog-titlebar-close span{display:block;margin:1px}.ui-dialog .ui-dialog-titlebar-close:hover,.ui-dialog .ui-dialog-titlebar-close:focus{padding:0}.ui-dialog .ui-dialog-content{position:relative;border:0;padding:.5em 1em;background:none;overflow:auto;zoom:1}.ui-dialog .ui-dialog-buttonpane{text-align:left;border-width:1px 0 0 0;background-image:none;margin:.5em 0 0 0;padding:.3em 1em .5em .4em}.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset{float:right}.ui-dialog .ui-dialog-buttonpane button{margin:.5em .4em .5em 0;cursor:pointer}.ui-dialog .ui-resizable-se{width:14px;height:14px;right:3px;bottom:3px}.ui-draggable .ui-dialog-titlebar{cursor:move} -------------------------------------------------------------------------------- /UCsoft.Web/Areas/HelpPage/Content/themes/base/minified/jquery.ui.progressbar.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.8.24 - 2012-09-28 2 | * https://github.com/jquery/jquery-ui 3 | * Includes: jquery.ui.progressbar.css 4 | * Copyright (c) 2012 AUTHORS.txt; Licensed MIT */ 5 | .ui-progressbar{height:2em;text-align:left;overflow:hidden}.ui-progressbar .ui-progressbar-value{margin:-1px;height:100%} -------------------------------------------------------------------------------- /UCsoft.Web/Areas/HelpPage/Content/themes/base/minified/jquery.ui.resizable.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.8.24 - 2012-09-28 2 | * https://github.com/jquery/jquery-ui 3 | * Includes: jquery.ui.resizable.css 4 | * Copyright (c) 2012 AUTHORS.txt; Licensed MIT */ 5 | .ui-resizable{position:relative}.ui-resizable-handle{position:absolute;font-size:0.1px;display:block}.ui-resizable-disabled .ui-resizable-handle,.ui-resizable-autohide .ui-resizable-handle{display:none}.ui-resizable-n{cursor:n-resize;height:7px;width:100%;top:-5px;left:0}.ui-resizable-s{cursor:s-resize;height:7px;width:100%;bottom:-5px;left:0}.ui-resizable-e{cursor:e-resize;width:7px;right:-5px;top:0;height:100%}.ui-resizable-w{cursor:w-resize;width:7px;left:-5px;top:0;height:100%}.ui-resizable-se{cursor:se-resize;width:12px;height:12px;right:1px;bottom:1px}.ui-resizable-sw{cursor:sw-resize;width:9px;height:9px;left:-5px;bottom:-5px}.ui-resizable-nw{cursor:nw-resize;width:9px;height:9px;left:-5px;top:-5px}.ui-resizable-ne{cursor:ne-resize;width:9px;height:9px;right:-5px;top:-5px} -------------------------------------------------------------------------------- /UCsoft.Web/Areas/HelpPage/Content/themes/base/minified/jquery.ui.selectable.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.8.24 - 2012-09-28 2 | * https://github.com/jquery/jquery-ui 3 | * Includes: jquery.ui.selectable.css 4 | * Copyright (c) 2012 AUTHORS.txt; Licensed MIT */ 5 | .ui-selectable-helper{position:absolute;z-index:100;border:1px dotted black} -------------------------------------------------------------------------------- /UCsoft.Web/Areas/HelpPage/Content/themes/base/minified/jquery.ui.slider.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.8.24 - 2012-09-28 2 | * https://github.com/jquery/jquery-ui 3 | * Includes: jquery.ui.slider.css 4 | * Copyright (c) 2012 AUTHORS.txt; Licensed MIT */ 5 | .ui-slider{position:relative;text-align:left}.ui-slider .ui-slider-handle{position:absolute;z-index:2;width:1.2em;height:1.2em;cursor:default}.ui-slider .ui-slider-range{position:absolute;z-index:1;font-size:.7em;display:block;border:0;background-position:0 0}.ui-slider-horizontal{height:.8em}.ui-slider-horizontal .ui-slider-handle{top:-.3em;margin-left:-.6em}.ui-slider-horizontal .ui-slider-range{top:0;height:100%}.ui-slider-horizontal .ui-slider-range-min{left:0}.ui-slider-horizontal .ui-slider-range-max{right:0}.ui-slider-vertical{width:.8em;height:100px}.ui-slider-vertical .ui-slider-handle{left:-.3em;margin-left:0;margin-bottom:-.6em}.ui-slider-vertical .ui-slider-range{left:0;width:100%}.ui-slider-vertical .ui-slider-range-min{bottom:0}.ui-slider-vertical .ui-slider-range-max{top:0} -------------------------------------------------------------------------------- /UCsoft.Web/Areas/HelpPage/Content/themes/base/minified/jquery.ui.tabs.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.8.24 - 2012-09-28 2 | * https://github.com/jquery/jquery-ui 3 | * Includes: jquery.ui.tabs.css 4 | * Copyright (c) 2012 AUTHORS.txt; Licensed MIT */ 5 | .ui-tabs{position:relative;padding:.2em;zoom:1}.ui-tabs .ui-tabs-nav{margin:0;padding:.2em .2em 0}.ui-tabs .ui-tabs-nav li{list-style:none;float:left;position:relative;top:1px;margin:0 .2em 1px 0;border-bottom:0!important;padding:0;white-space:nowrap}.ui-tabs .ui-tabs-nav li a{float:left;padding:.5em 1em;text-decoration:none}.ui-tabs .ui-tabs-nav li.ui-tabs-selected{margin-bottom:0;padding-bottom:1px}.ui-tabs .ui-tabs-nav li.ui-tabs-selected a,.ui-tabs .ui-tabs-nav li.ui-state-disabled a,.ui-tabs .ui-tabs-nav li.ui-state-processing a{cursor:text}.ui-tabs .ui-tabs-nav li a,.ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a{cursor:pointer}.ui-tabs .ui-tabs-panel{display:block;border-width:0;padding:1em 1.4em;background:none}.ui-tabs .ui-tabs-hide{display:none!important} -------------------------------------------------------------------------------- /UCsoft.Web/Areas/HelpPage/Controllers/HelpController.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Web.Http; 3 | using System.Web.Mvc; 4 | using UCsoft.Web.Api.Areas.HelpPage.Models; 5 | 6 | namespace UCsoft.Web.Api.Areas.HelpPage.Controllers 7 | { 8 | /// 9 | /// The controller that will handle requests for the help page. 10 | /// 11 | public class HelpController : Controller 12 | { 13 | public HelpController() 14 | : this(GlobalConfiguration.Configuration) 15 | { 16 | } 17 | 18 | public HelpController(HttpConfiguration config) 19 | { 20 | Configuration = config; 21 | } 22 | 23 | public HttpConfiguration Configuration { get; private set; } 24 | 25 | public ActionResult Index() 26 | { 27 | return View(Configuration.Services.GetApiExplorer().ApiDescriptions); 28 | } 29 | 30 | public ActionResult Api(string apiId) 31 | { 32 | if (!String.IsNullOrEmpty(apiId)) 33 | { 34 | HelpPageApiModel apiModel = Configuration.GetHelpPageApiModel(apiId); 35 | if (apiModel != null) 36 | { 37 | return View(apiModel); 38 | } 39 | } 40 | 41 | return View("Error"); 42 | } 43 | } 44 | } -------------------------------------------------------------------------------- /UCsoft.Web/Areas/HelpPage/HelpPageAreaRegistration.cs: -------------------------------------------------------------------------------- 1 | using System.Web.Http; 2 | using System.Web.Mvc; 3 | 4 | namespace UCsoft.Web.Api.Areas.HelpPage 5 | { 6 | public class HelpPageAreaRegistration : AreaRegistration 7 | { 8 | public override string AreaName 9 | { 10 | get 11 | { 12 | return "HelpPage"; 13 | } 14 | } 15 | 16 | public override void RegisterArea(AreaRegistrationContext context) 17 | { 18 | context.MapRoute( 19 | "HelpPage_Default", 20 | "Help/{action}/{apiId}", 21 | new { controller = "Help", action = "Index", apiId = UrlParameter.Optional }); 22 | 23 | HelpPageConfig.Register(GlobalConfiguration.Configuration); 24 | } 25 | } 26 | } -------------------------------------------------------------------------------- /UCsoft.Web/Areas/HelpPage/Images/accent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Areas/HelpPage/Images/accent.png -------------------------------------------------------------------------------- /UCsoft.Web/Areas/HelpPage/Images/bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Areas/HelpPage/Images/bullet.png -------------------------------------------------------------------------------- /UCsoft.Web/Areas/HelpPage/Images/heroAccent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Areas/HelpPage/Images/heroAccent.png -------------------------------------------------------------------------------- /UCsoft.Web/Areas/HelpPage/Images/orderedList0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Areas/HelpPage/Images/orderedList0.png -------------------------------------------------------------------------------- /UCsoft.Web/Areas/HelpPage/Images/orderedList1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Areas/HelpPage/Images/orderedList1.png -------------------------------------------------------------------------------- /UCsoft.Web/Areas/HelpPage/Images/orderedList2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Areas/HelpPage/Images/orderedList2.png -------------------------------------------------------------------------------- /UCsoft.Web/Areas/HelpPage/Images/orderedList3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Areas/HelpPage/Images/orderedList3.png -------------------------------------------------------------------------------- /UCsoft.Web/Areas/HelpPage/Images/orderedList4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Areas/HelpPage/Images/orderedList4.png -------------------------------------------------------------------------------- /UCsoft.Web/Areas/HelpPage/Images/orderedList5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Areas/HelpPage/Images/orderedList5.png -------------------------------------------------------------------------------- /UCsoft.Web/Areas/HelpPage/Images/orderedList6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Areas/HelpPage/Images/orderedList6.png -------------------------------------------------------------------------------- /UCsoft.Web/Areas/HelpPage/Images/orderedList7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Areas/HelpPage/Images/orderedList7.png -------------------------------------------------------------------------------- /UCsoft.Web/Areas/HelpPage/Images/orderedList8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Areas/HelpPage/Images/orderedList8.png -------------------------------------------------------------------------------- /UCsoft.Web/Areas/HelpPage/Images/orderedList9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Areas/HelpPage/Images/orderedList9.png -------------------------------------------------------------------------------- /UCsoft.Web/Areas/HelpPage/SampleGeneration/ImageSample.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace UCsoft.Web.Api.Areas.HelpPage 4 | { 5 | /// 6 | /// This represents an image sample on the help page. There's a display template named ImageSample associated with this class. 7 | /// 8 | public class ImageSample 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | /// The URL of an image. 14 | public ImageSample(string src) 15 | { 16 | if (src == null) 17 | { 18 | throw new ArgumentNullException("src"); 19 | } 20 | Src = src; 21 | } 22 | 23 | public string Src { get; private set; } 24 | 25 | public override bool Equals(object obj) 26 | { 27 | ImageSample other = obj as ImageSample; 28 | return other != null && Src == other.Src; 29 | } 30 | 31 | public override int GetHashCode() 32 | { 33 | return Src.GetHashCode(); 34 | } 35 | 36 | public override string ToString() 37 | { 38 | return Src; 39 | } 40 | } 41 | } -------------------------------------------------------------------------------- /UCsoft.Web/Areas/HelpPage/SampleGeneration/InvalidSample.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace UCsoft.Web.Api.Areas.HelpPage 4 | { 5 | /// 6 | /// This represents an invalid sample on the help page. There's a display template named InvalidSample associated with this class. 7 | /// 8 | public class InvalidSample 9 | { 10 | public InvalidSample(string errorMessage) 11 | { 12 | if (errorMessage == null) 13 | { 14 | throw new ArgumentNullException("errorMessage"); 15 | } 16 | ErrorMessage = errorMessage; 17 | } 18 | 19 | public string ErrorMessage { get; private set; } 20 | 21 | public override bool Equals(object obj) 22 | { 23 | InvalidSample other = obj as InvalidSample; 24 | return other != null && ErrorMessage == other.ErrorMessage; 25 | } 26 | 27 | public override int GetHashCode() 28 | { 29 | return ErrorMessage.GetHashCode(); 30 | } 31 | 32 | public override string ToString() 33 | { 34 | return ErrorMessage; 35 | } 36 | } 37 | } -------------------------------------------------------------------------------- /UCsoft.Web/Areas/HelpPage/SampleGeneration/SampleDirection.cs: -------------------------------------------------------------------------------- 1 | namespace UCsoft.Web.Api.Areas.HelpPage 2 | { 3 | /// 4 | /// Indicates whether the sample is used for request or response 5 | /// 6 | public enum SampleDirection 7 | { 8 | Request = 0, 9 | Response 10 | } 11 | } -------------------------------------------------------------------------------- /UCsoft.Web/Areas/HelpPage/SampleGeneration/TextSample.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace UCsoft.Web.Api.Areas.HelpPage 4 | { 5 | /// 6 | /// This represents a preformatted text sample on the help page. There's a display template named TextSample associated with this class. 7 | /// 8 | public class TextSample 9 | { 10 | public TextSample(string text) 11 | { 12 | if (text == null) 13 | { 14 | throw new ArgumentNullException("text"); 15 | } 16 | Text = text; 17 | } 18 | 19 | public string Text { get; private set; } 20 | 21 | public override bool Equals(object obj) 22 | { 23 | TextSample other = obj as TextSample; 24 | return other != null && Text == other.Text; 25 | } 26 | 27 | public override int GetHashCode() 28 | { 29 | return Text.GetHashCode(); 30 | } 31 | 32 | public override string ToString() 33 | { 34 | return Text; 35 | } 36 | } 37 | } -------------------------------------------------------------------------------- /UCsoft.Web/Areas/HelpPage/Views/Help/Api.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Areas/HelpPage/Views/Help/Api.cshtml -------------------------------------------------------------------------------- /UCsoft.Web/Areas/HelpPage/Views/Help/DisplayTemplates/ApiGroup.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Areas/HelpPage/Views/Help/DisplayTemplates/ApiGroup.cshtml -------------------------------------------------------------------------------- /UCsoft.Web/Areas/HelpPage/Views/Help/DisplayTemplates/HelpPageApiModel.cshtml: -------------------------------------------------------------------------------- 1 | @using System.Web.Http 2 | @using UCsoft.Web.Api.Areas.HelpPage.Models 3 | @model HelpPageApiModel 4 | 5 | @{ 6 | var description = Model.ApiDescription; 7 | bool hasParameters = description.ParameterDescriptions.Count > 0; 8 | bool hasRequestSamples = Model.SampleRequests.Count > 0; 9 | bool hasResponseSamples = Model.SampleResponses.Count > 0; 10 | } 11 |

@description.HttpMethod.Method @description.RelativePath

12 |
13 | @if (description.Documentation != null) 14 | { 15 |

@description.Documentation

16 | } 17 | else 18 | { 19 |

No documentation available.

20 | } 21 | 22 | @if (hasParameters || hasRequestSamples) 23 | { 24 |

Request Information

25 | if (hasParameters) 26 | { 27 |

Parameters

28 | @Html.DisplayFor(apiModel => apiModel.ApiDescription.ParameterDescriptions, "Parameters") 29 | } 30 | if (hasRequestSamples) 31 | { 32 |

Request body formats

33 | @Html.DisplayFor(apiModel => apiModel.SampleRequests, "Samples") 34 | } 35 | } 36 | 37 | @if (hasResponseSamples) 38 | { 39 |

Response Information

40 |

Response body formats

41 | @Html.DisplayFor(apiModel => apiModel.SampleResponses, "Samples") 42 | } 43 |
-------------------------------------------------------------------------------- /UCsoft.Web/Areas/HelpPage/Views/Help/DisplayTemplates/ImageSample.cshtml: -------------------------------------------------------------------------------- 1 | @using UCsoft.Web.Api.Areas.HelpPage 2 | @model ImageSample 3 | 4 | -------------------------------------------------------------------------------- /UCsoft.Web/Areas/HelpPage/Views/Help/DisplayTemplates/InvalidSample.cshtml: -------------------------------------------------------------------------------- 1 | @using UCsoft.Web.Api.Areas.HelpPage 2 | @model InvalidSample 3 | 4 | @if (HttpContext.Current.IsDebuggingEnabled) 5 | { 6 |
7 |

@Model.ErrorMessage

8 |
9 | } 10 | else 11 | { 12 |

Sample not available.

13 | } -------------------------------------------------------------------------------- /UCsoft.Web/Areas/HelpPage/Views/Help/DisplayTemplates/Samples.cshtml: -------------------------------------------------------------------------------- 1 | @using System.Net.Http.Headers 2 | @model Dictionary 3 | 4 | @{ 5 | // Group the samples into a single tab if they are the same. 6 | Dictionary samples = Model.GroupBy(pair => pair.Value).ToDictionary( 7 | pair => String.Join(", ", pair.Select(m => m.Key.ToString()).ToArray()), 8 | pair => pair.Key); 9 | var mediaTypes = samples.Keys; 10 | } 11 |
12 | @foreach (var mediaType in mediaTypes) 13 | { 14 |

@mediaType

15 |
16 | Sample: 17 | @{ 18 | var sample = samples[mediaType]; 19 | if (sample == null) 20 | { 21 |

Sample not available.

22 | } 23 | else 24 | { 25 | @Html.DisplayFor(s => sample); 26 | } 27 | } 28 |
29 | } 30 |
-------------------------------------------------------------------------------- /UCsoft.Web/Areas/HelpPage/Views/Help/DisplayTemplates/TextSample.cshtml: -------------------------------------------------------------------------------- 1 | @using UCsoft.Web.Api.Areas.HelpPage 2 | @model TextSample 3 | 4 |
5 | @Model.Text
6 | 
-------------------------------------------------------------------------------- /UCsoft.Web/Areas/HelpPage/Views/Help/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Areas/HelpPage/Views/Help/Index.cshtml -------------------------------------------------------------------------------- /UCsoft.Web/Areas/HelpPage/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = null; 3 | } 4 | 5 | 6 | 7 | 8 | 9 | Error 10 | 11 | 12 |
13 |

Error.

14 |

An error occurred while processing your request.

15 |
16 | 17 | -------------------------------------------------------------------------------- /UCsoft.Web/Areas/HelpPage/Views/Shared/_Globe.cshtml: -------------------------------------------------------------------------------- 1 | @using System.Web.Optimization 2 | 3 | 4 | 5 | 6 | 7 | @ViewBag.Title 8 | @Styles.Render("~/Content/css") 9 | @Scripts.Render("~/bundles/modernizr") 10 | 11 | 12 |
13 |
14 |
15 |

16 | API 17 |

18 |
19 |
20 | 26 |
27 |
28 |
29 | @RenderBody() 30 | 31 | @Scripts.Render("~/bundles/jquery") 32 | @RenderSection("scripts", required: false) 33 | 34 | 35 | -------------------------------------------------------------------------------- /UCsoft.Web/Areas/HelpPage/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | @ViewBag.Title 7 | @RenderSection("scripts", required: false) 8 | 9 | 10 | @RenderBody() 11 | 12 | -------------------------------------------------------------------------------- /UCsoft.Web/Areas/HelpPage/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | // Change the Layout path below to blend the look and feel of the help page with your existing web pages. 3 | Layout = "~/Areas/HelpPage/Views/Shared/_Globe.cshtml"; 4 | } 5 | -------------------------------------------------------------------------------- /UCsoft.Web/Configs/Objects.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /UCsoft.Web/Configs/Webs.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /UCsoft.Web/Global.asax: -------------------------------------------------------------------------------- 1 | <%@ Application Codebehind="Global.asax.cs" Inherits="UCsoft.Web.MvcApplication" Language="C#" %> 2 | -------------------------------------------------------------------------------- /UCsoft.Web/Handlers/SessionStateRouteHandler.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using System.Web.Routing; 6 | 7 | namespace UCsoft.Web.Handlers 8 | { 9 | public class SessionStateRouteHandler : IRouteHandler 10 | { 11 | IHttpHandler IRouteHandler.GetHttpHandler(RequestContext requestContext) 12 | { 13 | return new SessionableControlHandler(requestContext.RouteData); 14 | } 15 | } 16 | } -------------------------------------------------------------------------------- /UCsoft.Web/Handlers/SessionableControlHandler.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using System.Web.Http.WebHost; 6 | using System.Web.Routing; 7 | using System.Web.SessionState; 8 | 9 | namespace UCsoft.Web.Handlers 10 | { 11 | public class SessionableControlHandler : HttpControllerHandler, IRequiresSessionState 12 | { 13 | public SessionableControlHandler(RouteData routeData) 14 | : base(routeData) 15 | { 16 | } 17 | } 18 | } -------------------------------------------------------------------------------- /UCsoft.Web/Log/20141105.error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Log/20141105.error.html -------------------------------------------------------------------------------- /UCsoft.Web/Log/20141105.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Log/20141105.html -------------------------------------------------------------------------------- /UCsoft.Web/Themes/default/base/images/ie_update.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Themes/default/base/images/ie_update.jpg -------------------------------------------------------------------------------- /UCsoft.Web/Themes/default/home/images/body_bg_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Themes/default/home/images/body_bg_02.png -------------------------------------------------------------------------------- /UCsoft.Web/Themes/default/home/images/btn_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Themes/default/home/images/btn_03.png -------------------------------------------------------------------------------- /UCsoft.Web/Themes/default/home/images/btn_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Themes/default/home/images/btn_05.png -------------------------------------------------------------------------------- /UCsoft.Web/Themes/default/home/images/btn_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Themes/default/home/images/btn_06.png -------------------------------------------------------------------------------- /UCsoft.Web/Themes/default/home/images/btn_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Themes/default/home/images/btn_07.png -------------------------------------------------------------------------------- /UCsoft.Web/Themes/default/home/images/btn_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Themes/default/home/images/btn_09.png -------------------------------------------------------------------------------- /UCsoft.Web/Themes/default/home/images/btn_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Themes/default/home/images/btn_15.png -------------------------------------------------------------------------------- /UCsoft.Web/Themes/default/home/images/btn_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Themes/default/home/images/btn_16.png -------------------------------------------------------------------------------- /UCsoft.Web/Themes/default/home/images/btn_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Themes/default/home/images/btn_17.png -------------------------------------------------------------------------------- /UCsoft.Web/Themes/default/home/images/daochu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Themes/default/home/images/daochu.png -------------------------------------------------------------------------------- /UCsoft.Web/Themes/default/home/images/date_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Themes/default/home/images/date_03.png -------------------------------------------------------------------------------- /UCsoft.Web/Themes/default/home/images/date_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Themes/default/home/images/date_06.png -------------------------------------------------------------------------------- /UCsoft.Web/Themes/default/home/images/error_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Themes/default/home/images/error_06.png -------------------------------------------------------------------------------- /UCsoft.Web/Themes/default/home/images/global-mi-ico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Themes/default/home/images/global-mi-ico.png -------------------------------------------------------------------------------- /UCsoft.Web/Themes/default/home/images/header_left_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Themes/default/home/images/header_left_03.png -------------------------------------------------------------------------------- /UCsoft.Web/Themes/default/home/images/header_user_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Themes/default/home/images/header_user_05.png -------------------------------------------------------------------------------- /UCsoft.Web/Themes/default/home/images/home_btn_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Themes/default/home/images/home_btn_03.png -------------------------------------------------------------------------------- /UCsoft.Web/Themes/default/home/images/home_btn_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Themes/default/home/images/home_btn_05.png -------------------------------------------------------------------------------- /UCsoft.Web/Themes/default/home/images/home_btn_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Themes/default/home/images/home_btn_07.png -------------------------------------------------------------------------------- /UCsoft.Web/Themes/default/home/images/home_btn_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Themes/default/home/images/home_btn_09.png -------------------------------------------------------------------------------- /UCsoft.Web/Themes/default/home/images/home_btn_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Themes/default/home/images/home_btn_11.png -------------------------------------------------------------------------------- /UCsoft.Web/Themes/default/home/images/kh_btn_bg_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Themes/default/home/images/kh_btn_bg_22.png -------------------------------------------------------------------------------- /UCsoft.Web/Themes/default/home/images/login_ico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Themes/default/home/images/login_ico.png -------------------------------------------------------------------------------- /UCsoft.Web/Themes/default/home/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Themes/default/home/images/logo.png -------------------------------------------------------------------------------- /UCsoft.Web/Themes/default/home/images/none.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Themes/default/home/images/none.gif -------------------------------------------------------------------------------- /UCsoft.Web/Themes/default/home/images/nophoto.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Themes/default/home/images/nophoto.gif -------------------------------------------------------------------------------- /UCsoft.Web/Themes/default/home/images/select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Themes/default/home/images/select.png -------------------------------------------------------------------------------- /UCsoft.Web/Themes/default/home/images/sidebar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Themes/default/home/images/sidebar.png -------------------------------------------------------------------------------- /UCsoft.Web/Themes/default/home/images/v-logo-big-con.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Themes/default/home/images/v-logo-big-con.png -------------------------------------------------------------------------------- /UCsoft.Web/Themes/default/home/images/xiala_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Themes/default/home/images/xiala_06.png -------------------------------------------------------------------------------- /UCsoft.Web/Themes/default/home/images/xing_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Themes/default/home/images/xing_03.png -------------------------------------------------------------------------------- /UCsoft.Web/Themes/default/home/images/xinjian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Themes/default/home/images/xinjian.png -------------------------------------------------------------------------------- /UCsoft.Web/Themes/default/home/images/xuanxiang_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Themes/default/home/images/xuanxiang_03.png -------------------------------------------------------------------------------- /UCsoft.Web/Themes/default/home/js/index.js: -------------------------------------------------------------------------------- 1 | // JavaScript Document 2 | 3 | /*鼠标经过后出现主导航*/ 4 | -------------------------------------------------------------------------------- /UCsoft.Web/Themes/default/lib/artDialog/img/alert.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Themes/default/lib/artDialog/img/alert.gif -------------------------------------------------------------------------------- /UCsoft.Web/Themes/default/lib/artDialog/img/confirm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Themes/default/lib/artDialog/img/confirm.gif -------------------------------------------------------------------------------- /UCsoft.Web/Themes/default/lib/artDialog/img/error.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Themes/default/lib/artDialog/img/error.gif -------------------------------------------------------------------------------- /UCsoft.Web/Themes/default/lib/artDialog/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Themes/default/lib/artDialog/img/loading.gif -------------------------------------------------------------------------------- /UCsoft.Web/Themes/default/lib/artDialog/img/ok.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Themes/default/lib/artDialog/img/ok.gif -------------------------------------------------------------------------------- /UCsoft.Web/Themes/default/lib/bootstrap/assets/css/_notes/dwsync.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /UCsoft.Web/Themes/default/lib/bootstrap/css/_notes/dwsync.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /UCsoft.Web/Themes/default/lib/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Themes/default/lib/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /UCsoft.Web/Themes/default/lib/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Themes/default/lib/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /UCsoft.Web/Themes/default/lib/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Themes/default/lib/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /UCsoft.Web/Themes/default/lib/capture/FaustCplus.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Themes/default/lib/capture/FaustCplus.swf -------------------------------------------------------------------------------- /UCsoft.Web/Themes/default/lib/my97DatePicker/lang/en.js: -------------------------------------------------------------------------------- 1 | var $lang={ 2 | errAlertMsg: "Invalid date or the date out of range,redo or not?", 3 | aWeekStr: ["wk", "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"], 4 | aLongWeekStr:["wk","Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday","Sunday"], 5 | aMonStr: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"], 6 | aLongMonStr: ["January","February","March","April","May","June","July","August","September","October","November","December"], 7 | clearStr: "Clear", 8 | todayStr: "Today", 9 | okStr: "OK", 10 | updateStr: "OK", 11 | timeStr: "Time", 12 | quickStr: "Quick Selection", 13 | err_1: 'MinDate Cannot be bigger than MaxDate!' 14 | } -------------------------------------------------------------------------------- /UCsoft.Web/Themes/default/lib/my97DatePicker/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | var $lang={ 2 | errAlertMsg: "\u4E0D\u5408\u6CD5\u7684\u65E5\u671F\u683C\u5F0F\u6216\u8005\u65E5\u671F\u8D85\u51FA\u9650\u5B9A\u8303\u56F4,\u9700\u8981\u64A4\u9500\u5417?", 3 | aWeekStr: ["\u5468","\u65E5","\u4E00","\u4E8C","\u4E09","\u56DB","\u4E94","\u516D"], 4 | aLongWeekStr:["\u5468","\u661F\u671F\u65E5","\u661F\u671F\u4E00","\u661F\u671F\u4E8C","\u661F\u671F\u4E09","\u661F\u671F\u56DB","\u661F\u671F\u4E94","\u661F\u671F\u516D"], 5 | aMonStr: ["\u4E00\u6708","\u4E8C\u6708","\u4E09\u6708","\u56DB\u6708","\u4E94\u6708","\u516D\u6708","\u4E03\u6708","\u516B\u6708","\u4E5D\u6708","\u5341\u6708","\u5341\u4E00","\u5341\u4E8C"], 6 | aLongMonStr: ["\u4E00\u6708","\u4E8C\u6708","\u4E09\u6708","\u56DB\u6708","\u4E94\u6708","\u516D\u6708","\u4E03\u6708","\u516B\u6708","\u4E5D\u6708","\u5341\u6708","\u5341\u4E00\u6708","\u5341\u4E8C\u6708"], 7 | clearStr: "\u6E05\u7A7A", 8 | todayStr: "\u4ECA\u5929", 9 | okStr: "\u786E\u5B9A", 10 | updateStr: "\u786E\u5B9A", 11 | timeStr: "\u65F6\u95F4", 12 | quickStr: "\u5FEB\u901F\u9009\u62E9", 13 | err_1: '\u6700\u5C0F\u65E5\u671F\u4E0D\u80FD\u5927\u4E8E\u6700\u5927\u65E5\u671F!' 14 | } -------------------------------------------------------------------------------- /UCsoft.Web/Themes/default/lib/my97DatePicker/lang/zh-tw.js: -------------------------------------------------------------------------------- 1 | var $lang={ 2 | errAlertMsg: "\u4E0D\u5408\u6CD5\u7684\u65E5\u671F\u683C\u5F0F\u6216\u8005\u65E5\u671F\u8D85\u51FA\u9650\u5B9A\u7BC4\u570D,\u9700\u8981\u64A4\u92B7\u55CE?", 3 | aWeekStr: ["\u5468","\u65E5","\u4E00","\u4E8C","\u4E09","\u56DB","\u4E94","\u516D"], 4 | aLongWeekStr:["\u5468","\u661F\u671F\u65E5","\u661F\u671F\u4E00","\u661F\u671F\u4E8C","\u661F\u671F\u4E09","\u661F\u671F\u56DB","\u661F\u671F\u4E94","\u661F\u671F\u516D"], 5 | aMonStr: ["\u4E00\u6708","\u4E8C\u6708","\u4E09\u6708","\u56DB\u6708","\u4E94\u6708","\u516D\u6708","\u4E03\u6708","\u516B\u6708","\u4E5D\u6708","\u5341\u6708","\u5341\u4E00","\u5341\u4E8C"], 6 | aLongMonStr: ["\u4E00\u6708","\u4E8C\u6708","\u4E09\u6708","\u56DB\u6708","\u4E94\u6708","\u516D\u6708","\u4E03\u6708","\u516B\u6708","\u4E5D\u6708","\u5341\u6708","\u5341\u4E00\u6708","\u5341\u4E8C\u6708"], 7 | clearStr: "\u6E05\u7A7A", 8 | todayStr: "\u4ECA\u5929", 9 | okStr: "\u78BA\u5B9A", 10 | updateStr: "\u78BA\u5B9A", 11 | timeStr: "\u6642\u9593", 12 | quickStr: "\u5FEB\u901F\u9078\u64C7", 13 | err_1: '\u6700\u5C0F\u65E5\u671F\u4E0D\u80FD\u5927\u65BC\u6700\u5927\u65E5\u671F!' 14 | } -------------------------------------------------------------------------------- /UCsoft.Web/Themes/default/lib/my97DatePicker/skin/WdatePicker.css: -------------------------------------------------------------------------------- 1 | .Wdate{ 2 | border:#ccc 1px solid; 3 | background:#fff url(datePicker.gif) no-repeat right; 4 | } 5 | .Wdate::-ms-clear{display:none;} 6 | 7 | .WdateFmtErr{ 8 | font-weight:bold; 9 | color:red; 10 | } -------------------------------------------------------------------------------- /UCsoft.Web/Themes/default/lib/my97DatePicker/skin/datePicker.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Themes/default/lib/my97DatePicker/skin/datePicker.gif -------------------------------------------------------------------------------- /UCsoft.Web/Themes/default/lib/my97DatePicker/skin/default/img.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Themes/default/lib/my97DatePicker/skin/default/img.gif -------------------------------------------------------------------------------- /UCsoft.Web/Themes/default/lib/my97DatePicker/skin/whyGreen/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Themes/default/lib/my97DatePicker/skin/whyGreen/bg.jpg -------------------------------------------------------------------------------- /UCsoft.Web/Themes/default/lib/my97DatePicker/skin/whyGreen/img.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Themes/default/lib/my97DatePicker/skin/whyGreen/img.gif -------------------------------------------------------------------------------- /UCsoft.Web/Themes/default/lib/poshytip/tip-darkgray/tip-darkgray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Themes/default/lib/poshytip/tip-darkgray/tip-darkgray.png -------------------------------------------------------------------------------- /UCsoft.Web/Themes/default/lib/poshytip/tip-darkgray/tip-darkgray_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Themes/default/lib/poshytip/tip-darkgray/tip-darkgray_arrows.png -------------------------------------------------------------------------------- /UCsoft.Web/Themes/default/lib/poshytip/tip-green/tip-green_arrows.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Themes/default/lib/poshytip/tip-green/tip-green_arrows.gif -------------------------------------------------------------------------------- /UCsoft.Web/Themes/default/lib/poshytip/tip-skyblue/tip-skyblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Themes/default/lib/poshytip/tip-skyblue/tip-skyblue.png -------------------------------------------------------------------------------- /UCsoft.Web/Themes/default/lib/poshytip/tip-skyblue/tip-skyblue_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Themes/default/lib/poshytip/tip-skyblue/tip-skyblue_arrows.png -------------------------------------------------------------------------------- /UCsoft.Web/Themes/default/lib/poshytip/tip-twitter/tip-twitter_arrows.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Themes/default/lib/poshytip/tip-twitter/tip-twitter_arrows.gif -------------------------------------------------------------------------------- /UCsoft.Web/Themes/default/lib/poshytip/tip-violet/tip-violet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Themes/default/lib/poshytip/tip-violet/tip-violet.png -------------------------------------------------------------------------------- /UCsoft.Web/Themes/default/lib/poshytip/tip-violet/tip-violet_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Themes/default/lib/poshytip/tip-violet/tip-violet_arrows.png -------------------------------------------------------------------------------- /UCsoft.Web/Themes/default/lib/poshytip/tip-yellow/tip-yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Themes/default/lib/poshytip/tip-yellow/tip-yellow.png -------------------------------------------------------------------------------- /UCsoft.Web/Themes/default/lib/poshytip/tip-yellow/tip-yellow_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Themes/default/lib/poshytip/tip-yellow/tip-yellow_arrows.png -------------------------------------------------------------------------------- /UCsoft.Web/Themes/default/lib/poshytip/tip-yellowsimple/tip-yellowsimple_arrows.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Themes/default/lib/poshytip/tip-yellowsimple/tip-yellowsimple_arrows.gif -------------------------------------------------------------------------------- /UCsoft.Web/Themes/default/lib/swfupload/swfupload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Themes/default/lib/swfupload/swfupload.js -------------------------------------------------------------------------------- /UCsoft.Web/Themes/default/lib/swfupload/swfupload.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Themes/default/lib/swfupload/swfupload.swf -------------------------------------------------------------------------------- /UCsoft.Web/Themes/default/lib/validate/messages_cn.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Translated default messages for the jQuery validation plugin. 3 | * Locale: CN 4 | */ 5 | jQuery.extend(jQuery.validator.messages, { 6 | required: "必选字段", 7 | remote: "请修正该字段", 8 | email: "请输入正确格式的电子邮件", 9 | url: "请输入合法的网址", 10 | date: "请输入合法的日期", 11 | dateISO: "请输入合法的日期 (ISO).", 12 | number: "请输入合法的数字", 13 | digits: "只能输入整数", 14 | creditcard: "请输入合法的信用卡号", 15 | equalTo: "请再次输入相同的值", 16 | accept: "请输入拥有合法后缀名的字符串", 17 | maxlength: jQuery.validator.format("请输入一个 长度最多是 {0} 的字符串"), 18 | minlength: jQuery.validator.format("请输入一个 长度最少是 {0} 的字符串"), 19 | rangelength: jQuery.validator.format("请输入 一个长度介于 {0} 和 {1} 之间的字符串"), 20 | range: jQuery.validator.format("请输入一个介于 {0} 和 {1} 之间的值"), 21 | max: jQuery.validator.format("请输入一个最大为{0} 的值"), 22 | min: jQuery.validator.format("请输入一个最小为{0} 的值") 23 | }); -------------------------------------------------------------------------------- /UCsoft.Web/Themes/default/lib/zTree/css/zTreeStyle/img/diy/1_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Themes/default/lib/zTree/css/zTreeStyle/img/diy/1_close.png -------------------------------------------------------------------------------- /UCsoft.Web/Themes/default/lib/zTree/css/zTreeStyle/img/diy/1_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Themes/default/lib/zTree/css/zTreeStyle/img/diy/1_open.png -------------------------------------------------------------------------------- /UCsoft.Web/Themes/default/lib/zTree/css/zTreeStyle/img/diy/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Themes/default/lib/zTree/css/zTreeStyle/img/diy/2.png -------------------------------------------------------------------------------- /UCsoft.Web/Themes/default/lib/zTree/css/zTreeStyle/img/diy/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Themes/default/lib/zTree/css/zTreeStyle/img/diy/3.png -------------------------------------------------------------------------------- /UCsoft.Web/Themes/default/lib/zTree/css/zTreeStyle/img/diy/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Themes/default/lib/zTree/css/zTreeStyle/img/diy/4.png -------------------------------------------------------------------------------- /UCsoft.Web/Themes/default/lib/zTree/css/zTreeStyle/img/diy/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Themes/default/lib/zTree/css/zTreeStyle/img/diy/5.png -------------------------------------------------------------------------------- /UCsoft.Web/Themes/default/lib/zTree/css/zTreeStyle/img/diy/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Themes/default/lib/zTree/css/zTreeStyle/img/diy/6.png -------------------------------------------------------------------------------- /UCsoft.Web/Themes/default/lib/zTree/css/zTreeStyle/img/diy/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Themes/default/lib/zTree/css/zTreeStyle/img/diy/7.png -------------------------------------------------------------------------------- /UCsoft.Web/Themes/default/lib/zTree/css/zTreeStyle/img/diy/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Themes/default/lib/zTree/css/zTreeStyle/img/diy/8.png -------------------------------------------------------------------------------- /UCsoft.Web/Themes/default/lib/zTree/css/zTreeStyle/img/diy/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Themes/default/lib/zTree/css/zTreeStyle/img/diy/9.png -------------------------------------------------------------------------------- /UCsoft.Web/Themes/default/lib/zTree/css/zTreeStyle/img/line_conn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Themes/default/lib/zTree/css/zTreeStyle/img/line_conn.gif -------------------------------------------------------------------------------- /UCsoft.Web/Themes/default/lib/zTree/css/zTreeStyle/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Themes/default/lib/zTree/css/zTreeStyle/img/loading.gif -------------------------------------------------------------------------------- /UCsoft.Web/Themes/default/lib/zTree/css/zTreeStyle/img/zTreeStandard.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Themes/default/lib/zTree/css/zTreeStyle/img/zTreeStandard.gif -------------------------------------------------------------------------------- /UCsoft.Web/Themes/default/lib/zTree/css/zTreeStyle/img/zTreeStandard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/UCsoft.Web/Themes/default/lib/zTree/css/zTreeStyle/img/zTreeStandard.png -------------------------------------------------------------------------------- /UCsoft.Web/Web.Debug.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 17 | 18 | 29 | 30 | -------------------------------------------------------------------------------- /UCsoft.Web/Web.Release.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 17 | 18 | 19 | 30 | 31 | -------------------------------------------------------------------------------- /UCsoft.Web/ie6update.html: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 亲,您的浏览器好像OUT了哦! 7 | 8 | 9 | 10 |
11 | 12 | 下载最新版火狐浏览器 13 | 下载最新版本IE浏览器 14 | 下载最新版本谷歌浏览器 15 | 下载最新版本Safari浏览器 16 | 17 |
18 | 19 | 20 | -------------------------------------------------------------------------------- /UCsoft.sln.GhostDoc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | .\Help 13 | UCsoft 14 | 15 | 16 | true 17 | false 18 | false 19 | false 20 | 21 | 22 | true 23 | false 24 | false 25 | false 26 | true 27 | true 28 | false 29 | 30 | 31 | true 32 | 33 | 34 | 35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /mysql-connector-net-6.8.3.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/mysql-connector-net-6.8.3.msi -------------------------------------------------------------------------------- /packages/Common.Logging.2.1.2/Common.Logging.2.1.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/Common.Logging.2.1.2/Common.Logging.2.1.2.nupkg -------------------------------------------------------------------------------- /packages/Common.Logging.2.1.2/lib/net35/Common.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/Common.Logging.2.1.2/lib/net35/Common.Logging.dll -------------------------------------------------------------------------------- /packages/Common.Logging.2.1.2/lib/net40/Common.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/Common.Logging.2.1.2/lib/net40/Common.Logging.dll -------------------------------------------------------------------------------- /packages/ELinq.0.6.1/ELinq.0.6.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/ELinq.0.6.1/ELinq.0.6.1.nupkg -------------------------------------------------------------------------------- /packages/ELinq.0.6.1/lib/net35/ELinq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/ELinq.0.6.1/lib/net35/ELinq.dll -------------------------------------------------------------------------------- /packages/ELinq.0.6.1/lib/net40/ELinq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/ELinq.0.6.1/lib/net40/ELinq.dll -------------------------------------------------------------------------------- /packages/ELinq.0.6.1/lib/net45/ELinq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/ELinq.0.6.1/lib/net45/ELinq.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Mvc.4.0.30506.0/Microsoft.AspNet.Mvc.4.0.30506.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/Microsoft.AspNet.Mvc.4.0.30506.0/Microsoft.AspNet.Mvc.4.0.30506.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Mvc.4.0.30506.0/lib/net40/System.Web.Mvc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/Microsoft.AspNet.Mvc.4.0.30506.0/lib/net40/System.Web.Mvc.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Mvc.4.0.30506.0/lib/net40/zh-Hans/System.Web.Mvc.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/Microsoft.AspNet.Mvc.4.0.30506.0/lib/net40/zh-Hans/System.Web.Mvc.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Mvc.FixedDisplayModes.1.0.0/Microsoft.AspNet.Mvc.FixedDisplayModes.1.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/Microsoft.AspNet.Mvc.FixedDisplayModes.1.0.0/Microsoft.AspNet.Mvc.FixedDisplayModes.1.0.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Mvc.FixedDisplayModes.1.0.0/lib/net40/Microsoft.Web.Mvc.FixedDisplayModes.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/Microsoft.AspNet.Mvc.FixedDisplayModes.1.0.0/lib/net40/Microsoft.Web.Mvc.FixedDisplayModes.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Mvc.zh-Hans.4.0.30506.0/Microsoft.AspNet.Mvc.zh-Hans.4.0.30506.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/Microsoft.AspNet.Mvc.zh-Hans.4.0.30506.0/Microsoft.AspNet.Mvc.zh-Hans.4.0.30506.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Mvc.zh-Hans.4.0.30506.0/lib/net40/zh-Hans/System.Web.Mvc.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/Microsoft.AspNet.Mvc.zh-Hans.4.0.30506.0/lib/net40/zh-Hans/System.Web.Mvc.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Razor.2.0.30506.0/Microsoft.AspNet.Razor.2.0.30506.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/Microsoft.AspNet.Razor.2.0.30506.0/Microsoft.AspNet.Razor.2.0.30506.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Razor.2.0.30506.0/lib/net40/System.Web.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/Microsoft.AspNet.Razor.2.0.30506.0/lib/net40/System.Web.Razor.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Razor.2.0.30506.0/lib/net40/zh-Hans/System.Web.Razor.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/Microsoft.AspNet.Razor.2.0.30506.0/lib/net40/zh-Hans/System.Web.Razor.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Razor.zh-Hans.2.0.30506.0/Microsoft.AspNet.Razor.zh-Hans.2.0.30506.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/Microsoft.AspNet.Razor.zh-Hans.2.0.30506.0/Microsoft.AspNet.Razor.zh-Hans.2.0.30506.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Razor.zh-Hans.2.0.30506.0/lib/net40/zh-Hans/System.Web.Razor.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/Microsoft.AspNet.Razor.zh-Hans.2.0.30506.0/lib/net40/zh-Hans/System.Web.Razor.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Web.Optimization.1.1.0/Microsoft.AspNet.Web.Optimization.1.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/Microsoft.AspNet.Web.Optimization.1.1.0/Microsoft.AspNet.Web.Optimization.1.1.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Web.Optimization.1.1.0/lib/net40/System.Web.Optimization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/Microsoft.AspNet.Web.Optimization.1.1.0/lib/net40/System.Web.Optimization.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.4.0.30506.0/Microsoft.AspNet.WebApi.4.0.30506.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/Microsoft.AspNet.WebApi.4.0.30506.0/Microsoft.AspNet.WebApi.4.0.30506.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.Client.4.0.30506.0/Microsoft.AspNet.WebApi.Client.4.0.30506.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/Microsoft.AspNet.WebApi.Client.4.0.30506.0/Microsoft.AspNet.WebApi.Client.4.0.30506.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.Client.4.0.30506.0/lib/net40/System.Net.Http.Formatting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/Microsoft.AspNet.WebApi.Client.4.0.30506.0/lib/net40/System.Net.Http.Formatting.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.Client.4.0.30506.0/lib/net40/zh-Hans/System.Net.Http.Formatting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/Microsoft.AspNet.WebApi.Client.4.0.30506.0/lib/net40/zh-Hans/System.Net.Http.Formatting.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.Client.zh-Hans.4.0.30506.0/Microsoft.AspNet.WebApi.Client.zh-Hans.4.0.30506.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/Microsoft.AspNet.WebApi.Client.zh-Hans.4.0.30506.0/Microsoft.AspNet.WebApi.Client.zh-Hans.4.0.30506.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.Client.zh-Hans.4.0.30506.0/lib/net40/zh-Hans/System.Net.Http.Formatting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/Microsoft.AspNet.WebApi.Client.zh-Hans.4.0.30506.0/lib/net40/zh-Hans/System.Net.Http.Formatting.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.Core.4.0.30506.0/Microsoft.AspNet.WebApi.Core.4.0.30506.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/Microsoft.AspNet.WebApi.Core.4.0.30506.0/Microsoft.AspNet.WebApi.Core.4.0.30506.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.Core.4.0.30506.0/content/web.config.transform: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.Core.4.0.30506.0/lib/net40/System.Web.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/Microsoft.AspNet.WebApi.Core.4.0.30506.0/lib/net40/System.Web.Http.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.Core.4.0.30506.0/lib/net40/zh-Hans/System.Web.Http.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/Microsoft.AspNet.WebApi.Core.4.0.30506.0/lib/net40/zh-Hans/System.Web.Http.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.Core.zh-Hans.4.0.30506.0/Microsoft.AspNet.WebApi.Core.zh-Hans.4.0.30506.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/Microsoft.AspNet.WebApi.Core.zh-Hans.4.0.30506.0/Microsoft.AspNet.WebApi.Core.zh-Hans.4.0.30506.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.Core.zh-Hans.4.0.30506.0/lib/net40/zh-Hans/System.Web.Http.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/Microsoft.AspNet.WebApi.Core.zh-Hans.4.0.30506.0/lib/net40/zh-Hans/System.Web.Http.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.WebHost.4.0.30506.0/Microsoft.AspNet.WebApi.WebHost.4.0.30506.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/Microsoft.AspNet.WebApi.WebHost.4.0.30506.0/Microsoft.AspNet.WebApi.WebHost.4.0.30506.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.WebHost.4.0.30506.0/lib/net40/System.Web.Http.WebHost.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/Microsoft.AspNet.WebApi.WebHost.4.0.30506.0/lib/net40/System.Web.Http.WebHost.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.WebHost.4.0.30506.0/lib/net40/zh-Hans/System.Web.Http.WebHost.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/Microsoft.AspNet.WebApi.WebHost.4.0.30506.0/lib/net40/zh-Hans/System.Web.Http.WebHost.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.WebHost.zh-Hans.4.0.30506.0/Microsoft.AspNet.WebApi.WebHost.zh-Hans.4.0.30506.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/Microsoft.AspNet.WebApi.WebHost.zh-Hans.4.0.30506.0/Microsoft.AspNet.WebApi.WebHost.zh-Hans.4.0.30506.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.WebHost.zh-Hans.4.0.30506.0/lib/net40/zh-Hans/System.Web.Http.WebHost.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/Microsoft.AspNet.WebApi.WebHost.zh-Hans.4.0.30506.0/lib/net40/zh-Hans/System.Web.Http.WebHost.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.2.0.30506.0/Microsoft.AspNet.WebPages.2.0.30506.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/Microsoft.AspNet.WebPages.2.0.30506.0/Microsoft.AspNet.WebPages.2.0.30506.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.2.0.30506.0/lib/net40/System.Web.Helpers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/Microsoft.AspNet.WebPages.2.0.30506.0/lib/net40/System.Web.Helpers.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.2.0.30506.0/lib/net40/System.Web.WebPages.Deployment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/Microsoft.AspNet.WebPages.2.0.30506.0/lib/net40/System.Web.WebPages.Deployment.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.2.0.30506.0/lib/net40/System.Web.WebPages.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/Microsoft.AspNet.WebPages.2.0.30506.0/lib/net40/System.Web.WebPages.Razor.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.2.0.30506.0/lib/net40/System.Web.WebPages.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/Microsoft.AspNet.WebPages.2.0.30506.0/lib/net40/System.Web.WebPages.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.2.0.30506.0/lib/net40/zh-Hans/System.Web.Helpers.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/Microsoft.AspNet.WebPages.2.0.30506.0/lib/net40/zh-Hans/System.Web.Helpers.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.2.0.30506.0/lib/net40/zh-Hans/System.Web.WebPages.Deployment.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/Microsoft.AspNet.WebPages.2.0.30506.0/lib/net40/zh-Hans/System.Web.WebPages.Deployment.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.2.0.30506.0/lib/net40/zh-Hans/System.Web.WebPages.Razor.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/Microsoft.AspNet.WebPages.2.0.30506.0/lib/net40/zh-Hans/System.Web.WebPages.Razor.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.2.0.30506.0/lib/net40/zh-Hans/System.Web.WebPages.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/Microsoft.AspNet.WebPages.2.0.30506.0/lib/net40/zh-Hans/System.Web.WebPages.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.zh-Hans.2.0.30506.0/Microsoft.AspNet.WebPages.zh-Hans.2.0.30506.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/Microsoft.AspNet.WebPages.zh-Hans.2.0.30506.0/Microsoft.AspNet.WebPages.zh-Hans.2.0.30506.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.zh-Hans.2.0.30506.0/lib/net40/zh-Hans/System.Web.Helpers.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/Microsoft.AspNet.WebPages.zh-Hans.2.0.30506.0/lib/net40/zh-Hans/System.Web.Helpers.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.zh-Hans.2.0.30506.0/lib/net40/zh-Hans/System.Web.WebPages.Deployment.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/Microsoft.AspNet.WebPages.zh-Hans.2.0.30506.0/lib/net40/zh-Hans/System.Web.WebPages.Deployment.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.zh-Hans.2.0.30506.0/lib/net40/zh-Hans/System.Web.WebPages.Razor.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/Microsoft.AspNet.WebPages.zh-Hans.2.0.30506.0/lib/net40/zh-Hans/System.Web.WebPages.Razor.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.zh-Hans.2.0.30506.0/lib/net40/zh-Hans/System.Web.WebPages.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/Microsoft.AspNet.WebPages.zh-Hans.2.0.30506.0/lib/net40/zh-Hans/System.Web.WebPages.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Net.Http.2.0.20710.0/Microsoft.Net.Http.2.0.20710.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/Microsoft.Net.Http.2.0.20710.0/Microsoft.Net.Http.2.0.20710.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.Net.Http.2.0.20710.0/lib/net40/System.Net.Http.WebRequest.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/Microsoft.Net.Http.2.0.20710.0/lib/net40/System.Net.Http.WebRequest.dll -------------------------------------------------------------------------------- /packages/Microsoft.Net.Http.2.0.20710.0/lib/net40/System.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/Microsoft.Net.Http.2.0.20710.0/lib/net40/System.Net.Http.dll -------------------------------------------------------------------------------- /packages/Microsoft.Net.Http.2.0.20710.0/lib/net40/zh-Hans/System.Net.Http.WebRequest.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/Microsoft.Net.Http.2.0.20710.0/lib/net40/zh-Hans/System.Net.Http.WebRequest.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Net.Http.2.0.20710.0/lib/net40/zh-Hans/System.Net.Http.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/Microsoft.Net.Http.2.0.20710.0/lib/net40/zh-Hans/System.Net.Http.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Net.Http.2.0.20710.0/lib/net45/_._: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /packages/Microsoft.Net.Http.zh-Hans.2.0.20710.0/Microsoft.Net.Http.zh-Hans.2.0.20710.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/Microsoft.Net.Http.zh-Hans.2.0.20710.0/Microsoft.Net.Http.zh-Hans.2.0.20710.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.Net.Http.zh-Hans.2.0.20710.0/lib/net40/zh-Hans/System.Net.Http.WebRequest.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/Microsoft.Net.Http.zh-Hans.2.0.20710.0/lib/net40/zh-Hans/System.Net.Http.WebRequest.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Net.Http.zh-Hans.2.0.20710.0/lib/net40/zh-Hans/System.Net.Http.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/Microsoft.Net.Http.zh-Hans.2.0.20710.0/lib/net40/zh-Hans/System.Net.Http.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Web.Infrastructure.1.0.0.0/Microsoft.Web.Infrastructure.1.0.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/Microsoft.Web.Infrastructure.1.0.0.0/Microsoft.Web.Infrastructure.1.0.0.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.Web.Infrastructure.1.0.0.0/lib/net40/Microsoft.Web.Infrastructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/Microsoft.Web.Infrastructure.1.0.0.0/lib/net40/Microsoft.Web.Infrastructure.dll -------------------------------------------------------------------------------- /packages/MySql.Data.6.8.3/MySql.Data.6.8.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/MySql.Data.6.8.3/MySql.Data.6.8.3.nupkg -------------------------------------------------------------------------------- /packages/MySql.Data.6.8.3/lib/net20-cf/MySql.Data.cf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/MySql.Data.6.8.3/lib/net20-cf/MySql.Data.cf.dll -------------------------------------------------------------------------------- /packages/MySql.Data.6.8.3/lib/net20/MySql.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/MySql.Data.6.8.3/lib/net20/MySql.Data.dll -------------------------------------------------------------------------------- /packages/MySql.Data.6.8.3/lib/net40/MySql.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/MySql.Data.6.8.3/lib/net40/MySql.Data.dll -------------------------------------------------------------------------------- /packages/MySql.Data.6.8.3/lib/net45/MySql.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/MySql.Data.6.8.3/lib/net45/MySql.Data.dll -------------------------------------------------------------------------------- /packages/MySql.Data.6.8.3/lib/netcore45/MySql.Data.RT.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/MySql.Data.6.8.3/lib/netcore45/MySql.Data.RT.dll -------------------------------------------------------------------------------- /packages/NLite.0.9.5.7/NLite.0.9.5.7.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/NLite.0.9.5.7/NLite.0.9.5.7.nupkg -------------------------------------------------------------------------------- /packages/NLite.0.9.5.7/lib/net35/NLite.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/NLite.0.9.5.7/lib/net35/NLite.dll -------------------------------------------------------------------------------- /packages/NLite.0.9.5.7/lib/net40/NLite.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/NLite.0.9.5.7/lib/net40/NLite.dll -------------------------------------------------------------------------------- /packages/NLite.0.9.5.7/lib/net45/NLite.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/NLite.0.9.5.7/lib/net45/NLite.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.4.5.11/Newtonsoft.Json.4.5.11.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/Newtonsoft.Json.4.5.11/Newtonsoft.Json.4.5.11.nupkg -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.4.5.11/lib/net20/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/Newtonsoft.Json.4.5.11/lib/net20/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.4.5.11/lib/net35/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/Newtonsoft.Json.4.5.11/lib/net35/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.4.5.11/lib/net40/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/Newtonsoft.Json.4.5.11/lib/net40/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.4.5.11/lib/portable-net40%2Bsl4%2Bwp7%2Bwin8/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/Newtonsoft.Json.4.5.11/lib/portable-net40%2Bsl4%2Bwp7%2Bwin8/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.4.5.11/lib/portable-net40+sl4+wp7+win8/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/Newtonsoft.Json.4.5.11/lib/portable-net40+sl4+wp7+win8/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.4.5.11/lib/sl3-wp/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/Newtonsoft.Json.4.5.11/lib/sl3-wp/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.4.5.11/lib/sl4-windowsphone71/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/Newtonsoft.Json.4.5.11/lib/sl4-windowsphone71/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.4.5.11/lib/sl4/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/Newtonsoft.Json.4.5.11/lib/sl4/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.4.5.11/lib/winrt45/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/Newtonsoft.Json.4.5.11/lib/winrt45/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Spring.Core.2.0.0-RC1/Spring.Core.2.0.0-RC1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/Spring.Core.2.0.0-RC1/Spring.Core.2.0.0-RC1.nupkg -------------------------------------------------------------------------------- /packages/Spring.Core.2.0.0-RC1/lib/net35/Spring.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/Spring.Core.2.0.0-RC1/lib/net35/Spring.Core.dll -------------------------------------------------------------------------------- /packages/Spring.Core.2.0.0-RC1/lib/net40/Spring.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/Spring.Core.2.0.0-RC1/lib/net40/Spring.Core.dll -------------------------------------------------------------------------------- /packages/Spring.Core.2.0.0-RC1/lib/net45/Spring.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/Spring.Core.2.0.0-RC1/lib/net45/Spring.Core.dll -------------------------------------------------------------------------------- /packages/Spring.Web.2.0.0-RC1/Spring.Web.2.0.0-RC1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/Spring.Web.2.0.0-RC1/Spring.Web.2.0.0-RC1.nupkg -------------------------------------------------------------------------------- /packages/Spring.Web.2.0.0-RC1/lib/net35/Spring.Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/Spring.Web.2.0.0-RC1/lib/net35/Spring.Web.dll -------------------------------------------------------------------------------- /packages/Spring.Web.2.0.0-RC1/lib/net40/Spring.Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/Spring.Web.2.0.0-RC1/lib/net40/Spring.Web.dll -------------------------------------------------------------------------------- /packages/Spring.Web.2.0.0-RC1/lib/net45/Spring.Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/Spring.Web.2.0.0-RC1/lib/net45/Spring.Web.dll -------------------------------------------------------------------------------- /packages/Spring.Web.Mvc4.2.0.0-RC1/Spring.Web.Mvc4.2.0.0-RC1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/Spring.Web.Mvc4.2.0.0-RC1/Spring.Web.Mvc4.2.0.0-RC1.nupkg -------------------------------------------------------------------------------- /packages/Spring.Web.Mvc4.2.0.0-RC1/lib/net40/Spring.Web.Mvc4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/Spring.Web.Mvc4.2.0.0-RC1/lib/net40/Spring.Web.Mvc4.dll -------------------------------------------------------------------------------- /packages/Spring.Web.Mvc4.2.0.0-RC1/lib/net45/Spring.Web.Mvc4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/Spring.Web.Mvc4.2.0.0-RC1/lib/net45/Spring.Web.Mvc4.dll -------------------------------------------------------------------------------- /packages/System.Linq.Dynamic.1.0.2/System.Linq.Dynamic.1.0.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/System.Linq.Dynamic.1.0.2/System.Linq.Dynamic.1.0.2.nupkg -------------------------------------------------------------------------------- /packages/System.Linq.Dynamic.1.0.2/lib/net40/System.Linq.Dynamic.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/System.Linq.Dynamic.1.0.2/lib/net40/System.Linq.Dynamic.dll -------------------------------------------------------------------------------- /packages/WebGrease.1.3.0/WebGrease.1.3.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/WebGrease.1.3.0/WebGrease.1.3.0.nupkg -------------------------------------------------------------------------------- /packages/WebGrease.1.3.0/lib/Antlr3.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/WebGrease.1.3.0/lib/Antlr3.Runtime.dll -------------------------------------------------------------------------------- /packages/WebGrease.1.3.0/lib/WebGrease.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/WebGrease.1.3.0/lib/WebGrease.dll -------------------------------------------------------------------------------- /packages/log4net.2.0.3/lib/net10-full/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/log4net.2.0.3/lib/net10-full/log4net.dll -------------------------------------------------------------------------------- /packages/log4net.2.0.3/lib/net11-full/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/log4net.2.0.3/lib/net11-full/log4net.dll -------------------------------------------------------------------------------- /packages/log4net.2.0.3/lib/net20-full/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/log4net.2.0.3/lib/net20-full/log4net.dll -------------------------------------------------------------------------------- /packages/log4net.2.0.3/lib/net35-client/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/log4net.2.0.3/lib/net35-client/log4net.dll -------------------------------------------------------------------------------- /packages/log4net.2.0.3/lib/net35-full/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/log4net.2.0.3/lib/net35-full/log4net.dll -------------------------------------------------------------------------------- /packages/log4net.2.0.3/lib/net40-client/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/log4net.2.0.3/lib/net40-client/log4net.dll -------------------------------------------------------------------------------- /packages/log4net.2.0.3/lib/net40-full/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/log4net.2.0.3/lib/net40-full/log4net.dll -------------------------------------------------------------------------------- /packages/log4net.2.0.3/log4net.2.0.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/log4net.2.0.3/log4net.2.0.3.nupkg -------------------------------------------------------------------------------- /packages/repositories.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /packages/routedebugger.1.0.0/lib/RouteDebug.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/routedebugger.1.0.0/lib/RouteDebug.dll -------------------------------------------------------------------------------- /packages/routedebugger.1.0.0/readme.txt: -------------------------------------------------------------------------------- 1 | See http://haacked.com/archive/2008/03/13/url-routing-debugger.aspx for more details. 2 | 3 | To use this, place a call to 4 | 5 | RouteDebug.RouteDebugger.RewriteRoutesForTesting(RouteTable.Routes); 6 | 7 | after all your routes are registered. -------------------------------------------------------------------------------- /packages/routedebugger.1.0.0/routedebugger.1.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fordlee/UCsoft/7f337faeed4f3bae1a24dfdf888d5e75d2d9b71b/packages/routedebugger.1.0.0/routedebugger.1.0.0.nupkg --------------------------------------------------------------------------------