├── .gitignore ├── .nuget ├── NuGet.Config └── NuGet.targets ├── .tfignore ├── Backup ├── LMS.PrintLabel │ └── LMS.PrintLabelWeb │ │ ├── CSS │ │ └── print.css │ │ ├── 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 │ │ └── PrintController.cs │ │ ├── Global.asax │ │ ├── Global.asax.cs │ │ ├── IOC │ │ └── PrintLabelWebDependencyRegistrar.cs │ │ ├── Images │ │ ├── Print │ │ │ └── TNT │ │ │ │ ├── postnl.jpg │ │ │ │ ├── priority.jpg │ │ │ │ └── selec.jpg │ │ └── loader.gif │ │ ├── JS │ │ ├── jquery-1.7.1.min.js │ │ └── print.js │ │ ├── LMS.PrintLabelWeb.csproj │ │ ├── Models │ │ ├── ApplicationInfoModel.cs │ │ ├── CustomerOrderInfoModel.cs │ │ ├── PrinterTemplateViewModel.cs │ │ └── PrinterViewModel.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── PublishProfiles │ │ │ └── LMS.PrintLabelWeb.pubxml │ │ ├── Scripts │ │ ├── MicrosoftAjax.debug.js │ │ ├── MicrosoftAjax.js │ │ ├── MicrosoftMvcAjax.debug.js │ │ ├── MicrosoftMvcAjax.js │ │ ├── MicrosoftMvcValidation.debug.js │ │ ├── MicrosoftMvcValidation.js │ │ ├── jquery-1.7.1.intellisense.js │ │ ├── jquery-1.7.1.js │ │ ├── jquery-1.7.1.min.js │ │ ├── jquery-ui-1.8.20.js │ │ ├── jquery-ui-1.8.20.min.js │ │ ├── jquery.unobtrusive-ajax.js │ │ ├── jquery.unobtrusive-ajax.min.js │ │ ├── jquery.validate-vsdoc.js │ │ ├── jquery.validate.js │ │ ├── jquery.validate.min.js │ │ ├── jquery.validate.unobtrusive.js │ │ ├── jquery.validate.unobtrusive.min.js │ │ └── modernizr-2.5.3.js │ │ ├── UserCenter │ │ └── LMSAuthAttribute.cs │ │ ├── Views │ │ ├── Print │ │ │ ├── AddressLabelPrint.cshtml │ │ │ └── _PrintList.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ └── _Layout.cshtml │ │ ├── Web.config │ │ └── _ViewStart.cshtml │ │ ├── Web.Debug.config │ │ ├── Web.Release.config │ │ ├── Web.config │ │ ├── WorkContext.cs │ │ └── packages.config ├── LMS.Web.FrontDesk │ ├── LMS.Web.FubTrack │ │ ├── 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 │ │ ├── Css │ │ │ ├── Css │ │ │ │ └── base.css │ │ │ └── base.css │ │ ├── Global.asax │ │ ├── Images │ │ │ ├── 20131220020547856.jpg │ │ │ ├── 89.GIF │ │ │ ├── FYB_03.png │ │ │ ├── FYB_07.jpg │ │ │ ├── Images │ │ │ │ ├── 20131220020547856.jpg │ │ │ │ ├── 89.GIF │ │ │ │ ├── FYB_03.png │ │ │ │ ├── FYB_07.jpg │ │ │ │ ├── bg_bn.png │ │ │ │ └── n1.jpg │ │ │ ├── bg_bn.png │ │ │ └── n1.jpg │ │ ├── LMS.Web.FubTrack.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Scripts │ │ │ ├── MicrosoftAjax.debug.js │ │ │ ├── MicrosoftAjax.js │ │ │ ├── MicrosoftMvcAjax.debug.js │ │ │ ├── MicrosoftMvcAjax.js │ │ │ ├── MicrosoftMvcValidation.debug.js │ │ │ ├── MicrosoftMvcValidation.js │ │ │ ├── jquery-1.7.1.intellisense.js │ │ │ ├── jquery-1.7.1.js │ │ │ ├── jquery-1.7.1.min.js │ │ │ ├── jquery-ui-1.8.20.js │ │ │ ├── jquery-ui-1.8.20.min.js │ │ │ ├── jquery.unobtrusive-ajax.js │ │ │ ├── jquery.unobtrusive-ajax.min.js │ │ │ ├── jquery.validate-vsdoc.js │ │ │ ├── jquery.validate.js │ │ │ ├── jquery.validate.min.js │ │ │ ├── jquery.validate.unobtrusive.js │ │ │ ├── jquery.validate.unobtrusive.min.js │ │ │ └── modernizr-2.5.3.js │ │ ├── Views │ │ │ ├── Home │ │ │ │ ├── Index.cshtml │ │ │ │ └── Index2.cshtml │ │ │ ├── Shared │ │ │ │ ├── Error.cshtml │ │ │ │ └── _Layout.cshtml │ │ │ ├── Web.config │ │ │ └── _ViewStart.cshtml │ │ ├── Web.Debug.config │ │ ├── Web.Release.config │ │ ├── Web.config │ │ └── packages.config │ ├── LMS.Web.Track │ │ ├── 404.html │ │ ├── Global.asax │ │ ├── LMS.Web.Track.csproj │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── PublishProfiles │ │ │ │ └── YunPost.pubxml │ │ ├── Scripts │ │ │ ├── MicrosoftAjax.debug.js │ │ │ ├── MicrosoftAjax.js │ │ │ ├── MicrosoftMvcAjax.debug.js │ │ │ ├── MicrosoftMvcAjax.js │ │ │ ├── MicrosoftMvcValidation.debug.js │ │ │ ├── MicrosoftMvcValidation.js │ │ │ ├── ZeroClipboard.js │ │ │ ├── ZeroClipboard.min.js │ │ │ ├── ZeroClipboard.swf │ │ │ ├── autocomplete │ │ │ │ ├── jquery-1.9.1.js │ │ │ │ ├── jquery-ui.css │ │ │ │ └── jquery-ui.js │ │ │ ├── chosen │ │ │ │ ├── chosen-sprite.png │ │ │ │ ├── chosen.css │ │ │ │ ├── chosen.jquery.js │ │ │ │ └── index.html │ │ │ ├── client.js │ │ │ ├── clipboard.swf │ │ │ ├── jq1.4.js │ │ │ ├── jquery-1.4.4.min.js │ │ │ ├── jquery-1.7.1.intellisense.js │ │ │ ├── jquery-1.7.1.js │ │ │ ├── jquery-1.7.1.min.js │ │ │ ├── jquery-powerSwitch-min.js │ │ │ ├── jquery-ui-1.8.20.js │ │ │ ├── jquery-ui-1.8.20.min.js │ │ │ ├── jquery.unobtrusive-ajax.js │ │ │ ├── jquery.unobtrusive-ajax.min.js │ │ │ ├── jquery.validate-vsdoc.js │ │ │ ├── jquery.validate.js │ │ │ ├── jquery.validate.min.js │ │ │ ├── jquery.validate.unobtrusive.js │ │ │ ├── jquery.validate.unobtrusive.min.js │ │ │ ├── jquery.zclip.js │ │ │ ├── jquery.zclip.min.js │ │ │ ├── modernizr-2.5.3.js │ │ │ ├── qq │ │ │ │ ├── brd.gif │ │ │ │ ├── ico.gif │ │ │ │ ├── qq.css │ │ │ │ └── qqservice.js │ │ │ └── website │ │ │ │ ├── UtilEvent.js │ │ │ │ ├── cookie.js │ │ │ │ ├── info_sch.js │ │ │ │ ├── jquery.soChange-min.js │ │ │ │ └── jquery.soChange.js │ │ ├── Views │ │ │ ├── Shared │ │ │ │ ├── Error.cshtml │ │ │ │ ├── _Layout.cshtml │ │ │ │ ├── _LogOnPartial.cshtml │ │ │ │ └── _ShowDialog.cshtml │ │ │ ├── Track │ │ │ │ ├── Detail.cshtml │ │ │ │ └── Index.cshtml │ │ │ ├── Web.config │ │ │ └── _ViewStart.cshtml │ │ ├── Web.config │ │ ├── css │ │ │ ├── base.css │ │ │ ├── public.css │ │ │ └── style.css │ │ ├── images │ │ │ ├── 2014.11_03.jpg │ │ │ ├── Sprite_1.png │ │ │ ├── Sprite_1.psd │ │ │ ├── bg.jpg │ │ │ ├── bn1.jpg │ │ │ ├── earch_btn.png │ │ │ ├── mwd_bg.gif │ │ │ ├── search_btn.jpg │ │ │ ├── search_btnI.jpg │ │ │ └── 订单查询定稿_03.jpg │ │ ├── js │ │ │ ├── ZeroClipboard.js │ │ │ ├── ZeroClipboard.min.js │ │ │ ├── ZeroClipboard.swf │ │ │ ├── client.js │ │ │ ├── clipboard.swf │ │ │ ├── jq1.4.js │ │ │ └── jquery-powerSwitch-min.js │ │ └── packages.config │ ├── LMS.Web.YSD-Express │ │ ├── 404.html │ │ ├── Global.asax │ │ ├── LMS.Web.YSD-Express.csproj │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── PublishProfiles │ │ │ │ └── LMS.Web.YSD-Express.pubxml │ │ ├── Scripts │ │ │ ├── MicrosoftAjax.debug.js │ │ │ ├── MicrosoftAjax.js │ │ │ ├── MicrosoftMvcAjax.debug.js │ │ │ ├── MicrosoftMvcAjax.js │ │ │ ├── MicrosoftMvcValidation.debug.js │ │ │ ├── MicrosoftMvcValidation.js │ │ │ ├── autocomplete │ │ │ │ ├── jquery-1.9.1.js │ │ │ │ ├── jquery-ui.css │ │ │ │ └── jquery-ui.js │ │ │ ├── chosen │ │ │ │ ├── chosen-sprite.png │ │ │ │ ├── chosen.css │ │ │ │ ├── chosen.jquery.js │ │ │ │ └── index.html │ │ │ ├── client.js │ │ │ ├── jquery-1.4.4.min.js │ │ │ ├── jquery-1.7.1.intellisense.js │ │ │ ├── jquery-1.7.1.js │ │ │ ├── jquery-1.7.1.min.js │ │ │ ├── jquery-powerSwitch-min.js │ │ │ ├── jquery-ui-1.8.20.js │ │ │ ├── jquery-ui-1.8.20.min.js │ │ │ ├── jquery.unobtrusive-ajax.js │ │ │ ├── jquery.unobtrusive-ajax.min.js │ │ │ ├── jquery.validate-vsdoc.js │ │ │ ├── jquery.validate.js │ │ │ ├── jquery.validate.min.js │ │ │ ├── jquery.validate.unobtrusive.js │ │ │ ├── jquery.validate.unobtrusive.min.js │ │ │ ├── modernizr-2.5.3.js │ │ │ ├── qq │ │ │ │ ├── brd.gif │ │ │ │ ├── ico.gif │ │ │ │ ├── qq.css │ │ │ │ └── qqservice.js │ │ │ └── website │ │ │ │ ├── UtilEvent.js │ │ │ │ ├── cookie.js │ │ │ │ ├── info_sch.js │ │ │ │ ├── jquery.soChange-min.js │ │ │ │ └── jquery.soChange.js │ │ ├── Views │ │ │ ├── Billing │ │ │ │ └── FreightTrial.cshtml │ │ │ ├── Home │ │ │ │ ├── About.cshtml │ │ │ │ ├── ContactUs.cshtml │ │ │ │ ├── Index.cshtml │ │ │ │ ├── ProductServices.cshtml │ │ │ │ ├── _About.cshtml │ │ │ │ ├── _CompanyNewPartial.cshtml │ │ │ │ ├── _HomeBannerPartial.cshtml │ │ │ │ ├── _NewsPartial.cshtml │ │ │ │ ├── _PartnersPartial.cshtml │ │ │ │ └── _PriceSearchPartial.cshtml │ │ │ ├── New │ │ │ │ ├── NewDetailed.cshtml │ │ │ │ └── NewList.cshtml │ │ │ ├── Shared │ │ │ │ ├── Error.cshtml │ │ │ │ ├── _Layout.cshtml │ │ │ │ ├── _LogOnPartial.cshtml │ │ │ │ └── _ShowDialog.cshtml │ │ │ ├── User │ │ │ │ ├── AddSuccess.cshtml │ │ │ │ └── AddUser.cshtml │ │ │ ├── Web.config │ │ │ └── _ViewStart.cshtml │ │ ├── Web.config │ │ ├── css │ │ │ ├── base.css │ │ │ ├── logistics.css │ │ │ ├── logistics_pub.css │ │ │ ├── logistics_style.css │ │ │ └── skin.css │ │ ├── images │ │ │ ├── 20140514-云途物流-02_03.jpg │ │ │ ├── 20140514-云途物流-02_05.jpg │ │ │ ├── 2342_03.jpg │ │ │ ├── 2342_17.jpg │ │ │ ├── 345.jpg │ │ │ ├── 404_03.jpg │ │ │ ├── 546456_03.jpg │ │ │ ├── 546456_07.jpg │ │ │ ├── 546456_08.jpg │ │ │ ├── asdasdsadasd_07.jpg │ │ │ ├── banner │ │ │ │ ├── 1.jpg │ │ │ │ ├── 2.jpg │ │ │ │ ├── 3.jpg │ │ │ │ ├── 4.jpg │ │ │ │ ├── 5.jpg │ │ │ │ ├── banner1.jpg │ │ │ │ ├── banner2.jpg │ │ │ │ ├── banner_in_03.jpg │ │ │ │ ├── banner_in_04.jpg │ │ │ │ ├── banner_in_05.jpg │ │ │ │ ├── banner_in_06.jpg │ │ │ │ ├── banner_in_07.jpg │ │ │ │ ├── bn1.jpg │ │ │ │ ├── bn2.jpg │ │ │ │ ├── bn3.jpg │ │ │ │ ├── bn4.jpg │ │ │ │ ├── bn5.jpg │ │ │ │ ├── bn6.jpg │ │ │ │ ├── bn7.jpg │ │ │ │ ├── default_04.jpg │ │ │ │ ├── default_04_2.jpg │ │ │ │ ├── default_04_3.jpg │ │ │ │ └── default_04_4.jpg │ │ │ ├── banner_1.jpg │ │ │ ├── banner_in_03.jpg │ │ │ ├── bd_icon.jpg │ │ │ ├── bg_1_03.jpg │ │ │ ├── bg_1_04.jpg │ │ │ ├── caro_icon.jpg │ │ │ ├── caro_icon2.jpg │ │ │ ├── certificate.png │ │ │ ├── circle_1.png │ │ │ ├── circle_2.png │ │ │ ├── clock_1.jpg │ │ │ ├── default2_03.jpg │ │ │ ├── default2_07.jpg │ │ │ ├── default2_10.jpg │ │ │ ├── default_01.jpg │ │ │ ├── default_04.jpg │ │ │ ├── default_06.jpg │ │ │ ├── default_20.jpg │ │ │ ├── default_25.jpg │ │ │ ├── delete.png │ │ │ ├── grid.png │ │ │ ├── house.jpg │ │ │ ├── idxC_bg_03.jpg │ │ │ ├── idxC_bg_07.jpg │ │ │ ├── idx_1.jpg │ │ │ ├── idx_2.jpg │ │ │ ├── idx_3.jpg │ │ │ ├── idx_4.jpg │ │ │ ├── idx_5.jpg │ │ │ ├── idx_6.jpg │ │ │ ├── index_06.jpg │ │ │ ├── index_06.png │ │ │ ├── index_15.jpg │ │ │ ├── index_18.jpg │ │ │ ├── index_20.jpg │ │ │ ├── index_21.jpg │ │ │ ├── index_24.jpg │ │ │ ├── index_30.jpg │ │ │ ├── index_32.jpg │ │ │ ├── logo.jpg │ │ │ ├── logo.png │ │ │ ├── logo11.jpg │ │ │ ├── logo2.jpg │ │ │ ├── logo2.png │ │ │ ├── logo_1.png │ │ │ ├── logo_2.jpg │ │ │ ├── logo_white.png │ │ │ ├── menu_in.png │ │ │ ├── menu_in_03.png │ │ │ ├── menu_in_05.png │ │ │ ├── menu_in_07.png │ │ │ ├── menu_in_09.png │ │ │ ├── menu_in_11.jpg │ │ │ ├── more_03.jpg │ │ │ ├── more_07.jpg │ │ │ ├── mul_ll_03.jpg │ │ │ ├── nav_icon.jpg │ │ │ ├── nav_icon1.jpg │ │ │ ├── nav_icon2.jpg │ │ │ ├── nav_icon_03.jpg │ │ │ ├── partner.jpg │ │ │ ├── phone.jpg │ │ │ ├── postyun.gif │ │ │ ├── product_bn.jpg │ │ │ ├── quan_1.png │ │ │ ├── quan_2.png │ │ │ ├── quan_3.png │ │ │ ├── rgst_03.jpg │ │ │ ├── rgst_07.jpg │ │ │ ├── rgst_11.jpg │ │ │ ├── share_03.jpg │ │ │ ├── share_05.jpg │ │ │ ├── share_07.jpg │ │ │ ├── share_09.jpg │ │ │ ├── share_1.jpg │ │ │ ├── share_2.jpg │ │ │ ├── share_3.jpg │ │ │ ├── small.jpg │ │ │ ├── srarch_bg_07.jpg │ │ │ ├── u_home.jpg │ │ │ ├── uadmin_logo.png │ │ │ ├── weichat_17.jpg │ │ │ ├── welcome_03.png │ │ │ └── year.png │ │ └── packages.config │ ├── LMS.Web.YTWL │ │ ├── 404.html │ │ ├── Global.asax │ │ ├── LMS.Web.YTWL.csproj │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── PublishProfiles │ │ │ │ └── LMSYTWL.pubxml │ │ ├── Scripts │ │ │ ├── MicrosoftAjax.debug.js │ │ │ ├── MicrosoftAjax.js │ │ │ ├── MicrosoftMvcAjax.debug.js │ │ │ ├── MicrosoftMvcAjax.js │ │ │ ├── MicrosoftMvcValidation.debug.js │ │ │ ├── MicrosoftMvcValidation.js │ │ │ ├── autocomplete │ │ │ │ ├── jquery-1.9.1.js │ │ │ │ ├── jquery-ui.css │ │ │ │ └── jquery-ui.js │ │ │ ├── chosen │ │ │ │ ├── chosen-sprite.png │ │ │ │ ├── chosen.css │ │ │ │ ├── chosen.jquery.js │ │ │ │ └── index.html │ │ │ ├── client.js │ │ │ ├── jquery-1.4.4.min.js │ │ │ ├── jquery-1.7.1.intellisense.js │ │ │ ├── jquery-1.7.1.js │ │ │ ├── jquery-1.7.1.min.js │ │ │ ├── jquery-powerSwitch-min.js │ │ │ ├── jquery-ui-1.8.20.js │ │ │ ├── jquery-ui-1.8.20.min.js │ │ │ ├── jquery.unobtrusive-ajax.js │ │ │ ├── jquery.unobtrusive-ajax.min.js │ │ │ ├── jquery.validate-vsdoc.js │ │ │ ├── jquery.validate.js │ │ │ ├── jquery.validate.min.js │ │ │ ├── jquery.validate.unobtrusive.js │ │ │ ├── jquery.validate.unobtrusive.min.js │ │ │ ├── modernizr-2.5.3.js │ │ │ ├── qq │ │ │ │ ├── brd.gif │ │ │ │ ├── ico.gif │ │ │ │ ├── qq.css │ │ │ │ └── qqservice.js │ │ │ └── website │ │ │ │ ├── UtilEvent.js │ │ │ │ ├── cookie.js │ │ │ │ ├── info_sch.js │ │ │ │ ├── jquery.soChange-min.js │ │ │ │ └── jquery.soChange.js │ │ ├── Views │ │ │ ├── Billing │ │ │ │ └── FreightTrial.cshtml │ │ │ ├── Home │ │ │ │ ├── About.cshtml │ │ │ │ ├── ContactUs.cshtml │ │ │ │ ├── Index.cshtml │ │ │ │ ├── ProductServices.cshtml │ │ │ │ ├── _About.cshtml │ │ │ │ ├── _CompanyNewPartial.cshtml │ │ │ │ ├── _HomeBannerPartial.cshtml │ │ │ │ ├── _NewsPartial.cshtml │ │ │ │ ├── _PartnersPartial.cshtml │ │ │ │ └── _PriceSearchPartial.cshtml │ │ │ ├── New │ │ │ │ ├── NewDetailed.cshtml │ │ │ │ └── NewList.cshtml │ │ │ ├── Shared │ │ │ │ ├── Error.cshtml │ │ │ │ ├── _Layout.cshtml │ │ │ │ ├── _LogOnPartial.cshtml │ │ │ │ └── _ShowDialog.cshtml │ │ │ ├── User │ │ │ │ ├── AddSuccess.cshtml │ │ │ │ └── AddUser.cshtml │ │ │ ├── Web.config │ │ │ └── _ViewStart.cshtml │ │ ├── Web.Debug.config │ │ ├── Web.Release.config │ │ ├── Web.config │ │ ├── css │ │ │ ├── base.css │ │ │ ├── logistics.css │ │ │ ├── logistics_pub.css │ │ │ ├── logistics_style.css │ │ │ └── skin.css │ │ ├── images │ │ │ ├── 345.jpg │ │ │ ├── 404_03.jpg │ │ │ ├── 546456_03.jpg │ │ │ ├── 546456_07.jpg │ │ │ ├── 546456_08.jpg │ │ │ ├── asdasdsadasd_07.jpg │ │ │ ├── banner │ │ │ │ ├── banner1.jpg │ │ │ │ ├── banner2.jpg │ │ │ │ ├── banner_in_03.jpg │ │ │ │ ├── banner_in_04.jpg │ │ │ │ ├── banner_in_05.jpg │ │ │ │ ├── banner_in_06.jpg │ │ │ │ ├── banner_in_07.jpg │ │ │ │ ├── bn1.jpg │ │ │ │ ├── bn2.jpg │ │ │ │ ├── bn3.jpg │ │ │ │ ├── bn4.jpg │ │ │ │ ├── bn5.jpg │ │ │ │ ├── bn6.jpg │ │ │ │ ├── bn7.jpg │ │ │ │ ├── default_04.jpg │ │ │ │ ├── default_04_2.jpg │ │ │ │ ├── default_04_3.jpg │ │ │ │ └── default_04_4.jpg │ │ │ ├── banner_1.jpg │ │ │ ├── banner_in_03.jpg │ │ │ ├── bd_icon.jpg │ │ │ ├── certificate.png │ │ │ ├── circle_1.png │ │ │ ├── circle_2.png │ │ │ ├── clock_1.jpg │ │ │ ├── default2_03.jpg │ │ │ ├── default2_07.jpg │ │ │ ├── default2_10.jpg │ │ │ ├── default_01.jpg │ │ │ ├── default_04.jpg │ │ │ ├── default_06.jpg │ │ │ ├── default_20.jpg │ │ │ ├── default_25.jpg │ │ │ ├── delete.png │ │ │ ├── grid.png │ │ │ ├── house.jpg │ │ │ ├── idxC_bg_03.jpg │ │ │ ├── idxC_bg_07.jpg │ │ │ ├── index_06.jpg │ │ │ ├── index_06.png │ │ │ ├── index_15.jpg │ │ │ ├── index_18.jpg │ │ │ ├── index_20.jpg │ │ │ ├── index_21.jpg │ │ │ ├── index_24.jpg │ │ │ ├── index_30.jpg │ │ │ ├── index_32.jpg │ │ │ ├── logo.jpg │ │ │ ├── logo.png │ │ │ ├── logo2.png │ │ │ ├── logo_1.png │ │ │ ├── logo_2.jpg │ │ │ ├── logo_white.png │ │ │ ├── menu_in.png │ │ │ ├── menu_in_03.png │ │ │ ├── menu_in_05.png │ │ │ ├── menu_in_07.png │ │ │ ├── menu_in_09.png │ │ │ ├── menu_in_11.jpg │ │ │ ├── more_03.jpg │ │ │ ├── more_07.jpg │ │ │ ├── nav_icon1.jpg │ │ │ ├── nav_icon2.jpg │ │ │ ├── partner.jpg │ │ │ ├── phone.jpg │ │ │ ├── quan_1.png │ │ │ ├── quan_2.png │ │ │ ├── rgst_03.jpg │ │ │ ├── rgst_07.jpg │ │ │ ├── rgst_11.jpg │ │ │ ├── share_03.jpg │ │ │ ├── share_05.jpg │ │ │ ├── share_07.jpg │ │ │ ├── share_09.jpg │ │ │ ├── small.jpg │ │ │ ├── srarch_bg_07.jpg │ │ │ ├── u_home.jpg │ │ │ ├── uadmin_logo.png │ │ │ ├── welcome_03.png │ │ │ └── year.png │ │ └── packages.config │ ├── LMS.Web.YunPost │ │ ├── 404.html │ │ ├── Global.asax │ │ ├── LMS.Web.YunPost.csproj │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── PublishProfiles │ │ │ │ └── YunPost.pubxml │ │ ├── Scripts │ │ │ ├── MicrosoftAjax.debug.js │ │ │ ├── MicrosoftAjax.js │ │ │ ├── MicrosoftMvcAjax.debug.js │ │ │ ├── MicrosoftMvcAjax.js │ │ │ ├── MicrosoftMvcValidation.debug.js │ │ │ ├── MicrosoftMvcValidation.js │ │ │ ├── autocomplete │ │ │ │ ├── jquery-1.9.1.js │ │ │ │ ├── jquery-ui.css │ │ │ │ └── jquery-ui.js │ │ │ ├── chosen │ │ │ │ ├── chosen-sprite.png │ │ │ │ ├── chosen.css │ │ │ │ ├── chosen.jquery.js │ │ │ │ └── index.html │ │ │ ├── client.js │ │ │ ├── jquery-1.4.4.min.js │ │ │ ├── jquery-1.7.1.intellisense.js │ │ │ ├── jquery-1.7.1.js │ │ │ ├── jquery-1.7.1.min.js │ │ │ ├── jquery-powerSwitch-min.js │ │ │ ├── jquery-ui-1.8.20.js │ │ │ ├── jquery-ui-1.8.20.min.js │ │ │ ├── jquery.Sonline.js │ │ │ ├── jquery.unobtrusive-ajax.js │ │ │ ├── jquery.unobtrusive-ajax.min.js │ │ │ ├── jquery.validate-vsdoc.js │ │ │ ├── jquery.validate.js │ │ │ ├── jquery.validate.min.js │ │ │ ├── jquery.validate.unobtrusive.js │ │ │ ├── jquery.validate.unobtrusive.min.js │ │ │ ├── modernizr-2.5.3.js │ │ │ ├── qq │ │ │ │ ├── brd.gif │ │ │ │ ├── ico.gif │ │ │ │ ├── qq.css │ │ │ │ └── qqservice.js │ │ │ └── website │ │ │ │ ├── UtilEvent.js │ │ │ │ ├── cookie.js │ │ │ │ ├── info_sch.js │ │ │ │ ├── jquery.soChange-min.js │ │ │ │ └── jquery.soChange.js │ │ ├── Views │ │ │ ├── Billing │ │ │ │ └── FreightTrial.cshtml │ │ │ ├── Home │ │ │ │ ├── About.cshtml │ │ │ │ ├── ContactUs.cshtml │ │ │ │ ├── HelpCenter.cshtml │ │ │ │ ├── Index.cshtml │ │ │ │ ├── ProductServices.cshtml │ │ │ │ ├── _About.cshtml │ │ │ │ ├── _CompanyNewPartial.cshtml │ │ │ │ ├── _HomeBannerPartial.cshtml │ │ │ │ ├── _NewsPartial.cshtml │ │ │ │ ├── _PartnersPartial.cshtml │ │ │ │ └── _PriceSearchPartial.cshtml │ │ │ ├── New │ │ │ │ ├── NewDetailed.cshtml │ │ │ │ └── NewList.cshtml │ │ │ ├── RemoteAddress │ │ │ │ └── Search.cshtml │ │ │ ├── Shared │ │ │ │ ├── Error.cshtml │ │ │ │ ├── _Layout.cshtml │ │ │ │ ├── _LogOnPartial.cshtml │ │ │ │ └── _ShowDialog.cshtml │ │ │ ├── User │ │ │ │ ├── AddSuccess.cshtml │ │ │ │ └── AddUser.cshtml │ │ │ ├── Web.config │ │ │ └── _ViewStart.cshtml │ │ ├── Web.config │ │ ├── css │ │ │ ├── base.css │ │ │ ├── datouwang.css │ │ │ ├── logistics.css │ │ │ ├── logistics_pub.css │ │ │ ├── logistics_style.css │ │ │ └── skin.css │ │ ├── images │ │ │ ├── 20140514-云途物流-02_03.jpg │ │ │ ├── 20140514-云途物流-02_05.jpg │ │ │ ├── 2342_03.jpg │ │ │ ├── 2342_17.jpg │ │ │ ├── 345.jpg │ │ │ ├── 404_03.jpg │ │ │ ├── 546456_03.jpg │ │ │ ├── 546456_07.jpg │ │ │ ├── 546456_08.jpg │ │ │ ├── SonlineTitleBg.gif │ │ │ ├── advt_03.jpg │ │ │ ├── asdasdsadasd_07.jpg │ │ │ ├── banner │ │ │ │ ├── banner1.jpg │ │ │ │ ├── banner2.jpg │ │ │ │ ├── banner_in_03.jpg │ │ │ │ ├── banner_in_04.jpg │ │ │ │ ├── banner_in_05.jpg │ │ │ │ ├── banner_in_06.jpg │ │ │ │ ├── banner_in_07.jpg │ │ │ │ ├── bn1.jpg │ │ │ │ ├── bn2.jpg │ │ │ │ ├── bn3.jpg │ │ │ │ ├── bn4.jpg │ │ │ │ ├── bn5.jpg │ │ │ │ ├── bn6.jpg │ │ │ │ ├── bn7.jpg │ │ │ │ ├── default_04.jpg │ │ │ │ ├── default_04_2.jpg │ │ │ │ ├── default_04_3.jpg │ │ │ │ └── default_04_4.jpg │ │ │ ├── banner_1.jpg │ │ │ ├── banner_in_03.jpg │ │ │ ├── bd_icon.jpg │ │ │ ├── bg_1_03.jpg │ │ │ ├── bg_1_04.jpg │ │ │ ├── caro_icon.jpg │ │ │ ├── caro_icon2.jpg │ │ │ ├── certificate.png │ │ │ ├── circle_1.png │ │ │ ├── circle_2.png │ │ │ ├── clock_1.jpg │ │ │ ├── closeBtnImg.gif │ │ │ ├── default2_03.jpg │ │ │ ├── default2_07.jpg │ │ │ ├── default2_10.jpg │ │ │ ├── defaultImg.png │ │ │ ├── default_01.jpg │ │ │ ├── default_04.jpg │ │ │ ├── default_06.jpg │ │ │ ├── default_20.jpg │ │ │ ├── default_25.jpg │ │ │ ├── delete.png │ │ │ ├── favicon.ico │ │ │ ├── grayOpen.jpg │ │ │ ├── grayTitleBg.gif │ │ │ ├── greenOpen.jpg │ │ │ ├── greenTitleBg.gif │ │ │ ├── grid.jpg │ │ │ ├── grid.png │ │ │ ├── head__03.jpg │ │ │ ├── head__05.jpg │ │ │ ├── house.jpg │ │ │ ├── idxC_bg_03.jpg │ │ │ ├── idxC_bg_07.jpg │ │ │ ├── idx_1.jpg │ │ │ ├── idx_2.jpg │ │ │ ├── idx_3.jpg │ │ │ ├── idx_4.jpg │ │ │ ├── idx_5.jpg │ │ │ ├── idx_6.jpg │ │ │ ├── idx_7.jpg │ │ │ ├── idx_8.png │ │ │ ├── index_06.jpg │ │ │ ├── index_06.png │ │ │ ├── index_15.jpg │ │ │ ├── index_18.jpg │ │ │ ├── index_20.jpg │ │ │ ├── index_21.jpg │ │ │ ├── index_24.jpg │ │ │ ├── index_30.jpg │ │ │ ├── index_32.jpg │ │ │ ├── logo.jpg │ │ │ ├── logo.png │ │ │ ├── logo1.png │ │ │ ├── logo2.png │ │ │ ├── logo3.png │ │ │ ├── logo4.png │ │ │ ├── logo_1.png │ │ │ ├── logo_2.jpg │ │ │ ├── logo_white.png │ │ │ ├── menu_in.png │ │ │ ├── menu_in_03.png │ │ │ ├── menu_in_05.png │ │ │ ├── menu_in_07.png │ │ │ ├── menu_in_09.png │ │ │ ├── menu_in_11.jpg │ │ │ ├── more_03.jpg │ │ │ ├── more_07.jpg │ │ │ ├── mul_03.jpg │ │ │ ├── mul_ll_03.jpg │ │ │ ├── nav_icon.jpg │ │ │ ├── nav_icon1.jpg │ │ │ ├── nav_icon2.jpg │ │ │ ├── nav_icon_03.jpg │ │ │ ├── openTrigger.jpg │ │ │ ├── partner.jpg │ │ │ ├── phone.jpg │ │ │ ├── postyun.gif │ │ │ ├── product_bn.jpg │ │ │ ├── quan_1.png │ │ │ ├── quan_2.png │ │ │ ├── redOpen.jpg │ │ │ ├── redTitleBg.gif │ │ │ ├── rgst_03.jpg │ │ │ ├── rgst_07.jpg │ │ │ ├── rgst_11.jpg │ │ │ ├── share_03.jpg │ │ │ ├── share_05.jpg │ │ │ ├── share_07.jpg │ │ │ ├── share_09.jpg │ │ │ ├── share_1.jpg │ │ │ ├── share_2.jpg │ │ │ ├── share_3.jpg │ │ │ ├── small.jpg │ │ │ ├── srarch_bg_07.jpg │ │ │ ├── u_home.jpg │ │ │ ├── uadmin_logo.png │ │ │ ├── weichat_17.jpg │ │ │ ├── welcome_03.png │ │ │ ├── year.png │ │ │ └── yunpostBarCode.jpg │ │ └── packages.config │ ├── LighTake.LMS.Web.FrontDesk │ │ ├── 404.html │ │ ├── Global.asax │ │ ├── LighTake.LMS.Web.FrontDesk.csproj │ │ ├── Models │ │ │ └── AccountModels.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── PublishProfiles │ │ │ │ └── default.pubxml │ │ ├── Scripts │ │ │ ├── MicrosoftAjax.debug.js │ │ │ ├── MicrosoftAjax.js │ │ │ ├── MicrosoftMvcAjax.debug.js │ │ │ ├── MicrosoftMvcAjax.js │ │ │ ├── MicrosoftMvcValidation.debug.js │ │ │ ├── MicrosoftMvcValidation.js │ │ │ ├── autocomplete │ │ │ │ ├── jquery-1.9.1.js │ │ │ │ ├── jquery-ui.css │ │ │ │ └── jquery-ui.js │ │ │ ├── chosen │ │ │ │ ├── chosen-sprite.png │ │ │ │ ├── chosen.css │ │ │ │ ├── chosen.jquery.js │ │ │ │ └── index.html │ │ │ ├── jquery-1.7.1.intellisense.js │ │ │ ├── jquery-1.7.1.js │ │ │ ├── jquery-1.7.1.min.js │ │ │ ├── jquery-ui-1.8.20.js │ │ │ ├── jquery-ui-1.8.20.min.js │ │ │ ├── jquery.unobtrusive-ajax.js │ │ │ ├── jquery.unobtrusive-ajax.min.js │ │ │ ├── jquery.validate-vsdoc.js │ │ │ ├── jquery.validate.js │ │ │ ├── jquery.validate.min.js │ │ │ ├── jquery.validate.unobtrusive.js │ │ │ ├── jquery.validate.unobtrusive.min.js │ │ │ ├── modernizr-2.5.3.js │ │ │ ├── qq │ │ │ │ ├── brd.gif │ │ │ │ ├── ico.gif │ │ │ │ ├── qq.css │ │ │ │ └── qqservice.js │ │ │ └── website │ │ │ │ ├── UtilEvent.js │ │ │ │ ├── cookie.js │ │ │ │ ├── info_sch.js │ │ │ │ ├── jquery.soChange-min.js │ │ │ │ └── jquery.soChange.js │ │ ├── Views │ │ │ ├── Billing │ │ │ │ └── FreightTrial.cshtml │ │ │ ├── Home │ │ │ │ ├── About.cshtml │ │ │ │ ├── ContactUs.cshtml │ │ │ │ ├── Index.cshtml │ │ │ │ ├── ProductServices.cshtml │ │ │ │ ├── _About.cshtml │ │ │ │ ├── _CompanyNewPartial.cshtml │ │ │ │ ├── _ContactUsPartial.cshtml │ │ │ │ ├── _HomeBannerPartial.cshtml │ │ │ │ ├── _NewsPartial.cshtml │ │ │ │ ├── _PartnersPartial.cshtml │ │ │ │ └── _PriceSearchPartial.cshtml │ │ │ ├── New │ │ │ │ ├── NewDetailed.cshtml │ │ │ │ └── NewList.cshtml │ │ │ ├── Shared │ │ │ │ ├── Error.cshtml │ │ │ │ ├── _Layout.cshtml │ │ │ │ ├── _LogOnPartial.cshtml │ │ │ │ └── _ShowDialog.cshtml │ │ │ ├── User │ │ │ │ ├── AddSuccess.cshtml │ │ │ │ └── AddUser.cshtml │ │ │ ├── Web.config │ │ │ └── _ViewStart.cshtml │ │ ├── Web.Debug.config │ │ ├── Web.Release.config │ │ ├── Web.config │ │ ├── css │ │ │ ├── logistics.css │ │ │ └── skin.css │ │ └── images │ │ │ ├── 345.jpg │ │ │ ├── 404_03.jpg │ │ │ ├── 546456_03.jpg │ │ │ ├── 546456_07.jpg │ │ │ ├── 546456_08.jpg │ │ │ ├── asdasdsadasd_07.jpg │ │ │ ├── banner │ │ │ ├── banner1.jpg │ │ │ ├── banner2.jpg │ │ │ ├── banner_in_03.jpg │ │ │ ├── banner_in_04.jpg │ │ │ ├── banner_in_05.jpg │ │ │ ├── banner_in_06.jpg │ │ │ ├── banner_in_07.jpg │ │ │ ├── default_04.jpg │ │ │ ├── default_04_2.jpg │ │ │ ├── default_04_3.jpg │ │ │ └── default_04_4.jpg │ │ │ ├── banner_in_03.jpg │ │ │ ├── certificate.png │ │ │ ├── circle_1.png │ │ │ ├── circle_2.png │ │ │ ├── default2_03.jpg │ │ │ ├── default2_07.jpg │ │ │ ├── default2_10.jpg │ │ │ ├── default_01.jpg │ │ │ ├── default_04.jpg │ │ │ ├── default_06.jpg │ │ │ ├── default_20.jpg │ │ │ ├── default_25.jpg │ │ │ ├── delete.png │ │ │ ├── grid.png │ │ │ ├── logo.jpg │ │ │ ├── logo.png │ │ │ ├── logo_white.png │ │ │ ├── menu_in.png │ │ │ ├── menu_in_03.png │ │ │ ├── menu_in_05.png │ │ │ ├── menu_in_07.png │ │ │ ├── menu_in_09.png │ │ │ ├── menu_in_11.jpg │ │ │ ├── more_03.jpg │ │ │ ├── more_07.jpg │ │ │ ├── rgst_03.jpg │ │ │ ├── rgst_07.jpg │ │ │ ├── rgst_11.jpg │ │ │ ├── share_03.jpg │ │ │ ├── share_05.jpg │ │ │ ├── share_07.jpg │ │ │ ├── share_09.jpg │ │ │ ├── small.jpg │ │ │ ├── srarch_bg_07.jpg │ │ │ └── u_home.jpg │ └── MXBN.Web │ │ ├── 404.html │ │ ├── Global.asax │ │ ├── MXBN.Web.csproj │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── Scripts │ │ ├── MicrosoftAjax.debug.js │ │ ├── MicrosoftAjax.js │ │ ├── MicrosoftMvcAjax.debug.js │ │ ├── MicrosoftMvcAjax.js │ │ ├── MicrosoftMvcValidation.debug.js │ │ ├── MicrosoftMvcValidation.js │ │ ├── autocomplete │ │ │ ├── jquery-1.9.1.js │ │ │ ├── jquery-ui.css │ │ │ └── jquery-ui.js │ │ ├── chosen │ │ │ ├── chosen-sprite.png │ │ │ ├── chosen.css │ │ │ ├── chosen.jquery.js │ │ │ └── index.html │ │ ├── jquery-1.7.1.intellisense.js │ │ ├── jquery-1.7.1.js │ │ ├── jquery-1.7.1.min.js │ │ ├── jquery-ui-1.8.20.js │ │ ├── jquery-ui-1.8.20.min.js │ │ ├── jquery.unobtrusive-ajax.js │ │ ├── jquery.unobtrusive-ajax.min.js │ │ ├── jquery.validate-vsdoc.js │ │ ├── jquery.validate.js │ │ ├── jquery.validate.min.js │ │ ├── jquery.validate.unobtrusive.js │ │ ├── jquery.validate.unobtrusive.min.js │ │ ├── modernizr-2.5.3.js │ │ ├── qq │ │ │ ├── brd.gif │ │ │ ├── ico.gif │ │ │ ├── qq.css │ │ │ └── qqservice.js │ │ └── website │ │ │ ├── UtilEvent.js │ │ │ ├── cookie.js │ │ │ ├── info_sch.js │ │ │ ├── jquery.soChange-min.js │ │ │ └── jquery.soChange.js │ │ ├── Views │ │ ├── Billing │ │ │ └── FreightTrial.cshtml │ │ ├── Home │ │ │ ├── About.cshtml │ │ │ ├── ContactUs.cshtml │ │ │ ├── Index.cshtml │ │ │ ├── ProductServices.cshtml │ │ │ ├── _About.cshtml │ │ │ ├── _CompanyNewPartial.cshtml │ │ │ ├── _ContactUsPartial.cshtml │ │ │ ├── _HomeBannerPartial.cshtml │ │ │ ├── _NewsPartial.cshtml │ │ │ ├── _PartnersPartial.cshtml │ │ │ └── _PriceSearchPartial.cshtml │ │ ├── New │ │ │ ├── NewDetailed.cshtml │ │ │ └── NewList.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ ├── _Layout.cshtml │ │ │ ├── _LogOnPartial.cshtml │ │ │ └── _ShowDialog.cshtml │ │ ├── User │ │ │ ├── AddSuccess.cshtml │ │ │ └── AddUser.cshtml │ │ ├── Web.config │ │ └── _ViewStart.cshtml │ │ ├── Web.Debug.config │ │ ├── Web.Release.config │ │ ├── Web.config │ │ ├── css │ │ ├── logistics.v1.0.0.css │ │ └── skin.v1.0.0.css │ │ ├── images │ │ ├── 345.jpg │ │ ├── 404_03.jpg │ │ ├── 546456_03.jpg │ │ ├── 546456_07.jpg │ │ ├── 546456_08.jpg │ │ ├── asdasdsadasd_07.jpg │ │ ├── banner │ │ │ ├── banner1.jpg │ │ │ ├── banner2.jpg │ │ │ ├── banner_in_03.jpg │ │ │ ├── banner_in_04.jpg │ │ │ ├── banner_in_05.jpg │ │ │ ├── banner_in_06.jpg │ │ │ ├── banner_in_07.jpg │ │ │ ├── default_04.jpg │ │ │ ├── default_04_2.jpg │ │ │ ├── default_04_3.jpg │ │ │ └── default_04_4.jpg │ │ ├── banner_in_03.jpg │ │ ├── certificate.png │ │ ├── circle_1.png │ │ ├── circle_2.png │ │ ├── default2_03.jpg │ │ ├── default2_07.jpg │ │ ├── default2_10.jpg │ │ ├── default_01.jpg │ │ ├── default_04.jpg │ │ ├── default_06.jpg │ │ ├── default_20.jpg │ │ ├── default_25.jpg │ │ ├── delete.png │ │ ├── grid.png │ │ ├── logo.jpg │ │ ├── logo_white.png │ │ ├── menu_in.png │ │ ├── menu_in_03.png │ │ ├── menu_in_05.png │ │ ├── menu_in_07.png │ │ ├── menu_in_09.png │ │ ├── menu_in_11.jpg │ │ ├── more_03.jpg │ │ ├── more_07.jpg │ │ ├── rgst_03.jpg │ │ ├── rgst_07.jpg │ │ ├── rgst_11.jpg │ │ ├── share_03.jpg │ │ ├── share_05.jpg │ │ ├── share_07.jpg │ │ ├── share_09.jpg │ │ ├── small.jpg │ │ ├── srarch_bg_07.jpg │ │ └── u_home.jpg │ │ └── packages.config ├── LMS.Web.UserCenter │ └── LMS.UserCenter.Web │ │ ├── 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 │ │ ├── Global.asax │ │ ├── LMS.UserCenter.Web.csproj │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── PublishProfiles │ │ │ └── LMS.UserCenter.pubxml │ │ ├── Scripts │ │ ├── MicrosoftAjax.debug.js │ │ ├── MicrosoftAjax.js │ │ ├── MicrosoftMvcAjax.debug.js │ │ ├── MicrosoftMvcAjax.js │ │ ├── MicrosoftMvcValidation.debug.js │ │ ├── MicrosoftMvcValidation.js │ │ ├── jquery-1.7.1.intellisense.js │ │ ├── jquery-1.7.1.js │ │ ├── jquery-1.7.1.min.js │ │ ├── jquery-ui-1.8.20.js │ │ ├── jquery-ui-1.8.20.min.js │ │ ├── jquery.unobtrusive-ajax.js │ │ ├── jquery.unobtrusive-ajax.min.js │ │ ├── jquery.validate-vsdoc.js │ │ ├── jquery.validate.js │ │ ├── jquery.validate.min.js │ │ ├── jquery.validate.unobtrusive.js │ │ ├── jquery.validate.unobtrusive.min.js │ │ └── modernizr-2.5.3.js │ │ ├── UploadFiles │ │ ├── ExcelTemplate │ │ │ ├── customerorderuploadtemplate.xls │ │ │ └── deliveryorderuploadtemplate.xls │ │ └── PrintTemplate │ │ │ └── Template.html │ │ ├── Views │ │ ├── Account │ │ │ ├── Index.cshtml │ │ │ ├── Login.cshtml │ │ │ └── OrderMenu.cshtml │ │ ├── Billing │ │ │ ├── ChangeRecords.cshtml │ │ │ ├── ChargebackDetail.cshtml │ │ │ ├── FreightTrial.cshtml │ │ │ ├── ModifyPassword.cshtml │ │ │ ├── Recharge.cshtml │ │ │ ├── SelectCountry.cshtml │ │ │ ├── SelectCustomerList_Bak.cshtml │ │ │ ├── SelectShippingMethod.cshtml │ │ │ └── SelectVender.cshtml │ │ ├── Customer │ │ │ └── SelectList.cshtml │ │ ├── Order │ │ │ ├── Add.cshtml │ │ │ ├── All.cshtml │ │ │ ├── BatchAdd.cshtml │ │ │ ├── BatchAddPackage.cshtml │ │ │ ├── BatchAddSinoUS.cshtml │ │ │ ├── Blocked.cshtml │ │ │ ├── Confirmed.cshtml │ │ │ ├── Edit.cshtml │ │ │ ├── EubWayBillList.cshtml │ │ │ ├── PrintDemo.cshtml │ │ │ ├── PrintPreview.cshtml │ │ │ ├── Printer.cshtml │ │ │ ├── Received.cshtml │ │ │ ├── ScanPrintLabel.cshtml │ │ │ ├── Send.cshtml │ │ │ ├── SinglePrint.cshtml │ │ │ ├── SubmitFail.cshtml │ │ │ ├── Submitted.cshtml │ │ │ ├── UnConfirmed.cshtml │ │ │ ├── WaybillList.cshtml │ │ │ ├── _AddAndEdit.cshtml │ │ │ ├── _BatchAddList.cshtml │ │ │ ├── _BatchAddPackageList.cshtml │ │ │ ├── _BatchAddSinoUS.cshtml │ │ │ ├── _EubWayBillList.cshtml │ │ │ ├── _List.cshtml │ │ │ ├── _PrintList.cshtml │ │ │ ├── _PrintOrder.cshtml │ │ │ ├── _PrintOrderList.cshtml │ │ │ ├── _PrintTNTOrder.cshtml │ │ │ └── _PrintTemplateList.cshtml │ │ ├── Print │ │ │ ├── Printer.cshtml │ │ │ ├── SinglePrint.cshtml │ │ │ ├── _PrintList.cshtml │ │ │ ├── _PrintOrder.cshtml │ │ │ └── _PrintOrderList.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ ├── _Layout.cshtml │ │ │ ├── _MINIPROFILER UPDATED Layout.cshtml │ │ │ └── _Notifications.cshtml │ │ ├── Web.config │ │ └── _ViewStart.cshtml │ │ ├── Web.config │ │ ├── css │ │ ├── Faile.wav │ │ ├── Success.wav │ │ ├── login.css │ │ ├── mool.css │ │ ├── pager.css │ │ ├── print.css │ │ └── res.css │ │ ├── images │ │ ├── PNG │ │ │ ├── add.png │ │ │ ├── cogs.png │ │ │ ├── delete.png │ │ │ ├── download.png │ │ │ ├── edit.png │ │ │ ├── facebook.png │ │ │ ├── feed.png │ │ │ ├── folder-add.png │ │ │ ├── home.png │ │ │ ├── image.png │ │ │ ├── message.png │ │ │ ├── money.png │ │ │ ├── nav_storage_service.png │ │ │ ├── nav_truck_ques.png │ │ │ ├── nav_truck_service.png │ │ │ ├── password.png │ │ │ ├── printer.png │ │ │ ├── question.png │ │ │ ├── refresh.png │ │ │ ├── save.png │ │ │ ├── scissors.png │ │ │ ├── search.png │ │ │ ├── storage.png │ │ │ ├── succeed.png │ │ │ ├── trashcan.png │ │ │ ├── truck.png │ │ │ ├── twitter.png │ │ │ ├── uniF47D.png │ │ │ ├── upload.png │ │ │ ├── users.png │ │ │ └── warning.png │ │ ├── Print │ │ │ └── TNT │ │ │ │ ├── postnl.jpg │ │ │ │ └── priority.jpg │ │ ├── SVG │ │ │ ├── add.svg │ │ │ ├── cogs.svg │ │ │ ├── delete.svg │ │ │ ├── download.svg │ │ │ ├── edit.svg │ │ │ ├── facebook.svg │ │ │ ├── feed.svg │ │ │ ├── folder-add.svg │ │ │ ├── home.svg │ │ │ ├── image.svg │ │ │ ├── message.svg │ │ │ ├── money.svg │ │ │ ├── nav_storage_service.svg │ │ │ ├── nav_truck_ques.svg │ │ │ ├── nav_truck_service.svg │ │ │ ├── password.svg │ │ │ ├── printer.svg │ │ │ ├── question.svg │ │ │ ├── refresh.svg │ │ │ ├── save.svg │ │ │ ├── scissors.svg │ │ │ ├── search.svg │ │ │ ├── storage.svg │ │ │ ├── succeed.svg │ │ │ ├── trashcan.svg │ │ │ ├── truck.svg │ │ │ ├── twitter.svg │ │ │ ├── uniF47D.svg │ │ │ ├── upload.svg │ │ │ ├── users.svg │ │ │ └── warning.svg │ │ ├── canvas.png │ │ ├── canvas1.png │ │ ├── canvas2.png │ │ ├── close.png │ │ ├── fonts │ │ │ ├── icomoon.dev.svg │ │ │ ├── icomoon.eot │ │ │ ├── icomoon.svg │ │ │ ├── icomoon.ttf │ │ │ └── icomoon.woff │ │ ├── img_03.jpg │ │ ├── img_06.jpg │ │ ├── img_07.jpg │ │ ├── loader.gif │ │ ├── locked.png │ │ ├── main_menu.png │ │ ├── new.jpg │ │ ├── open.png │ │ └── uadmin_logo.png │ │ ├── js │ │ ├── My97DatePicker │ │ │ ├── My97DatePicker.htm │ │ │ ├── WdatePicker.js │ │ │ ├── calendar.js │ │ │ ├── config.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 │ │ │ └── 开发包 │ │ │ │ ├── lang │ │ │ │ ├── en.js │ │ │ │ ├── zh-cn.js │ │ │ │ └── zh-tw.js │ │ │ │ ├── readme.txt │ │ │ │ └── skin │ │ │ │ ├── WdatePicker.css │ │ │ │ ├── datePicker.gif │ │ │ │ ├── default │ │ │ │ ├── datepicker.css │ │ │ │ └── img.gif │ │ │ │ └── whyGreen │ │ │ │ ├── bg.jpg │ │ │ │ ├── datepicker.css │ │ │ │ └── img.gif │ │ ├── _chosen │ │ │ ├── chosen-sprite.png │ │ │ ├── chosen.css │ │ │ └── chosen.jquery.js │ │ ├── artdialog │ │ │ ├── jquery.artDialog.js │ │ │ ├── plugins │ │ │ │ └── iframeTools.js │ │ │ └── skins │ │ │ │ ├── default.css │ │ │ │ └── icons │ │ │ │ ├── error.png │ │ │ │ ├── face-sad.png │ │ │ │ ├── face-smile.png │ │ │ │ ├── loading.gif │ │ │ │ ├── question.png │ │ │ │ ├── succeed.png │ │ │ │ └── warning.png │ │ ├── chosen │ │ │ ├── chosen-sprite.png │ │ │ ├── chosen.css │ │ │ ├── chosen.jquery.js │ │ │ └── index.html │ │ ├── common.js │ │ ├── cookie.js │ │ ├── ifm.js │ │ ├── jquery-1.7.1.min.js │ │ ├── jquery-jtemplates.js │ │ ├── jquery.jqprint-0.3.js │ │ ├── kindeditor │ │ │ ├── asp.net │ │ │ │ ├── README.txt │ │ │ │ ├── demo.aspx │ │ │ │ ├── file_manager_json.ashx │ │ │ │ └── upload_json.ashx │ │ │ ├── examples │ │ │ │ ├── colorpicker.html │ │ │ │ ├── custom-plugin.html │ │ │ │ ├── custom-theme.html │ │ │ │ ├── default.html │ │ │ │ ├── dialog.html │ │ │ │ ├── dynamic-load.html │ │ │ │ ├── file-dialog.html │ │ │ │ ├── file-manager.html │ │ │ │ ├── filter-mode.html │ │ │ │ ├── image-dialog.html │ │ │ │ ├── index.css │ │ │ │ ├── index.html │ │ │ │ ├── jquery-ui.html │ │ │ │ ├── jquery.html │ │ │ │ ├── mootools.html │ │ │ │ ├── multi-image-dialog.html │ │ │ │ ├── multi-language.html │ │ │ │ ├── newline.html │ │ │ │ ├── node.html │ │ │ │ ├── paste-type.html │ │ │ │ ├── qqstyle.html │ │ │ │ ├── readonly.html │ │ │ │ ├── simple.html │ │ │ │ ├── total.html │ │ │ │ ├── uploadbutton.html │ │ │ │ ├── url-type.html │ │ │ │ └── word-count.html │ │ │ ├── jsp │ │ │ │ ├── README.txt │ │ │ │ ├── demo.jsp │ │ │ │ ├── file_manager_json.jsp │ │ │ │ ├── lib │ │ │ │ │ ├── commons-fileupload-1.2.1.jar │ │ │ │ │ ├── commons-io-1.4.jar │ │ │ │ │ └── json_simple-1.1.jar │ │ │ │ └── upload_json.jsp │ │ │ ├── kindeditor-min.js │ │ │ ├── kindeditor.js │ │ │ ├── lang │ │ │ │ ├── ar.js │ │ │ │ ├── en.js │ │ │ │ ├── zh_CN.js │ │ │ │ └── zh_TW.js │ │ │ ├── php │ │ │ │ ├── JSON.php │ │ │ │ ├── demo.php │ │ │ │ ├── file_manager_json.php │ │ │ │ └── upload_json.php │ │ │ ├── plugins │ │ │ │ ├── anchor │ │ │ │ │ └── anchor.js │ │ │ │ ├── baidumap │ │ │ │ │ ├── baidumap.js │ │ │ │ │ └── map.html │ │ │ │ ├── clearhtml │ │ │ │ │ └── clearhtml.js │ │ │ │ ├── code │ │ │ │ │ ├── code.js │ │ │ │ │ ├── prettify.css │ │ │ │ │ └── prettify.js │ │ │ │ ├── emoticons │ │ │ │ │ ├── emoticons.js │ │ │ │ │ └── images │ │ │ │ │ │ ├── 0.gif │ │ │ │ │ │ ├── 1.gif │ │ │ │ │ │ ├── 10.gif │ │ │ │ │ │ ├── 100.gif │ │ │ │ │ │ ├── 101.gif │ │ │ │ │ │ ├── 102.gif │ │ │ │ │ │ ├── 103.gif │ │ │ │ │ │ ├── 104.gif │ │ │ │ │ │ ├── 105.gif │ │ │ │ │ │ ├── 106.gif │ │ │ │ │ │ ├── 107.gif │ │ │ │ │ │ ├── 108.gif │ │ │ │ │ │ ├── 109.gif │ │ │ │ │ │ ├── 11.gif │ │ │ │ │ │ ├── 110.gif │ │ │ │ │ │ ├── 111.gif │ │ │ │ │ │ ├── 112.gif │ │ │ │ │ │ ├── 113.gif │ │ │ │ │ │ ├── 114.gif │ │ │ │ │ │ ├── 115.gif │ │ │ │ │ │ ├── 116.gif │ │ │ │ │ │ ├── 117.gif │ │ │ │ │ │ ├── 118.gif │ │ │ │ │ │ ├── 119.gif │ │ │ │ │ │ ├── 12.gif │ │ │ │ │ │ ├── 120.gif │ │ │ │ │ │ ├── 121.gif │ │ │ │ │ │ ├── 122.gif │ │ │ │ │ │ ├── 123.gif │ │ │ │ │ │ ├── 124.gif │ │ │ │ │ │ ├── 125.gif │ │ │ │ │ │ ├── 126.gif │ │ │ │ │ │ ├── 127.gif │ │ │ │ │ │ ├── 128.gif │ │ │ │ │ │ ├── 129.gif │ │ │ │ │ │ ├── 13.gif │ │ │ │ │ │ ├── 130.gif │ │ │ │ │ │ ├── 131.gif │ │ │ │ │ │ ├── 132.gif │ │ │ │ │ │ ├── 133.gif │ │ │ │ │ │ ├── 134.gif │ │ │ │ │ │ ├── 14.gif │ │ │ │ │ │ ├── 15.gif │ │ │ │ │ │ ├── 16.gif │ │ │ │ │ │ ├── 17.gif │ │ │ │ │ │ ├── 18.gif │ │ │ │ │ │ ├── 19.gif │ │ │ │ │ │ ├── 2.gif │ │ │ │ │ │ ├── 20.gif │ │ │ │ │ │ ├── 21.gif │ │ │ │ │ │ ├── 22.gif │ │ │ │ │ │ ├── 23.gif │ │ │ │ │ │ ├── 24.gif │ │ │ │ │ │ ├── 25.gif │ │ │ │ │ │ ├── 26.gif │ │ │ │ │ │ ├── 27.gif │ │ │ │ │ │ ├── 28.gif │ │ │ │ │ │ ├── 29.gif │ │ │ │ │ │ ├── 3.gif │ │ │ │ │ │ ├── 30.gif │ │ │ │ │ │ ├── 31.gif │ │ │ │ │ │ ├── 32.gif │ │ │ │ │ │ ├── 33.gif │ │ │ │ │ │ ├── 34.gif │ │ │ │ │ │ ├── 35.gif │ │ │ │ │ │ ├── 36.gif │ │ │ │ │ │ ├── 37.gif │ │ │ │ │ │ ├── 38.gif │ │ │ │ │ │ ├── 39.gif │ │ │ │ │ │ ├── 4.gif │ │ │ │ │ │ ├── 40.gif │ │ │ │ │ │ ├── 41.gif │ │ │ │ │ │ ├── 42.gif │ │ │ │ │ │ ├── 43.gif │ │ │ │ │ │ ├── 44.gif │ │ │ │ │ │ ├── 45.gif │ │ │ │ │ │ ├── 46.gif │ │ │ │ │ │ ├── 47.gif │ │ │ │ │ │ ├── 48.gif │ │ │ │ │ │ ├── 49.gif │ │ │ │ │ │ ├── 5.gif │ │ │ │ │ │ ├── 50.gif │ │ │ │ │ │ ├── 51.gif │ │ │ │ │ │ ├── 52.gif │ │ │ │ │ │ ├── 53.gif │ │ │ │ │ │ ├── 54.gif │ │ │ │ │ │ ├── 55.gif │ │ │ │ │ │ ├── 56.gif │ │ │ │ │ │ ├── 57.gif │ │ │ │ │ │ ├── 58.gif │ │ │ │ │ │ ├── 59.gif │ │ │ │ │ │ ├── 6.gif │ │ │ │ │ │ ├── 60.gif │ │ │ │ │ │ ├── 61.gif │ │ │ │ │ │ ├── 62.gif │ │ │ │ │ │ ├── 63.gif │ │ │ │ │ │ ├── 64.gif │ │ │ │ │ │ ├── 65.gif │ │ │ │ │ │ ├── 66.gif │ │ │ │ │ │ ├── 67.gif │ │ │ │ │ │ ├── 68.gif │ │ │ │ │ │ ├── 69.gif │ │ │ │ │ │ ├── 7.gif │ │ │ │ │ │ ├── 70.gif │ │ │ │ │ │ ├── 71.gif │ │ │ │ │ │ ├── 72.gif │ │ │ │ │ │ ├── 73.gif │ │ │ │ │ │ ├── 74.gif │ │ │ │ │ │ ├── 75.gif │ │ │ │ │ │ ├── 76.gif │ │ │ │ │ │ ├── 77.gif │ │ │ │ │ │ ├── 78.gif │ │ │ │ │ │ ├── 79.gif │ │ │ │ │ │ ├── 8.gif │ │ │ │ │ │ ├── 80.gif │ │ │ │ │ │ ├── 81.gif │ │ │ │ │ │ ├── 82.gif │ │ │ │ │ │ ├── 83.gif │ │ │ │ │ │ ├── 84.gif │ │ │ │ │ │ ├── 85.gif │ │ │ │ │ │ ├── 86.gif │ │ │ │ │ │ ├── 87.gif │ │ │ │ │ │ ├── 88.gif │ │ │ │ │ │ ├── 89.gif │ │ │ │ │ │ ├── 9.gif │ │ │ │ │ │ ├── 90.gif │ │ │ │ │ │ ├── 91.gif │ │ │ │ │ │ ├── 92.gif │ │ │ │ │ │ ├── 93.gif │ │ │ │ │ │ ├── 94.gif │ │ │ │ │ │ ├── 95.gif │ │ │ │ │ │ ├── 96.gif │ │ │ │ │ │ ├── 97.gif │ │ │ │ │ │ ├── 98.gif │ │ │ │ │ │ ├── 99.gif │ │ │ │ │ │ └── static.gif │ │ │ │ ├── filemanager │ │ │ │ │ ├── filemanager.js │ │ │ │ │ └── images │ │ │ │ │ │ ├── file-16.gif │ │ │ │ │ │ ├── file-64.gif │ │ │ │ │ │ ├── folder-16.gif │ │ │ │ │ │ ├── folder-64.gif │ │ │ │ │ │ └── go-up.gif │ │ │ │ ├── flash │ │ │ │ │ └── flash.js │ │ │ │ ├── image │ │ │ │ │ ├── image.js │ │ │ │ │ └── images │ │ │ │ │ │ ├── align_left.gif │ │ │ │ │ │ ├── align_right.gif │ │ │ │ │ │ ├── align_top.gif │ │ │ │ │ │ └── refresh.png │ │ │ │ ├── insertfile │ │ │ │ │ └── insertfile.js │ │ │ │ ├── lineheight │ │ │ │ │ └── lineheight.js │ │ │ │ ├── link │ │ │ │ │ └── link.js │ │ │ │ ├── map │ │ │ │ │ ├── map.html │ │ │ │ │ └── map.js │ │ │ │ ├── media │ │ │ │ │ └── media.js │ │ │ │ ├── multiimage │ │ │ │ │ ├── images │ │ │ │ │ │ ├── image.png │ │ │ │ │ │ ├── select-files-en.png │ │ │ │ │ │ ├── select-files-zh_CN.png │ │ │ │ │ │ └── swfupload.swf │ │ │ │ │ └── multiimage.js │ │ │ │ ├── pagebreak │ │ │ │ │ └── pagebreak.js │ │ │ │ ├── plainpaste │ │ │ │ │ └── plainpaste.js │ │ │ │ ├── preview │ │ │ │ │ └── preview.js │ │ │ │ ├── quickformat │ │ │ │ │ └── quickformat.js │ │ │ │ ├── table │ │ │ │ │ └── table.js │ │ │ │ ├── template │ │ │ │ │ ├── html │ │ │ │ │ │ ├── 1.html │ │ │ │ │ │ ├── 2.html │ │ │ │ │ │ └── 3.html │ │ │ │ │ └── template.js │ │ │ │ └── wordpaste │ │ │ │ │ └── wordpaste.js │ │ │ └── themes │ │ │ │ ├── common │ │ │ │ ├── anchor.gif │ │ │ │ ├── blank.gif │ │ │ │ ├── flash.gif │ │ │ │ ├── loading.gif │ │ │ │ ├── media.gif │ │ │ │ └── rm.gif │ │ │ │ ├── default │ │ │ │ ├── background.png │ │ │ │ ├── default.css │ │ │ │ └── default.png │ │ │ │ ├── qq │ │ │ │ ├── editor.gif │ │ │ │ └── qq.css │ │ │ │ └── simple │ │ │ │ └── simple.css │ │ ├── lte-ie7.js │ │ ├── print.js │ │ ├── print │ │ │ └── LodopFuncs.js │ │ ├── quickPrint.js │ │ └── validation.js │ │ └── packages.config ├── LMS.Web │ └── LighTake.LMS.Web │ │ ├── Css │ │ ├── CheckStand.css │ │ ├── Dropdownlist.css │ │ ├── Faile.wav │ │ ├── ShowBigPic.css │ │ ├── Site.css │ │ ├── Success.wav │ │ ├── ajax_loading.css │ │ ├── buy-sale-base.css │ │ ├── login.css │ │ ├── pager.css │ │ ├── print.css │ │ ├── public.css │ │ └── publics.css │ │ ├── Global.asax │ │ ├── Images │ │ ├── Print │ │ │ ├── DHL │ │ │ │ └── logo.jpg │ │ │ ├── NLPOST │ │ │ │ ├── Logo_09.jpg │ │ │ │ ├── SF-logo.jpg │ │ │ │ ├── logo3.jpg │ │ │ │ ├── logo_03.jpg │ │ │ │ └── logo_06.jpg │ │ │ ├── TNT │ │ │ │ ├── postnl.jpg │ │ │ │ ├── priority.jpg │ │ │ │ └── selec.jpg │ │ │ ├── logo.png │ │ │ └── widgetlove.jpg │ │ ├── SF-logo.jpg │ │ ├── background.png │ │ ├── backimg1.png │ │ ├── backimg2.png │ │ ├── backimg3.png │ │ ├── backimg4.png │ │ ├── backimg5.png │ │ ├── cancel.png │ │ ├── datePicker.gif │ │ ├── delete_2.png │ │ ├── downarrow.jpg │ │ ├── edit_add.png │ │ ├── edit_remove.png │ │ ├── exclamation.png │ │ ├── fancy_nav_left.png │ │ ├── fancy_nav_right.png │ │ ├── filesave.png │ │ ├── loader.gif │ │ ├── loader1.gif │ │ ├── loading.jpg │ │ ├── login_2.png │ │ ├── login_bg.png │ │ ├── login_middle_img.png │ │ ├── logo_03.gif │ │ ├── logo_07.gif │ │ ├── logo_10.gif │ │ ├── logo_17.gif │ │ ├── main_img.png │ │ ├── main_img6.png │ │ ├── menu.png │ │ ├── menu_arrow.png │ │ ├── menu_l.png │ │ ├── menu_l_selected.png │ │ ├── menu_minus.png │ │ ├── menu_plus.png │ │ ├── menu_r.png │ │ ├── menu_r_selected.png │ │ ├── minus.png │ │ ├── noImage.jpg │ │ ├── pencil_edit.png │ │ ├── plus.png │ │ ├── quick_l.png │ │ ├── quick_r.png │ │ ├── save_diskette_floppy_disk.png │ │ ├── tick.png │ │ ├── title_link.png │ │ └── title_tab_selected.png │ │ ├── Infrastructure │ │ └── WebDependencyRegistrar.cs │ │ ├── LighTake.LMS.Web.csproj │ │ ├── Scripts │ │ ├── MicrosoftAjax.debug.js │ │ ├── MicrosoftAjax.js │ │ ├── MicrosoftMvcAjax.debug.js │ │ ├── MicrosoftMvcAjax.js │ │ ├── MicrosoftMvcValidation.debug.js │ │ ├── MicrosoftMvcValidation.js │ │ ├── ajax_loading.js │ │ ├── artdialog │ │ │ ├── jquery.artDialog.js │ │ │ ├── plugins │ │ │ │ └── iframeTools.js │ │ │ └── skins │ │ │ │ ├── default.css │ │ │ │ └── icons │ │ │ │ ├── error.png │ │ │ │ ├── face-sad.png │ │ │ │ ├── face-smile.png │ │ │ │ ├── loading.gif │ │ │ │ ├── question.png │ │ │ │ ├── succeed.png │ │ │ │ └── warning.png │ │ ├── chosen │ │ │ ├── chosen-sprite.png │ │ │ ├── chosen.css │ │ │ ├── chosen.jquery.min.js │ │ │ └── chosen.proto.min.js │ │ ├── common.js │ │ ├── dis_js.js │ │ ├── dropdownlist.js │ │ ├── easyloader.js │ │ ├── easyui-public.js │ │ ├── iCarousel.js │ │ ├── jq1.4.js │ │ ├── jquery-1.7.1.intellisense.js │ │ ├── jquery-1.7.1.js │ │ ├── jquery-1.7.1.min.js │ │ ├── jquery-1.8.0.js │ │ ├── jquery-1.8.0.min.js │ │ ├── jquery-easyui-1.3.1 │ │ │ ├── changelog.txt │ │ │ ├── demo │ │ │ │ ├── accordion.html │ │ │ │ ├── calendar.html │ │ │ │ ├── combo.html │ │ │ │ ├── combobox.html │ │ │ │ ├── combobox_data.json │ │ │ │ ├── combogrid.html │ │ │ │ ├── combotree.html │ │ │ │ ├── datagrid.html │ │ │ │ ├── datagrid2.html │ │ │ │ ├── datagrid3.html │ │ │ │ ├── datagrid4.html │ │ │ │ ├── datagrid5.html │ │ │ │ ├── datagrid_data.json │ │ │ │ ├── datagrid_data2.json │ │ │ │ ├── datagrid_data3.json │ │ │ │ ├── datebox.html │ │ │ │ ├── datetimebox.html │ │ │ │ ├── demo.css │ │ │ │ ├── dialog.html │ │ │ │ ├── draggable.html │ │ │ │ ├── droppable.html │ │ │ │ ├── droppable1.html │ │ │ │ ├── droppable2.html │ │ │ │ ├── easyloader.html │ │ │ │ ├── form.html │ │ │ │ ├── form_data.json │ │ │ │ ├── layout.html │ │ │ │ ├── layout1.html │ │ │ │ ├── layout2.html │ │ │ │ ├── linkbutton.html │ │ │ │ ├── menu.html │ │ │ │ ├── menubutton.html │ │ │ │ ├── messager.html │ │ │ │ ├── numberbox.html │ │ │ │ ├── numberbox2.html │ │ │ │ ├── numberspinner.html │ │ │ │ ├── pagination.html │ │ │ │ ├── panel.html │ │ │ │ ├── panel2.html │ │ │ │ ├── progressbar.html │ │ │ │ ├── propertygrid.html │ │ │ │ ├── propertygrid_data.json │ │ │ │ ├── resizable.html │ │ │ │ ├── searchbox.html │ │ │ │ ├── slider.html │ │ │ │ ├── splitbutton.html │ │ │ │ ├── tabs.html │ │ │ │ ├── tabs_href_test.html │ │ │ │ ├── timespinner.html │ │ │ │ ├── tree.html │ │ │ │ ├── tree2.html │ │ │ │ ├── tree_data.json │ │ │ │ ├── treegrid.html │ │ │ │ ├── treegrid2.html │ │ │ │ ├── treegrid3.html │ │ │ │ ├── treegrid_data.json │ │ │ │ ├── treegrid_data2.json │ │ │ │ ├── treegrid_data3.json │ │ │ │ ├── treegrid_subdata.json │ │ │ │ ├── validatebox.html │ │ │ │ └── window.html │ │ │ ├── easyloader.js │ │ │ ├── jquery.easyui.min.js │ │ │ ├── licence_gpl.txt │ │ │ ├── license_commercial.txt │ │ │ ├── locale │ │ │ │ ├── easyui-lang-af.js │ │ │ │ ├── easyui-lang-bg.js │ │ │ │ ├── easyui-lang-ca.js │ │ │ │ ├── easyui-lang-cs.js │ │ │ │ ├── easyui-lang-cz.js │ │ │ │ ├── easyui-lang-da.js │ │ │ │ ├── easyui-lang-de.js │ │ │ │ ├── easyui-lang-en.js │ │ │ │ ├── easyui-lang-es.js │ │ │ │ ├── easyui-lang-fr.js │ │ │ │ ├── easyui-lang-it.js │ │ │ │ ├── easyui-lang-nl.js │ │ │ │ ├── easyui-lang-pt_BR.js │ │ │ │ ├── easyui-lang-ru.js │ │ │ │ ├── easyui-lang-tr.js │ │ │ │ ├── easyui-lang-zh_CN.js │ │ │ │ └── easyui-lang-zh_TW.js │ │ │ ├── plugins │ │ │ │ ├── jquery.accordion.js │ │ │ │ ├── jquery.calendar.js │ │ │ │ ├── jquery.combo.js │ │ │ │ ├── jquery.combobox.js │ │ │ │ ├── jquery.combogrid.js │ │ │ │ ├── jquery.combotree.js │ │ │ │ ├── jquery.datagrid.js │ │ │ │ ├── jquery.datebox.js │ │ │ │ ├── jquery.datetimebox.js │ │ │ │ ├── jquery.dialog.js │ │ │ │ ├── jquery.draggable.js │ │ │ │ ├── jquery.droppable.js │ │ │ │ ├── jquery.form.js │ │ │ │ ├── jquery.layout.js │ │ │ │ ├── jquery.linkbutton.js │ │ │ │ ├── jquery.menu.js │ │ │ │ ├── jquery.menubutton.js │ │ │ │ ├── jquery.messager.js │ │ │ │ ├── jquery.numberbox.js │ │ │ │ ├── jquery.numberspinner.js │ │ │ │ ├── jquery.pagination.js │ │ │ │ ├── jquery.panel.js │ │ │ │ ├── jquery.parser.js │ │ │ │ ├── jquery.progressbar.js │ │ │ │ ├── jquery.propertygrid.js │ │ │ │ ├── jquery.resizable.js │ │ │ │ ├── jquery.searchbox.js │ │ │ │ ├── jquery.slider.js │ │ │ │ ├── jquery.spinner.js │ │ │ │ ├── jquery.splitbutton.js │ │ │ │ ├── jquery.tabs.js │ │ │ │ ├── jquery.timespinner.js │ │ │ │ ├── jquery.tree.js │ │ │ │ ├── jquery.treegrid.js │ │ │ │ ├── jquery.validatebox.js │ │ │ │ └── jquery.window.js │ │ │ ├── readme.txt │ │ │ ├── src │ │ │ │ ├── easyloader.js │ │ │ │ ├── jquery.accordion.js │ │ │ │ ├── jquery.calendar.js │ │ │ │ ├── jquery.combobox.js │ │ │ │ ├── jquery.datebox.js │ │ │ │ ├── jquery.draggable.js │ │ │ │ ├── jquery.droppable.js │ │ │ │ ├── jquery.form.js │ │ │ │ ├── jquery.linkbutton.js │ │ │ │ ├── jquery.menu.js │ │ │ │ ├── jquery.parser.js │ │ │ │ ├── jquery.progressbar.js │ │ │ │ ├── jquery.propertygrid.js │ │ │ │ ├── jquery.resizable.js │ │ │ │ ├── jquery.slider.js │ │ │ │ ├── jquery.tabs.js │ │ │ │ └── jquery.window.js │ │ │ └── themes │ │ │ │ ├── default │ │ │ │ ├── accordion.css │ │ │ │ ├── calendar.css │ │ │ │ ├── combo.css │ │ │ │ ├── combobox.css │ │ │ │ ├── datagrid.css │ │ │ │ ├── datebox.css │ │ │ │ ├── dialog.css │ │ │ │ ├── easyui.css │ │ │ │ ├── images │ │ │ │ │ ├── accordion_collapse.png │ │ │ │ │ ├── accordion_expand.png │ │ │ │ │ ├── blank.gif │ │ │ │ │ ├── button_a_bg.gif │ │ │ │ │ ├── button_plain_hover.png │ │ │ │ │ ├── button_span_bg.gif │ │ │ │ │ ├── calendar_nextmonth.gif │ │ │ │ │ ├── calendar_nextyear.gif │ │ │ │ │ ├── calendar_prevmonth.gif │ │ │ │ │ ├── calendar_prevyear.gif │ │ │ │ │ ├── combo_arrow.gif │ │ │ │ │ ├── datagrid_header_bg.gif │ │ │ │ │ ├── datagrid_row_collapse.gif │ │ │ │ │ ├── datagrid_row_expand.gif │ │ │ │ │ ├── datagrid_sort_asc.gif │ │ │ │ │ ├── datagrid_sort_desc.gif │ │ │ │ │ ├── datagrid_title_bg.png │ │ │ │ │ ├── datebox_arrow.png │ │ │ │ │ ├── layout_arrows.png │ │ │ │ │ ├── menu.gif │ │ │ │ │ ├── menu_downarrow.png │ │ │ │ │ ├── menu_rightarrow.png │ │ │ │ │ ├── menu_sep.png │ │ │ │ │ ├── menu_split_downarrow.png │ │ │ │ │ ├── messager_error.gif │ │ │ │ │ ├── messager_info.gif │ │ │ │ │ ├── messager_question.gif │ │ │ │ │ ├── messager_warning.gif │ │ │ │ │ ├── pagination_first.gif │ │ │ │ │ ├── pagination_last.gif │ │ │ │ │ ├── pagination_load.png │ │ │ │ │ ├── pagination_loading.gif │ │ │ │ │ ├── pagination_next.gif │ │ │ │ │ ├── pagination_prev.gif │ │ │ │ │ ├── panel_loading.gif │ │ │ │ │ ├── panel_title.png │ │ │ │ │ ├── panel_tools.gif │ │ │ │ │ ├── searchbox_button.png │ │ │ │ │ ├── slider_handle.png │ │ │ │ │ ├── spinner_arrow_down.gif │ │ │ │ │ ├── spinner_arrow_up.gif │ │ │ │ │ ├── tabs_active.png │ │ │ │ │ ├── tabs_close.gif │ │ │ │ │ ├── tabs_enabled.png │ │ │ │ │ ├── tabs_leftarrow.png │ │ │ │ │ ├── tabs_rightarrow.png │ │ │ │ │ ├── tree_arrows.gif │ │ │ │ │ ├── tree_checkbox_0.gif │ │ │ │ │ ├── tree_checkbox_1.gif │ │ │ │ │ ├── tree_checkbox_2.gif │ │ │ │ │ ├── tree_dnd_no.png │ │ │ │ │ ├── tree_dnd_yes.png │ │ │ │ │ ├── tree_elbow.png │ │ │ │ │ ├── tree_file.gif │ │ │ │ │ ├── tree_folder.gif │ │ │ │ │ ├── tree_folder_open.gif │ │ │ │ │ ├── tree_loading.gif │ │ │ │ │ ├── validatebox_pointer.gif │ │ │ │ │ └── validatebox_warning.png │ │ │ │ ├── layout.css │ │ │ │ ├── linkbutton.css │ │ │ │ ├── menu.css │ │ │ │ ├── menubutton.css │ │ │ │ ├── messager.css │ │ │ │ ├── pagination.css │ │ │ │ ├── panel.css │ │ │ │ ├── progressbar.css │ │ │ │ ├── propertygrid.css │ │ │ │ ├── searchbox.css │ │ │ │ ├── slider.css │ │ │ │ ├── spinner.css │ │ │ │ ├── splitbutton.css │ │ │ │ ├── tabs.css │ │ │ │ ├── tree.css │ │ │ │ ├── validatebox.css │ │ │ │ └── window.css │ │ │ │ ├── gray │ │ │ │ ├── accordion.css │ │ │ │ ├── calendar.css │ │ │ │ ├── combo.css │ │ │ │ ├── combobox.css │ │ │ │ ├── datagrid.css │ │ │ │ ├── datebox.css │ │ │ │ ├── dialog.css │ │ │ │ ├── easyui.css │ │ │ │ ├── images │ │ │ │ │ ├── accordion_collapse.png │ │ │ │ │ ├── accordion_expand.png │ │ │ │ │ ├── blank.gif │ │ │ │ │ ├── button_a_bg.gif │ │ │ │ │ ├── button_plain_hover.png │ │ │ │ │ ├── button_span_bg.gif │ │ │ │ │ ├── calendar_nextmonth.gif │ │ │ │ │ ├── calendar_nextyear.gif │ │ │ │ │ ├── calendar_prevmonth.gif │ │ │ │ │ ├── calendar_prevyear.gif │ │ │ │ │ ├── combo_arrow.gif │ │ │ │ │ ├── datagrid_header_bg.gif │ │ │ │ │ ├── datagrid_row_collapse.gif │ │ │ │ │ ├── datagrid_row_expand.gif │ │ │ │ │ ├── datagrid_sort_asc.gif │ │ │ │ │ ├── datagrid_sort_desc.gif │ │ │ │ │ ├── datagrid_title_bg.gif │ │ │ │ │ ├── datebox_arrow.png │ │ │ │ │ ├── layout_arrows.png │ │ │ │ │ ├── menu.gif │ │ │ │ │ ├── menu_downarrow.png │ │ │ │ │ ├── menu_rightarrow.png │ │ │ │ │ ├── menu_sep.png │ │ │ │ │ ├── menu_split_downarrow.png │ │ │ │ │ ├── messager_error.gif │ │ │ │ │ ├── messager_info.gif │ │ │ │ │ ├── messager_question.gif │ │ │ │ │ ├── messager_warning.gif │ │ │ │ │ ├── pagination_first.gif │ │ │ │ │ ├── pagination_last.gif │ │ │ │ │ ├── pagination_load.png │ │ │ │ │ ├── pagination_loading.gif │ │ │ │ │ ├── pagination_next.gif │ │ │ │ │ ├── pagination_prev.gif │ │ │ │ │ ├── panel_loading.gif │ │ │ │ │ ├── panel_title.gif │ │ │ │ │ ├── panel_tools.gif │ │ │ │ │ ├── searchbox_button.png │ │ │ │ │ ├── slider_handle.png │ │ │ │ │ ├── spinner_arrow_down.gif │ │ │ │ │ ├── spinner_arrow_up.gif │ │ │ │ │ ├── tabs_close.gif │ │ │ │ │ ├── tabs_enabled.gif │ │ │ │ │ ├── tabs_leftarrow.png │ │ │ │ │ ├── tabs_rightarrow.png │ │ │ │ │ ├── tree_arrows.gif │ │ │ │ │ ├── tree_checkbox_0.gif │ │ │ │ │ ├── tree_checkbox_1.gif │ │ │ │ │ ├── tree_checkbox_2.gif │ │ │ │ │ ├── tree_dnd_no.png │ │ │ │ │ ├── tree_dnd_yes.png │ │ │ │ │ ├── tree_elbow.png │ │ │ │ │ ├── tree_file.gif │ │ │ │ │ ├── tree_folder.gif │ │ │ │ │ ├── tree_folder_open.gif │ │ │ │ │ ├── tree_loading.gif │ │ │ │ │ ├── validatebox_pointer.gif │ │ │ │ │ └── validatebox_warning.png │ │ │ │ ├── layout.css │ │ │ │ ├── linkbutton.css │ │ │ │ ├── menu.css │ │ │ │ ├── menubutton.css │ │ │ │ ├── messager.css │ │ │ │ ├── pagination.css │ │ │ │ ├── panel.css │ │ │ │ ├── progressbar.css │ │ │ │ ├── propertygrid.css │ │ │ │ ├── searchbox.css │ │ │ │ ├── slider.css │ │ │ │ ├── spinner.css │ │ │ │ ├── splitbutton.css │ │ │ │ ├── tabs.css │ │ │ │ ├── tree.css │ │ │ │ ├── validatebox.css │ │ │ │ └── window.css │ │ │ │ ├── icon.css │ │ │ │ ├── icons │ │ │ │ ├── back.png │ │ │ │ ├── blank.gif │ │ │ │ ├── cancel.png │ │ │ │ ├── cut.png │ │ │ │ ├── edit_add.png │ │ │ │ ├── edit_remove.png │ │ │ │ ├── filesave.png │ │ │ │ ├── help.png │ │ │ │ ├── mini_add.png │ │ │ │ ├── mini_edit.png │ │ │ │ ├── mini_refresh.png │ │ │ │ ├── no.png │ │ │ │ ├── ok.png │ │ │ │ ├── pencil.png │ │ │ │ ├── print.png │ │ │ │ ├── redo.png │ │ │ │ ├── reload.png │ │ │ │ ├── search.png │ │ │ │ ├── sum.png │ │ │ │ ├── tip.png │ │ │ │ └── undo.png │ │ │ │ └── metro │ │ │ │ ├── accordion.css │ │ │ │ ├── calendar.css │ │ │ │ ├── combo.css │ │ │ │ ├── combobox.css │ │ │ │ ├── datagrid.css │ │ │ │ ├── datebox.css │ │ │ │ ├── dialog.css │ │ │ │ ├── easyui.css │ │ │ │ ├── images │ │ │ │ ├── accordion_collapse.png │ │ │ │ ├── accordion_expand.png │ │ │ │ ├── blank.gif │ │ │ │ ├── calendar_nextmonth.gif │ │ │ │ ├── calendar_nextyear.gif │ │ │ │ ├── calendar_prevmonth.gif │ │ │ │ ├── calendar_prevyear.gif │ │ │ │ ├── combo_arrow.gif │ │ │ │ ├── datagrid_row_collapse.gif │ │ │ │ ├── datagrid_row_expand.gif │ │ │ │ ├── datagrid_sort_asc.gif │ │ │ │ ├── datagrid_sort_desc.gif │ │ │ │ ├── datebox_arrow.png │ │ │ │ ├── layout_arrows.png │ │ │ │ ├── menu_downarrow.png │ │ │ │ ├── menu_rightarrow.png │ │ │ │ ├── menu_sep.png │ │ │ │ ├── menu_split_downarrow.png │ │ │ │ ├── messager_error.gif │ │ │ │ ├── messager_info.gif │ │ │ │ ├── messager_question.gif │ │ │ │ ├── messager_warning.gif │ │ │ │ ├── pagination_first.gif │ │ │ │ ├── pagination_last.gif │ │ │ │ ├── pagination_load.png │ │ │ │ ├── pagination_loading.gif │ │ │ │ ├── pagination_next.gif │ │ │ │ ├── pagination_prev.gif │ │ │ │ ├── panel_loading.gif │ │ │ │ ├── panel_tools.gif │ │ │ │ ├── searchbox_button.png │ │ │ │ ├── slider_handle.png │ │ │ │ ├── tabs_close.gif │ │ │ │ ├── tabs_leftarrow.png │ │ │ │ ├── tabs_rightarrow.png │ │ │ │ ├── tree_arrows.gif │ │ │ │ ├── tree_checkbox_0.gif │ │ │ │ ├── tree_checkbox_1.gif │ │ │ │ ├── tree_checkbox_2.gif │ │ │ │ ├── tree_dnd_no.png │ │ │ │ ├── tree_dnd_yes.png │ │ │ │ ├── tree_elbow.png │ │ │ │ ├── tree_file.gif │ │ │ │ ├── tree_folder.gif │ │ │ │ ├── tree_folder_open.gif │ │ │ │ ├── tree_loading.gif │ │ │ │ └── validatebox_warning.png │ │ │ │ ├── layout.css │ │ │ │ ├── linkbutton.css │ │ │ │ ├── menu.css │ │ │ │ ├── menubutton.css │ │ │ │ ├── messager.css │ │ │ │ ├── pagination.css │ │ │ │ ├── panel.css │ │ │ │ ├── progressbar.css │ │ │ │ ├── propertygrid.css │ │ │ │ ├── searchbox.css │ │ │ │ ├── slider.css │ │ │ │ ├── splitbutton.css │ │ │ │ ├── tabs.css │ │ │ │ ├── tree.css │ │ │ │ ├── validatebox.css │ │ │ │ └── window.css │ │ ├── jquery-ui-1.8.20.js │ │ ├── jquery-ui-1.8.20.min.js │ │ ├── jquery-ui │ │ │ ├── combobox.js │ │ │ ├── jquery-ui.css │ │ │ ├── jquery.ui.autocomplete.js │ │ │ ├── jquery.ui.autocomplete.min.css │ │ │ ├── jquery.ui.button.js │ │ │ ├── jquery.ui.core.js │ │ │ ├── jquery.ui.menu.js │ │ │ ├── jquery.ui.position.js │ │ │ ├── jquery.ui.tooltip.js │ │ │ └── jquery.ui.widget.js │ │ ├── jquery.extend.js │ │ ├── jquery.json-2.4.min.js │ │ ├── jquery.tmpl.min.js │ │ ├── jquery.unobtrusive-ajax.js │ │ ├── jquery.unobtrusive-ajax.min.js │ │ ├── jquery.validate-vsdoc.js │ │ ├── jquery.validate.js │ │ ├── jquery.validate.min.js │ │ ├── jquery.validate.unobtrusive.js │ │ ├── jquery.validate.unobtrusive.min.js │ │ ├── kindeditor │ │ │ ├── asp.net │ │ │ │ ├── README.txt │ │ │ │ ├── demo.aspx │ │ │ │ ├── file_manager_json.ashx │ │ │ │ └── upload_json.ashx │ │ │ ├── examples │ │ │ │ ├── colorpicker.html │ │ │ │ ├── custom-plugin.html │ │ │ │ ├── custom-theme.html │ │ │ │ ├── default.html │ │ │ │ ├── dialog.html │ │ │ │ ├── dynamic-load.html │ │ │ │ ├── file-dialog.html │ │ │ │ ├── file-manager.html │ │ │ │ ├── filter-mode.html │ │ │ │ ├── image-dialog.html │ │ │ │ ├── index.css │ │ │ │ ├── index.html │ │ │ │ ├── jquery-ui.html │ │ │ │ ├── jquery.html │ │ │ │ ├── mootools.html │ │ │ │ ├── multi-image-dialog.html │ │ │ │ ├── multi-language.html │ │ │ │ ├── newline.html │ │ │ │ ├── node.html │ │ │ │ ├── paste-type.html │ │ │ │ ├── qqstyle.html │ │ │ │ ├── readonly.html │ │ │ │ ├── simple.html │ │ │ │ ├── total.html │ │ │ │ ├── uploadbutton.html │ │ │ │ ├── url-type.html │ │ │ │ └── word-count.html │ │ │ ├── jsp │ │ │ │ ├── README.txt │ │ │ │ ├── demo.jsp │ │ │ │ ├── file_manager_json.jsp │ │ │ │ ├── lib │ │ │ │ │ ├── commons-fileupload-1.2.1.jar │ │ │ │ │ ├── commons-io-1.4.jar │ │ │ │ │ └── json_simple-1.1.jar │ │ │ │ └── upload_json.jsp │ │ │ ├── kindeditor-min.js │ │ │ ├── kindeditor.js │ │ │ ├── lang │ │ │ │ ├── ar.js │ │ │ │ ├── en.js │ │ │ │ ├── zh_CN.js │ │ │ │ └── zh_TW.js │ │ │ ├── php │ │ │ │ ├── JSON.php │ │ │ │ ├── demo.php │ │ │ │ ├── file_manager_json.php │ │ │ │ └── upload_json.php │ │ │ ├── plugins │ │ │ │ ├── anchor │ │ │ │ │ └── anchor.js │ │ │ │ ├── baidumap │ │ │ │ │ ├── baidumap.js │ │ │ │ │ └── map.html │ │ │ │ ├── clearhtml │ │ │ │ │ └── clearhtml.js │ │ │ │ ├── code │ │ │ │ │ ├── code.js │ │ │ │ │ ├── prettify.css │ │ │ │ │ └── prettify.js │ │ │ │ ├── emoticons │ │ │ │ │ ├── emoticons.js │ │ │ │ │ └── images │ │ │ │ │ │ ├── 0.gif │ │ │ │ │ │ ├── 1.gif │ │ │ │ │ │ ├── 10.gif │ │ │ │ │ │ ├── 100.gif │ │ │ │ │ │ ├── 101.gif │ │ │ │ │ │ ├── 102.gif │ │ │ │ │ │ ├── 103.gif │ │ │ │ │ │ ├── 104.gif │ │ │ │ │ │ ├── 105.gif │ │ │ │ │ │ ├── 106.gif │ │ │ │ │ │ ├── 107.gif │ │ │ │ │ │ ├── 108.gif │ │ │ │ │ │ ├── 109.gif │ │ │ │ │ │ ├── 11.gif │ │ │ │ │ │ ├── 110.gif │ │ │ │ │ │ ├── 111.gif │ │ │ │ │ │ ├── 112.gif │ │ │ │ │ │ ├── 113.gif │ │ │ │ │ │ ├── 114.gif │ │ │ │ │ │ ├── 115.gif │ │ │ │ │ │ ├── 116.gif │ │ │ │ │ │ ├── 117.gif │ │ │ │ │ │ ├── 118.gif │ │ │ │ │ │ ├── 119.gif │ │ │ │ │ │ ├── 12.gif │ │ │ │ │ │ ├── 120.gif │ │ │ │ │ │ ├── 121.gif │ │ │ │ │ │ ├── 122.gif │ │ │ │ │ │ ├── 123.gif │ │ │ │ │ │ ├── 124.gif │ │ │ │ │ │ ├── 125.gif │ │ │ │ │ │ ├── 126.gif │ │ │ │ │ │ ├── 127.gif │ │ │ │ │ │ ├── 128.gif │ │ │ │ │ │ ├── 129.gif │ │ │ │ │ │ ├── 13.gif │ │ │ │ │ │ ├── 130.gif │ │ │ │ │ │ ├── 131.gif │ │ │ │ │ │ ├── 132.gif │ │ │ │ │ │ ├── 133.gif │ │ │ │ │ │ ├── 134.gif │ │ │ │ │ │ ├── 14.gif │ │ │ │ │ │ ├── 15.gif │ │ │ │ │ │ ├── 16.gif │ │ │ │ │ │ ├── 17.gif │ │ │ │ │ │ ├── 18.gif │ │ │ │ │ │ ├── 19.gif │ │ │ │ │ │ ├── 2.gif │ │ │ │ │ │ ├── 20.gif │ │ │ │ │ │ ├── 21.gif │ │ │ │ │ │ ├── 22.gif │ │ │ │ │ │ ├── 23.gif │ │ │ │ │ │ ├── 24.gif │ │ │ │ │ │ ├── 25.gif │ │ │ │ │ │ ├── 26.gif │ │ │ │ │ │ ├── 27.gif │ │ │ │ │ │ ├── 28.gif │ │ │ │ │ │ ├── 29.gif │ │ │ │ │ │ ├── 3.gif │ │ │ │ │ │ ├── 30.gif │ │ │ │ │ │ ├── 31.gif │ │ │ │ │ │ ├── 32.gif │ │ │ │ │ │ ├── 33.gif │ │ │ │ │ │ ├── 34.gif │ │ │ │ │ │ ├── 35.gif │ │ │ │ │ │ ├── 36.gif │ │ │ │ │ │ ├── 37.gif │ │ │ │ │ │ ├── 38.gif │ │ │ │ │ │ ├── 39.gif │ │ │ │ │ │ ├── 4.gif │ │ │ │ │ │ ├── 40.gif │ │ │ │ │ │ ├── 41.gif │ │ │ │ │ │ ├── 42.gif │ │ │ │ │ │ ├── 43.gif │ │ │ │ │ │ ├── 44.gif │ │ │ │ │ │ ├── 45.gif │ │ │ │ │ │ ├── 46.gif │ │ │ │ │ │ ├── 47.gif │ │ │ │ │ │ ├── 48.gif │ │ │ │ │ │ ├── 49.gif │ │ │ │ │ │ ├── 5.gif │ │ │ │ │ │ ├── 50.gif │ │ │ │ │ │ ├── 51.gif │ │ │ │ │ │ ├── 52.gif │ │ │ │ │ │ ├── 53.gif │ │ │ │ │ │ ├── 54.gif │ │ │ │ │ │ ├── 55.gif │ │ │ │ │ │ ├── 56.gif │ │ │ │ │ │ ├── 57.gif │ │ │ │ │ │ ├── 58.gif │ │ │ │ │ │ ├── 59.gif │ │ │ │ │ │ ├── 6.gif │ │ │ │ │ │ ├── 60.gif │ │ │ │ │ │ ├── 61.gif │ │ │ │ │ │ ├── 62.gif │ │ │ │ │ │ ├── 63.gif │ │ │ │ │ │ ├── 64.gif │ │ │ │ │ │ ├── 65.gif │ │ │ │ │ │ ├── 66.gif │ │ │ │ │ │ ├── 67.gif │ │ │ │ │ │ ├── 68.gif │ │ │ │ │ │ ├── 69.gif │ │ │ │ │ │ ├── 7.gif │ │ │ │ │ │ ├── 70.gif │ │ │ │ │ │ ├── 71.gif │ │ │ │ │ │ ├── 72.gif │ │ │ │ │ │ ├── 73.gif │ │ │ │ │ │ ├── 74.gif │ │ │ │ │ │ ├── 75.gif │ │ │ │ │ │ ├── 76.gif │ │ │ │ │ │ ├── 77.gif │ │ │ │ │ │ ├── 78.gif │ │ │ │ │ │ ├── 79.gif │ │ │ │ │ │ ├── 8.gif │ │ │ │ │ │ ├── 80.gif │ │ │ │ │ │ ├── 81.gif │ │ │ │ │ │ ├── 82.gif │ │ │ │ │ │ ├── 83.gif │ │ │ │ │ │ ├── 84.gif │ │ │ │ │ │ ├── 85.gif │ │ │ │ │ │ ├── 86.gif │ │ │ │ │ │ ├── 87.gif │ │ │ │ │ │ ├── 88.gif │ │ │ │ │ │ ├── 89.gif │ │ │ │ │ │ ├── 9.gif │ │ │ │ │ │ ├── 90.gif │ │ │ │ │ │ ├── 91.gif │ │ │ │ │ │ ├── 92.gif │ │ │ │ │ │ ├── 93.gif │ │ │ │ │ │ ├── 94.gif │ │ │ │ │ │ ├── 95.gif │ │ │ │ │ │ ├── 96.gif │ │ │ │ │ │ ├── 97.gif │ │ │ │ │ │ ├── 98.gif │ │ │ │ │ │ ├── 99.gif │ │ │ │ │ │ └── static.gif │ │ │ │ ├── filemanager │ │ │ │ │ ├── filemanager.js │ │ │ │ │ └── images │ │ │ │ │ │ ├── file-16.gif │ │ │ │ │ │ ├── file-64.gif │ │ │ │ │ │ ├── folder-16.gif │ │ │ │ │ │ ├── folder-64.gif │ │ │ │ │ │ └── go-up.gif │ │ │ │ ├── flash │ │ │ │ │ └── flash.js │ │ │ │ ├── image │ │ │ │ │ ├── image.js │ │ │ │ │ └── images │ │ │ │ │ │ ├── align_left.gif │ │ │ │ │ │ ├── align_right.gif │ │ │ │ │ │ ├── align_top.gif │ │ │ │ │ │ └── refresh.png │ │ │ │ ├── insertfile │ │ │ │ │ └── insertfile.js │ │ │ │ ├── lineheight │ │ │ │ │ └── lineheight.js │ │ │ │ ├── link │ │ │ │ │ └── link.js │ │ │ │ ├── map │ │ │ │ │ ├── map.html │ │ │ │ │ └── map.js │ │ │ │ ├── media │ │ │ │ │ └── media.js │ │ │ │ ├── multiimage │ │ │ │ │ ├── images │ │ │ │ │ │ ├── image.png │ │ │ │ │ │ ├── select-files-en.png │ │ │ │ │ │ ├── select-files-zh_CN.png │ │ │ │ │ │ └── swfupload.swf │ │ │ │ │ └── multiimage.js │ │ │ │ ├── pagebreak │ │ │ │ │ └── pagebreak.js │ │ │ │ ├── plainpaste │ │ │ │ │ └── plainpaste.js │ │ │ │ ├── preview │ │ │ │ │ └── preview.js │ │ │ │ ├── quickformat │ │ │ │ │ └── quickformat.js │ │ │ │ ├── table │ │ │ │ │ └── table.js │ │ │ │ ├── template │ │ │ │ │ ├── html │ │ │ │ │ │ ├── 1.html │ │ │ │ │ │ ├── 2.html │ │ │ │ │ │ └── 3.html │ │ │ │ │ └── template.js │ │ │ │ └── wordpaste │ │ │ │ │ └── wordpaste.js │ │ │ └── themes │ │ │ │ ├── common │ │ │ │ ├── anchor.gif │ │ │ │ ├── blank.gif │ │ │ │ ├── flash.gif │ │ │ │ ├── loading.gif │ │ │ │ ├── media.gif │ │ │ │ └── rm.gif │ │ │ │ ├── default │ │ │ │ ├── background.png │ │ │ │ ├── default.css │ │ │ │ └── default.png │ │ │ │ ├── qq │ │ │ │ ├── editor.gif │ │ │ │ └── qq.css │ │ │ │ └── simple │ │ │ │ └── simple.css │ │ ├── liger │ │ │ ├── images │ │ │ │ ├── loading.gif │ │ │ │ ├── top.jpg │ │ │ │ └── topicon.gif │ │ │ ├── jquery-validation │ │ │ │ ├── jquery.metadata.js │ │ │ │ ├── jquery.validate.min.js │ │ │ │ ├── messages_cn.js │ │ │ │ └── version.txt │ │ │ ├── jquery │ │ │ │ ├── jquery-1.3.2.min.js │ │ │ │ ├── jquery-1.4.4.min.js │ │ │ │ └── jquery-1.5.2.min.js │ │ │ ├── json2.js │ │ │ └── liger │ │ │ │ ├── js │ │ │ │ ├── core │ │ │ │ │ ├── base.js │ │ │ │ │ └── inject.js │ │ │ │ ├── ligerui.all.js │ │ │ │ ├── ligerui.min.js │ │ │ │ └── plugins │ │ │ │ │ ├── ligerAccordion.js │ │ │ │ │ ├── ligerButton.js │ │ │ │ │ ├── ligerCheckBox.js │ │ │ │ │ ├── ligerCheckBoxList.js │ │ │ │ │ ├── ligerComboBox.js │ │ │ │ │ ├── ligerDateEditor.js │ │ │ │ │ ├── ligerDialog.js │ │ │ │ │ ├── ligerDrag.js │ │ │ │ │ ├── ligerEasyTab.js │ │ │ │ │ ├── ligerFilter.js │ │ │ │ │ ├── ligerForm.js │ │ │ │ │ ├── ligerGrid.js │ │ │ │ │ ├── ligerLayout.js │ │ │ │ │ ├── ligerListBox.js │ │ │ │ │ ├── ligerMenu.js │ │ │ │ │ ├── ligerMenuBar.js │ │ │ │ │ ├── ligerMessageBox.js │ │ │ │ │ ├── ligerPopupEdit.js │ │ │ │ │ ├── ligerRadio.js │ │ │ │ │ ├── ligerRadioList.js │ │ │ │ │ ├── ligerResizable.js │ │ │ │ │ ├── ligerSpinner.js │ │ │ │ │ ├── ligerTab.js │ │ │ │ │ ├── ligerTextBox.js │ │ │ │ │ ├── ligerTip.js │ │ │ │ │ ├── ligerToolBar.js │ │ │ │ │ ├── ligerTree.js │ │ │ │ │ └── ligerWindow.js │ │ │ │ └── skins │ │ │ │ ├── Aqua │ │ │ │ ├── css │ │ │ │ │ ├── ligerui-all.css │ │ │ │ │ ├── ligerui-common.css │ │ │ │ │ ├── ligerui-dialog.css │ │ │ │ │ ├── ligerui-form.css │ │ │ │ │ ├── ligerui-grid.css │ │ │ │ │ ├── ligerui-layout.css │ │ │ │ │ ├── ligerui-menu.css │ │ │ │ │ ├── ligerui-tab.css │ │ │ │ │ └── ligerui-tree.css │ │ │ │ └── images │ │ │ │ │ ├── common │ │ │ │ │ ├── bigloading.gif │ │ │ │ │ ├── button-disabled.gif │ │ │ │ │ ├── button-over.gif │ │ │ │ │ ├── button.gif │ │ │ │ │ ├── drop-icons.gif │ │ │ │ │ ├── exclamation.gif │ │ │ │ │ ├── invalid-line.gif │ │ │ │ │ ├── loading.gif │ │ │ │ │ ├── table.png │ │ │ │ │ └── toggle.gif │ │ │ │ │ ├── controls │ │ │ │ │ ├── bg-panel-title-over.gif │ │ │ │ │ ├── bg-panel-title-pressed.gif │ │ │ │ │ ├── bg-panel-title.gif │ │ │ │ │ ├── bg-tab-title-over.gif │ │ │ │ │ ├── bg-tab-title-pressed.gif │ │ │ │ │ ├── bg-tab-title.gif │ │ │ │ │ ├── bg-text.gif │ │ │ │ │ ├── bg-trigger-over.gif │ │ │ │ │ ├── bg-trigger-pressed.gif │ │ │ │ │ ├── bg-trigger.gif │ │ │ │ │ ├── btn-l.gif │ │ │ │ │ ├── btn-r.gif │ │ │ │ │ ├── btn.gif │ │ │ │ │ ├── button-bg-over.gif │ │ │ │ │ ├── button-bg.gif │ │ │ │ │ ├── checkbox.gif │ │ │ │ │ ├── dateeditor-bar-bg.gif │ │ │ │ │ ├── dateeditor-header-bg.gif │ │ │ │ │ └── radio.gif │ │ │ │ │ ├── dateeditor │ │ │ │ │ ├── date.gif │ │ │ │ │ ├── icon-first.gif │ │ │ │ │ ├── icon-last.gif │ │ │ │ │ ├── icon-next.gif │ │ │ │ │ └── icon-prev.gif │ │ │ │ │ ├── form │ │ │ │ │ └── verify-corner.gif │ │ │ │ │ ├── grid │ │ │ │ │ ├── grid-checkbox-checked.gif │ │ │ │ │ ├── grid-checkbox.gif │ │ │ │ │ ├── grid-detail-close.gif │ │ │ │ │ ├── grid-detail-open.gif │ │ │ │ │ ├── grid-tree-close.gif │ │ │ │ │ ├── grid-tree-open.gif │ │ │ │ │ ├── header-bg-over.gif │ │ │ │ │ ├── header-bg.gif │ │ │ │ │ ├── header2-bg.jpg │ │ │ │ │ ├── popup-line.gif │ │ │ │ │ └── popup-row-over.gif │ │ │ │ │ ├── icon │ │ │ │ │ ├── bar-button-over.gif │ │ │ │ │ ├── checkbox-checked.gif │ │ │ │ │ ├── checkbox.gif │ │ │ │ │ ├── cross.gif │ │ │ │ │ ├── icon-close-over.gif │ │ │ │ │ ├── icon-close.gif │ │ │ │ │ ├── icon-down.gif │ │ │ │ │ ├── icon-drop.gif │ │ │ │ │ ├── icon-edited.gif │ │ │ │ │ ├── icon-first.gif │ │ │ │ │ ├── icon-last.gif │ │ │ │ │ ├── icon-line.gif │ │ │ │ │ ├── icon-load.gif │ │ │ │ │ ├── icon-next.gif │ │ │ │ │ ├── icon-prev.gif │ │ │ │ │ ├── icon-select.gif │ │ │ │ │ ├── icon-sort-asc.gif │ │ │ │ │ ├── icon-sort-desc.gif │ │ │ │ │ ├── icon-unselect.gif │ │ │ │ │ └── icon-up.gif │ │ │ │ │ ├── layout │ │ │ │ │ ├── accordion-content.gif │ │ │ │ │ ├── accordion-header-over.gif │ │ │ │ │ ├── accordion-header.gif │ │ │ │ │ ├── layout-header-over.gif │ │ │ │ │ ├── layout-header.gif │ │ │ │ │ ├── layout-sidebar-header.gif │ │ │ │ │ ├── mini-bottom.gif │ │ │ │ │ ├── mini-left.gif │ │ │ │ │ ├── mini-right.gif │ │ │ │ │ ├── mini-top.gif │ │ │ │ │ ├── panel-content.gif │ │ │ │ │ ├── panel-header-over.gif │ │ │ │ │ ├── panel-header.gif │ │ │ │ │ ├── tabs-bg.gif │ │ │ │ │ ├── tabs-item-bg.gif │ │ │ │ │ ├── tabs-item-left-bg.gif │ │ │ │ │ ├── tabs-item-over-bg.gif │ │ │ │ │ ├── tabs-item-right-bg.gif │ │ │ │ │ ├── tabs-tools.gif │ │ │ │ │ └── togglebar.gif │ │ │ │ │ ├── menu │ │ │ │ │ ├── menu-item-arrow.gif │ │ │ │ │ ├── menu-item-down.gif │ │ │ │ │ ├── menu-item-over-l.gif │ │ │ │ │ ├── menu-item-over-m.gif │ │ │ │ │ ├── menu-item-over-r.gif │ │ │ │ │ ├── menu-line-x.gif │ │ │ │ │ └── menu-line-y.gif │ │ │ │ │ ├── panel │ │ │ │ │ ├── bar-bg.gif │ │ │ │ │ ├── header-bg.gif │ │ │ │ │ ├── header-bg.jpg │ │ │ │ │ ├── header2-bg.jpg │ │ │ │ │ ├── panel-btn-l.gif │ │ │ │ │ ├── panel-btn-r.gif │ │ │ │ │ ├── panel-btn.gif │ │ │ │ │ ├── panel-header.gif │ │ │ │ │ ├── panel-menu-item-down.gif │ │ │ │ │ ├── panel-menu.gif │ │ │ │ │ ├── panel-toolbar.gif │ │ │ │ │ └── panel-tools.gif │ │ │ │ │ ├── tree │ │ │ │ │ ├── folder-open.gif │ │ │ │ │ ├── folder.gif │ │ │ │ │ ├── loading.gif │ │ │ │ │ ├── tree-leaf.gif │ │ │ │ │ ├── tree-level.gif │ │ │ │ │ ├── tree-noline.gif │ │ │ │ │ ├── tree-status-close.gif │ │ │ │ │ ├── tree-status-open.gif │ │ │ │ │ ├── tree-status.gif │ │ │ │ │ └── tree.gif │ │ │ │ │ └── win │ │ │ │ │ ├── box-icons.gif │ │ │ │ │ ├── box.gif │ │ │ │ │ ├── dialog-bc.gif │ │ │ │ │ ├── dialog-icons.gif │ │ │ │ │ ├── dialog-tc.gif │ │ │ │ │ ├── dialog-winbtns.gif │ │ │ │ │ ├── dialog.gif │ │ │ │ │ ├── taskbar-task.gif │ │ │ │ │ ├── taskbar.gif │ │ │ │ │ ├── taskbar.png │ │ │ │ │ └── taskicon.gif │ │ │ │ ├── Gray │ │ │ │ ├── css │ │ │ │ │ ├── all.css │ │ │ │ │ ├── common.css │ │ │ │ │ ├── dialog.css │ │ │ │ │ ├── form.css │ │ │ │ │ ├── grid.css │ │ │ │ │ ├── layout.css │ │ │ │ │ └── tab.css │ │ │ │ └── images │ │ │ │ │ ├── layout │ │ │ │ │ ├── accordion-header.gif │ │ │ │ │ ├── icon-close-over.gif │ │ │ │ │ ├── icon-close.gif │ │ │ │ │ ├── layout-header.gif │ │ │ │ │ ├── tabs-bg.gif │ │ │ │ │ ├── tabs-item-bg.gif │ │ │ │ │ ├── tabs-item-left-bg.gif │ │ │ │ │ ├── tabs-item-left-selected.gif │ │ │ │ │ ├── tabs-item-right-bg.gif │ │ │ │ │ ├── tabs-item-right-selected.gif │ │ │ │ │ ├── tabs-item-selected.gif │ │ │ │ │ └── togglebar.gif │ │ │ │ │ ├── ui │ │ │ │ │ ├── btn.gif │ │ │ │ │ ├── button-disabled.gif │ │ │ │ │ ├── button-over.gif │ │ │ │ │ ├── button.gif │ │ │ │ │ ├── button1.gif │ │ │ │ │ ├── button2.gif │ │ │ │ │ ├── dateeditor-bar.gif │ │ │ │ │ ├── dateeditor-btn-over.gif │ │ │ │ │ ├── dateeditor-btn.gif │ │ │ │ │ ├── dateeditor-thead.gif │ │ │ │ │ ├── grid-detail-close.gif │ │ │ │ │ ├── grid-detail-open.gif │ │ │ │ │ ├── gridalt.gif │ │ │ │ │ ├── gridbar.jpg │ │ │ │ │ ├── grideditor.gif │ │ │ │ │ ├── icon-down.gif │ │ │ │ │ ├── icon-select.gif │ │ │ │ │ ├── icon-unselect.gif │ │ │ │ │ ├── icon-up.gif │ │ │ │ │ ├── input.gif │ │ │ │ │ ├── inputdisabled.gif │ │ │ │ │ ├── loading.gif │ │ │ │ │ ├── loading2.gif │ │ │ │ │ └── trigger.gif │ │ │ │ │ └── win │ │ │ │ │ ├── dialog-winbtns.gif │ │ │ │ │ ├── dialogbtn.gif │ │ │ │ │ └── dialogicon.gif │ │ │ │ ├── Silvery │ │ │ │ ├── css │ │ │ │ │ ├── form.css │ │ │ │ │ ├── grid.css │ │ │ │ │ ├── layout.css │ │ │ │ │ └── style.css │ │ │ │ └── images │ │ │ │ │ ├── form │ │ │ │ │ ├── checkboxradio.gif │ │ │ │ │ ├── icon-down-over.gif │ │ │ │ │ ├── icon-down.gif │ │ │ │ │ ├── icon-up-over.gif │ │ │ │ │ ├── icon-up.gif │ │ │ │ │ ├── invalid_line.gif │ │ │ │ │ ├── text-date-icon.gif │ │ │ │ │ ├── text-down-icon.gif │ │ │ │ │ ├── text-focus.gif │ │ │ │ │ ├── text-l-focus.gif │ │ │ │ │ ├── text-l-over.gif │ │ │ │ │ ├── text-l.gif │ │ │ │ │ ├── text-over.gif │ │ │ │ │ ├── text-r-focus.gif │ │ │ │ │ ├── text-r-over.gif │ │ │ │ │ ├── text-r.gif │ │ │ │ │ └── text.gif │ │ │ │ │ ├── grid │ │ │ │ │ └── gridheaderbg.jpg │ │ │ │ │ └── layout │ │ │ │ │ ├── accordion-header-over.jpg │ │ │ │ │ ├── accordion-header.jpg │ │ │ │ │ ├── layout-header-over.jpg │ │ │ │ │ ├── layout-header.jpg │ │ │ │ │ ├── tabs-bg.jpg │ │ │ │ │ ├── tabs-item-bg.jpg │ │ │ │ │ ├── tabs-item-left-bg.gif │ │ │ │ │ ├── tabs-item-over-bg.gif │ │ │ │ │ ├── tabs-item-right-bg.gif │ │ │ │ │ └── tabs-tools.gif │ │ │ │ ├── icons │ │ │ │ ├── add.gif │ │ │ │ ├── archives.gif │ │ │ │ ├── attibutes.gif │ │ │ │ ├── back.gif │ │ │ │ ├── bluebook.gif │ │ │ │ ├── bookpen.gif │ │ │ │ ├── busy.gif │ │ │ │ ├── calendar.gif │ │ │ │ ├── candle.gif │ │ │ │ ├── coffee.gif │ │ │ │ ├── comment.gif │ │ │ │ ├── communication.gif │ │ │ │ ├── config.gif │ │ │ │ ├── customers.gif │ │ │ │ ├── cut.gif │ │ │ │ ├── database.gif │ │ │ │ ├── delete.gif │ │ │ │ ├── discuss.gif │ │ │ │ ├── down.gif │ │ │ │ ├── edit.gif │ │ │ │ ├── graywarn.gif │ │ │ │ ├── greenwarn.gif │ │ │ │ ├── help.gif │ │ │ │ ├── home.gif │ │ │ │ ├── lock.gif │ │ │ │ ├── logout.gif │ │ │ │ ├── mailbox.gif │ │ │ │ ├── memeber.gif │ │ │ │ ├── modify.gif │ │ │ │ ├── msn.gif │ │ │ │ ├── myaccount.gif │ │ │ │ ├── ok.gif │ │ │ │ ├── outbox.gif │ │ │ │ ├── pager.gif │ │ │ │ ├── photograph.gif │ │ │ │ ├── plus.gif │ │ │ │ ├── prev.gif │ │ │ │ ├── print.gif │ │ │ │ ├── process.gif │ │ │ │ ├── qq.gif │ │ │ │ ├── refresh.gif │ │ │ │ ├── right.gif │ │ │ │ ├── role.gif │ │ │ │ ├── save-disabled.gif │ │ │ │ ├── save.gif │ │ │ │ ├── search.gif │ │ │ │ ├── search2.gif │ │ │ │ ├── settings.gif │ │ │ │ ├── true.gif │ │ │ │ ├── up.gif │ │ │ │ └── 新建 Microsoft Office Excel 工作表.xlsx │ │ │ │ └── ligerui-icons.css │ │ ├── modernizr-2.5.3.js │ │ ├── my97DatePicker │ │ │ ├── My97DatePicker.htm │ │ │ ├── WdatePicker.js │ │ │ ├── calendar.js │ │ │ ├── config.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 │ │ │ └── 开发包 │ │ │ │ ├── lang │ │ │ │ ├── en.js │ │ │ │ ├── zh-cn.js │ │ │ │ └── zh-tw.js │ │ │ │ ├── readme.txt │ │ │ │ └── skin │ │ │ │ ├── WdatePicker.css │ │ │ │ ├── datePicker.gif │ │ │ │ ├── default │ │ │ │ ├── datepicker.css │ │ │ │ └── img.gif │ │ │ │ └── whyGreen │ │ │ │ ├── bg.jpg │ │ │ │ ├── datepicker.css │ │ │ │ └── img.gif │ │ ├── order.js │ │ ├── print │ │ │ ├── LodopFuncs.js │ │ │ └── jquery.jqprint-0.3.js │ │ ├── quickPrint.js │ │ ├── quotation.js │ │ ├── smooth.menu.js │ │ ├── tojson.js │ │ ├── uploadify │ │ │ ├── jquery.uploadify.js │ │ │ ├── jquery.uploadify.min.js │ │ │ ├── upload.jpg │ │ │ ├── uploadify-cancel.png │ │ │ ├── uploadify.css │ │ │ └── uploadify.swf │ │ └── util.js │ │ ├── Views │ │ ├── Common │ │ │ ├── LeftNavigation.cshtml │ │ │ ├── SelectCountry.cshtml │ │ │ └── TopMenu.cshtml │ │ ├── Customer │ │ │ ├── Add.cshtml │ │ │ ├── CustomerAmountRecordList.cshtml │ │ │ ├── CustomerRecharge.cshtml │ │ │ ├── CustomerRechargeList.cshtml │ │ │ ├── Edit.cshtml │ │ │ ├── List.cshtml │ │ │ ├── SelectList.cshtml │ │ │ ├── SelectListInfo.cshtml │ │ │ └── SelectReceivingExpenseList.cshtml │ │ ├── FeeManage │ │ │ ├── Add.cshtml │ │ │ ├── Edit.cshtml │ │ │ └── List.cshtml │ │ ├── Financial │ │ │ ├── AddOrEditDeliveryDeviation.cshtml │ │ │ ├── AuditAnomaly.cshtml │ │ │ ├── ChargePayAnalyseList.cshtml │ │ │ ├── DeliveryCostDetailsReview.cshtml │ │ │ ├── DeliveryDeviation.cshtml │ │ │ ├── DeliveryFeeAnomalyEdit.cshtml │ │ │ ├── DeliveryFeeAnomalyList.cshtml │ │ │ ├── DeliveryFeeExpressAnomalyEdit.cshtml │ │ │ ├── DeliveryFeeExpressAnomalyList.cshtml │ │ │ ├── DeliveryFeeVectorExcelUpload.cshtml │ │ │ ├── DeliveryFeeWaitAudit.cshtml │ │ │ ├── DeliveryPartialView.cshtml │ │ │ ├── ExpressDeliveryExeclUpload.cshtml │ │ │ ├── ExpressDeliveryFeeList.cshtml │ │ │ ├── ExpressDeliveryFeePartialList.cshtml │ │ │ ├── ExpressDeliveryImportWaitAduitPartList.cshtml │ │ │ ├── InFeeInfoAuditList.cshtml │ │ │ ├── JobErrorLogInfo.cshtml │ │ │ ├── ReceivingBillList.cshtml │ │ │ ├── ReceivingExpensesEdit.cshtml │ │ │ └── ReceivingExpensesList.cshtml │ │ ├── Fub │ │ │ ├── BagTagPrint.cshtml │ │ │ ├── CenterSelectList.cshtml │ │ │ ├── EditTime.cshtml │ │ │ ├── ExchangeBag.cshtml │ │ │ ├── ExchangeBagLogList.cshtml │ │ │ ├── ExchangeBagMainPost.cshtml │ │ │ ├── FubSelectList.cshtml │ │ │ ├── FuzhouSelectList.cshtml │ │ │ ├── HoldList.cshtml │ │ │ ├── LogFlightNumberList.cshtml │ │ │ ├── PackageExchangeBag.cshtml │ │ │ ├── ReturnBagLogList.cshtml │ │ │ └── ReturnGoods.cshtml │ │ ├── News │ │ │ ├── News.cshtml │ │ │ ├── NewsAdd.cshtml │ │ │ └── NewsEdit.cshtml │ │ ├── OperationLog │ │ │ ├── Index.cshtml │ │ │ └── SelectModuleName.cshtml │ │ ├── Order │ │ │ ├── List.cshtml │ │ │ └── Upload.cshtml │ │ ├── Print │ │ │ ├── DHLPrintPreview.cshtml │ │ │ ├── DHLPrintPreview_1.cshtml │ │ │ ├── InvoicePrinter.cshtml │ │ │ ├── LithuaniaPrintView.cshtml │ │ │ ├── NetherlandsParcelPreview.cshtml │ │ │ ├── PrintPreview.cshtml │ │ │ ├── Printer.cshtml │ │ │ ├── _InvoicePrinter.cshtml │ │ │ └── _PrintList.cshtml │ │ ├── Security │ │ │ └── AccessDenied.cshtml │ │ ├── Settlement │ │ │ ├── CheckStand.cshtml │ │ │ ├── NoSettlementList.cshtml │ │ │ ├── SettlementDetail.cshtml │ │ │ ├── SettlementInfoList.cshtml │ │ │ └── SettlementSummary.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ ├── Header.Menu.cshtml │ │ │ ├── Header.cshtml │ │ │ ├── _Layout.cshtml │ │ │ ├── _MINIPROFILER UPDATED Layout.cshtml │ │ │ ├── _Notifications(2).cshtml │ │ │ ├── _Notifications.cshtml │ │ │ └── _ShowDialog.cshtml │ │ ├── User │ │ │ ├── Home │ │ │ │ └── Index.cshtml │ │ │ └── Login.cshtml │ │ ├── WayBill │ │ │ ├── AbnormalWayBillList.cshtml │ │ │ ├── AddOrEditWeightCompare.cshtml │ │ │ ├── AddWayBillTemplate.cshtml │ │ │ ├── B2CPreAlterList.cshtml │ │ │ ├── CountryList.cshtml │ │ │ ├── DHLPrintPreview.cshtml │ │ │ ├── DHLPrintPreview2.cshtml │ │ │ ├── Detail.cshtml │ │ │ ├── EditTime.cshtml │ │ │ ├── EditTotalPackageTime.cshtml │ │ │ ├── ExpressPrintWayBillList.cshtml │ │ │ ├── ExpressWayBillInfoList.cshtml │ │ │ ├── FastInStorage.cshtml │ │ │ ├── FastOutStorage.cshtml │ │ │ ├── FilterOutShippingMethod.cshtml │ │ │ ├── FilterShippingMethod.cshtml │ │ │ ├── FristInStorage.cshtml │ │ │ ├── FristOutStorage.cshtml │ │ │ ├── InFeeInfoList.cshtml │ │ │ ├── InStorageDetail.cshtml │ │ │ ├── InStorageList.cshtml │ │ │ ├── InStorageSyncErrorList.cshtml │ │ │ ├── InStorageWeightAbnormal.cshtml │ │ │ ├── InStorageWeightCompare.cshtml │ │ │ ├── InvoicePrinter.cshtml │ │ │ ├── List.cshtml │ │ │ ├── ModifWayBillDetail.cshtml │ │ │ ├── NewSelectVender.cshtml │ │ │ ├── NewTrackingNumber.cshtml │ │ │ ├── NoForecastAbnormalList.cshtml │ │ │ ├── OutFeeInfoList.cshtml │ │ │ ├── OutStorageDetail.cshtml │ │ │ ├── OutStorageList.cshtml │ │ │ ├── OutStorageShippinMethodConfigure.cshtml │ │ │ ├── PrintPreview.cshtml │ │ │ ├── Printer.cshtml │ │ │ ├── QuickPrint.cshtml │ │ │ ├── ReturnAuditList.cshtml │ │ │ ├── ReturnWayBillList.cshtml │ │ │ ├── SelectCountry.cshtml │ │ │ ├── SelectOutShippingMethod.cshtml │ │ │ ├── SelectShippingMethod.cshtml │ │ │ ├── SelectShippingMethodInfo.cshtml │ │ │ ├── SelectTrackingNumber.cshtml │ │ │ ├── SelectVender.cshtml │ │ │ ├── SelectVenderInfo.cshtml │ │ │ ├── ShippingWayBillList.cshtml │ │ │ ├── TrackList.cshtml │ │ │ ├── TrackingNumberDetail.cshtml │ │ │ ├── TrackingNumberList.cshtml │ │ │ ├── UpdateOutStorageInfo.cshtml │ │ │ ├── UpdateReturnAudit.cshtml │ │ │ ├── WayBillExcelExportList.cshtml │ │ │ ├── WayBillInfosDetail.cshtml │ │ │ ├── WayBillSummary.cshtml │ │ │ ├── WayBillTemplateInfoList.cshtml │ │ │ ├── WayBillTemplateInfoPreview.cshtml │ │ │ ├── WayBillTemplateList.cshtml │ │ │ ├── WayBillTemplatePreview.cshtml │ │ │ ├── WayBillTemplateSave.cshtml │ │ │ ├── WaybillInfoUpdate.cshtml │ │ │ ├── _InvoicePrinter.cshtml │ │ │ └── _PrintTNTOrder.cshtml │ │ ├── Web.config │ │ ├── Website │ │ │ ├── AddCategory.cshtml │ │ │ ├── CategoryList.cshtml │ │ │ └── EditCategory.cshtml │ │ └── _ViewStart.cshtml │ │ ├── Web.Debug.config │ │ ├── Web.Release.config │ │ ├── Web.config │ │ └── packages.config └── LighTake.LMS.sln ├── Build.bat ├── Build ├── LMS.TrackingAPI_UpgradedOn.last ├── LMS.Web.Admin_UpgradedOn.last ├── LMS.Web.Track_UpgradedOn.last ├── LMS.Web.UserCenter_UpgradedOn.last ├── LMS.Web.YSD-Express_UpgradedOn.last ├── LMS.Web.YTWL-Lightake_UpgradedOn.last ├── LMS.Web.YunPost_UpgradedOn.last ├── LMS.WebAPI.Client_UpgradedOn.last ├── LMS.WebAPI_UpgradedOn.last ├── _lightake.proj ├── build.bat ├── deploy.proj ├── project.config.targets └── version.last ├── CacheLoadTest ├── App.config ├── CacheLoadTest.csproj ├── Program.cs └── Properties │ └── AssemblyInfo.cs ├── Database.bat ├── Deploy.bat ├── LMS.Client.SubmitOrder ├── App.config ├── CustomerOrderService.cs ├── LMS.Client.SubmitOrder.csproj ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── Service References │ └── RefAPI.TrackNumber │ │ ├── LMS.Client.SubmitOrder.RefAPI.TrackNumber.ResutlInfoOfstring.datasource │ │ ├── Reference.cs │ │ ├── Reference.svcmap │ │ ├── TrackNumberAssign.disco │ │ ├── TrackNumberAssign.wsdl │ │ ├── TrackNumberAssign.xsd │ │ ├── TrackNumberAssign1.xsd │ │ ├── TrackNumberAssign2.xsd │ │ ├── TrackNumberAssign3.xsd │ │ ├── configuration.svcinfo │ │ └── configuration91.svcinfo ├── TrackNumberService.cs └── packages.config ├── LMS.Client ├── LIS.WebAPI.Client.LMS │ ├── App.config │ ├── Controller │ │ └── OutStorageController.cs │ ├── LIS.WebAPI.Client.LMS.csproj │ ├── Model │ │ └── MyConfig.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packages.config ├── LMS.Client.B2CSubmit │ ├── App.config │ ├── B2CSubmitJob.cs │ ├── Controller │ │ ├── B2CController.cs │ │ └── WayBillController.cs │ ├── LMS.Client.B2CSubmit.csproj │ ├── Model │ │ ├── B2CPreAlertLog.cs │ │ └── WayBillInfoModel.cs │ ├── Program.cs │ └── Properties │ │ └── AssemblyInfo.cs ├── LMS.Client.B2CTracking │ ├── App.config │ ├── B2CTrackingJob.cs │ ├── Controller │ │ ├── B2CController.cs │ │ ├── TotalPackageTraceInfoController.cs │ │ └── TrackController.cs │ ├── LMS.Client.B2CTracking.csproj │ ├── Model │ │ ├── B2CForeCastLogs.cs │ │ ├── Parcel.cs │ │ ├── Status.cs │ │ └── TotalPackageTraceInfoModel.cs │ ├── Program.cs │ └── Properties │ │ └── AssemblyInfo.cs ├── LMS.Client.CreateOutBill │ ├── App.config │ ├── Controller │ │ ├── ExeclCreateController.cs │ │ └── OutBillController.cs │ ├── CreateOutBill.cs │ ├── CreateOutBillJob.cs │ ├── ExcelTemplate │ │ └── FinancialCreditBill.xls │ ├── LMS.Client.CreateOutBill.csproj │ ├── Model │ │ ├── BillModel.cs │ │ └── ReceivingBillInfo.cs │ └── Properties │ │ └── AssemblyInfo.cs ├── LMS.Client.DHL │ ├── App.config │ ├── DHLForecast │ │ └── Forecast.cs │ ├── LMS.Client.DHL.csproj │ ├── Program.cs │ └── Properties │ │ └── AssemblyInfo.cs ├── LMS.Client.Eub │ ├── App.config │ ├── Handler.cs │ ├── LMS.Client.Eub.csproj │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── app.manifest │ └── packages.config ├── LMS.Client.FuZhouPostal │ ├── App.config │ ├── Controller │ │ ├── AutoMapperProfile.cs │ │ └── PostalController.cs │ ├── LMS.Client.FuZhouPostal.csproj │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packages.config ├── LMS.Client.GetWayBillSettleWeight │ ├── App.config │ ├── LMS.Client.GetWayBillSettleWeight.csproj │ ├── Program.cs │ └── Properties │ │ └── AssemblyInfo.cs ├── LMS.Client.InStorage │ ├── App.config │ ├── LMS.Client.InStorage.csproj │ ├── Program.cs │ └── Properties │ │ └── AssemblyInfo.cs ├── LMS.Client.InStorageFix │ ├── App.config │ ├── LMS.Client.InStorageFix.csproj │ ├── Program.cs │ └── Properties │ │ └── AssemblyInfo.cs ├── LMS.Client.SubmitSF │ ├── App.config │ ├── Controller │ │ ├── SFController.cs │ │ ├── SebController.cs │ │ └── WayBillController.cs │ ├── LMS.Client.SubmitSF.csproj │ ├── Model │ │ ├── NetherlandsParcelModel.cs │ │ ├── SebModel.cs │ │ └── WayBillSFModel.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── SubmitSFJob.cs ├── LMS.Client.TrackingGenerate │ ├── App.config │ ├── LMS.Client.TrackingGenerate.csproj │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packages.config ├── LMS.Client.TrackingTotalPackage │ ├── App.config │ ├── Controller │ │ └── TotalPackageTraceInfoController.cs │ ├── LMS.Client.TrackingTotalPackage.csproj │ ├── Model │ │ └── TotalPackageTraceInfoModel.cs │ ├── Program.cs │ └── Properties │ │ └── AssemblyInfo.cs ├── LMS.Client.UpdateOutStoragePrice │ ├── App.config │ ├── Controller │ │ ├── FreightController.cs │ │ └── WayBillController.cs │ ├── LMS.Client.UpdateOutStoragePrice.csproj │ ├── LogTime.cs │ ├── Model │ │ ├── PackageModel.cs │ │ ├── PriceProviderResult.cs │ │ └── ShippingMethodList.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── UpdateOutStoragePrice.cs │ └── UpdateOutStoragePriceJob.cs ├── LMS.Client.UpdateReceivingPrice │ ├── App.config │ ├── Controller │ │ ├── FreightController.cs │ │ └── WayBillController.cs │ ├── LMS.Client.UpdateReceivingPrice.csproj │ ├── Model │ │ ├── PriceProviderResult.cs │ │ └── WayBillImportModel.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── UpdateReceivingPrice.cs │ └── UpdateReceivingPriceJob.cs └── LMS.Client.WayBillEventLogGenerate │ ├── App.config │ ├── LMS.Client.WayBillEventLogGenerate.csproj │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ └── packages.config ├── LMS.Controllers ├── LMS.Controllers.CustomerController │ ├── AutoMapperProfile.cs │ ├── CustomerController.cs │ ├── CustomerFilterModel.cs │ ├── CustomerModel.cs │ ├── CustomerViewModel.cs │ ├── LMS.Controllers.CustomerController.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ └── app.config ├── LMS.Controllers.FinancialController │ ├── AutoMapperProfile.cs │ ├── FilterModel.cs │ ├── FinancialController.Daniel.cs │ ├── FinancialController.Express.cs │ ├── FinancialController.cs │ ├── LMS.Controllers.FinancialController.csproj │ ├── Models │ │ ├── AuditAnomalyViewModel.cs │ │ ├── ExpressDeliveryFeeListModel.cs │ │ └── InFeeInfoAuditListViewModel.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── ViewModels │ │ ├── AutoMapperProfile.cs │ │ ├── ChargePayAnayiseModel.cs │ │ ├── DeliveryCostDetailsModel.cs │ │ ├── DeliveryDeviationModel.cs │ │ ├── DeliveryFeeAnomalyEditViewModel.cs │ │ ├── ExportFile.cs │ │ ├── ExportReceivingBillViewModel.cs │ │ ├── FilterModel.cs │ │ ├── JobErrorLogs.cs │ │ ├── ReceivingExpensesEditViewModel.cs │ │ └── ReceivingExpensesListViewModel.cs │ ├── app.config │ └── packages.config ├── LMS.Controllers.FubController │ ├── FubController.Daniel.cs │ ├── FubController.Jess.cs │ ├── FubController.cs │ ├── LMS.Controllers.FubController.csproj │ ├── Models │ │ ├── AutoMapperProfile.cs │ │ ├── BagTagPrintModel.cs │ │ ├── FubListViewModel.cs │ │ ├── MailTotalPackageInfoModel.cs │ │ └── ReturnGoodsModel.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── app.config │ └── packages.config ├── LMS.Controllers.HomeController │ ├── CommonController.cs │ ├── FeeManageController.cs │ ├── HomeController.cs │ ├── LMS.Controllers.csproj │ ├── OperationLogController.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── SecurityController.cs ├── LMS.Controllers.NewsController │ ├── KindEditorController.cs │ ├── LMS.Controllers.NewsController.csproj │ ├── Models │ │ ├── ArticleFilterModel.cs │ │ ├── ArticleModel.cs │ │ └── AutoMapperProfile.cs │ ├── NewsController.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── app.config ├── LMS.Controllers.OrderController │ ├── AutoMapperProfile.cs │ ├── LMS.Controllers.OrderController.csproj │ ├── OrderController.cs │ ├── OrderFilterModel.cs │ ├── OrderModel.cs │ ├── OrderViewModel.cs │ ├── ProductDetailModel.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── app.config │ └── packages.config ├── LMS.Controllers.PrintController │ ├── LMS.Controllers.PrintController.csproj │ ├── PrintControllers.cs │ └── Properties │ │ └── AssemblyInfo.cs ├── LMS.Controllers.SettlementController │ ├── AutoMapperProfile.cs │ ├── LMS.Controllers.SettlementController.csproj │ ├── Model.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SettlementController.Jess.cs │ ├── SettlementController.cs │ └── SettlementViewModel.cs ├── LMS.Controllers.UserController │ ├── Extensions.cs │ ├── LMS.Controllers.UserController.csproj │ ├── LoginModel.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── UserController.cs ├── LMS.Controllers.WayBillController │ ├── AutoMapperProfile.cs │ ├── B2CPreAlterViewModel.cs │ ├── DHLPrintViewModel.cs │ ├── ExpressPrintWayBillViewModel.cs │ ├── FilterModel.cs │ ├── InvoivePrinterViewModel.cs │ ├── LMS.Controllers.WayBillController.csproj │ ├── Model.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SelectTrackingNumberModel.cs │ ├── TrackingNumberModel.cs │ ├── ViewModel.cs │ ├── WayBillController.B2C.cs │ ├── WayBillController.cs │ └── app.config └── LMS.Controllers.WebsiteController │ ├── LMS.Controllers.WebsiteController.csproj │ ├── Properties │ └── AssemblyInfo.cs │ ├── WebsiteController.cs │ └── app.config ├── LMS.Core └── LMS.Core │ ├── GlobalConfig.cs │ ├── IWorkContext.cs │ ├── LMS.Core.csproj │ └── Properties │ └── AssemblyInfo.cs ├── LMS.Data.Repository.Test ├── App.config ├── LMS.Data.Repository.Test.csproj ├── Properties │ └── AssemblyInfo.cs ├── TrackingNumberDetailInfoRepositoryTest.cs └── packages.config ├── LMS.Data ├── LMS.Data.Context │ ├── AbnormalWayBillLog_Mapping.cs │ ├── App.Config │ ├── ApplicationInfo_Mapping.cs │ ├── Article_Mapping.cs │ ├── B2CPreAlertLogs_Mapping.cs │ ├── Category_Mapping.cs │ ├── CommonCountry_Mapping.cs │ ├── Country_Mapping.cs │ ├── CurrencyCategory_Mapping.cs │ ├── CustomerAmountRecord_Mapping.cs │ ├── CustomerBalance_Mapping.cs │ ├── CustomerCreditInfo_Mapping.cs │ ├── CustomerManagerInfo_Mapping.cs │ ├── CustomerOrderInfo_Mapping.cs │ ├── CustomerOrderStatus_Mapping.cs │ ├── CustomerSourceInfo_Mapping.cs │ ├── CustomerUpdatedLog_Mapping.cs │ ├── Customer_Mapping.cs │ ├── DeliveryChannelChangeLog_Mapping.cs │ ├── DeliveryChannelConfiguration_Mapping.cs │ ├── DeliveryDeviation_Mapping.cs │ ├── DeliveryFeeInfo_Mapping.cs │ ├── DeliveryFee_Mapping.cs │ ├── DeliveryImportAccountCheck_Mapping.cs │ ├── DeliveryImportAccountChecksFinal_Mapping.cs │ ├── DeliveryImportAccountChecksTemp_Mapping.cs │ ├── DictionaryType_Mapping.cs │ ├── EubAccountInfo_Mapping.cs │ ├── EubWayBillApplicationInfo_Mapping.cs │ ├── ExpressAccountInfo_Mapping.cs │ ├── ExpressDeliveryImportAccountCheck_Mapping.cs │ ├── ExpressDeliveryImportAccountChecksTemp_Mapping.cs │ ├── ExpressRespons_Mapping.cs │ ├── FeeType_Mapping.cs │ ├── FinalExpressDeliveryImportAccountCheck_Mapping.cs │ ├── FuzhouPostLog_Mapping.cs │ ├── GZPacketAddressInfo_Mapping.cs │ ├── GoodsTypeInfo_Mapping.cs │ ├── InStorageInfo_Mapping.cs │ ├── InStorageOrSettlementRelational_Mapping.cs │ ├── InStorageWeightDeviation_Mapping.cs │ ├── InTackingLogInfo_Mapping.cs │ ├── InTrackingLogInfo_Mapping.cs │ ├── InsuredCalculation_Mapping.cs │ ├── JobErrorLog_Mapping.cs │ ├── LMS.Data.Context.csproj │ ├── LMS_DBContext.edmx │ ├── LMS_Db.Context.cs │ ├── LMS_Db.Context.tt │ ├── LMS_Db.Mapping.cs │ ├── LMS_Db.Mapping.tt │ ├── LanguageInfo_Mapping.cs │ ├── LithuaniaInfo_Mapping.cs │ ├── MailExchangeBagLog_Mapping.cs │ ├── MailHoldLog_Mapping.cs │ ├── MailPostBagInfo_Mapping.cs │ ├── MailReturnGoodsLog_Mapping.cs │ ├── MailTotalPackageInfo_Mapping.cs │ ├── MailTotalPackageOrPostBagRelational_Mapping.cs │ ├── MoneyChangeTypeInfo_Mapping.cs │ ├── MouthCountry_Mapping.cs │ ├── NetherlandsParcelRespons_Mapping.cs │ ├── NoForecastAbnormal_Mapping.cs │ ├── OutStorageInfo_Mapping.cs │ ├── OutTrackingLogInfo_Mapping.cs │ ├── PaymentType_Mapping.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── ReceivingBill_Mapping.cs │ ├── ReceivingExpens_Mapping.cs │ ├── ReceivingExpenseInfo_Mapping.cs │ ├── RechargeType_Mapping.cs │ ├── ReturnGoods_Mapping.cs │ ├── SenderInfo_Mapping.cs │ ├── SensitiveTypeInfo_Mapping.cs │ ├── SequenceNumber_Mapping.cs │ ├── SettlementDetailsInfo_Mapping.cs │ ├── SettlementInfo_Mapping.cs │ ├── ShippingInfo_Mapping.cs │ ├── SystemConfiguration_Mapping.cs │ ├── Task_Mapping.cs │ ├── TotalPackageInfo_Mapping.cs │ ├── TotalPackageOutStorageRelationalInfo_Mapping.cs │ ├── TotalPackageTraceInfo_Mapping.cs │ ├── TrackingNumberDetailInfo_Mapping.cs │ ├── TrackingNumberInfo_Mapping.cs │ ├── VenderFeeLog_Mapping.cs │ ├── WayBillBusinessDateInfo_Mapping.cs │ ├── WayBillChangeLog_Mapping.cs │ ├── WayBillEventLog_Mapping.cs │ ├── WayBillInfoImportTemp_Mapping.cs │ ├── WayBillInfo_Mapping.cs │ ├── WayBillPrintLog_Mapping.cs │ ├── WayBillTemplateInfo_Mapping.cs │ ├── WayBillTemplate_Mapping.cs │ ├── WaybillPackageDetail_Mapping.cs │ ├── WeightAbnormalLog_Mapping.cs │ └── packages.config ├── LMS.Data.Entity │ ├── AbnormalWayBillLog.cs │ ├── App.config │ ├── ApplicationInfo.cs │ ├── Article.cs │ ├── B2CPreAlertLogs.cs │ ├── B2CPreAlterEnum.cs │ ├── Category.cs │ ├── CommonCountry.cs │ ├── Country.cs │ ├── CurrencyCategory.cs │ ├── Customer.cs │ ├── CustomerAmountRecord.cs │ ├── CustomerBalance.cs │ ├── CustomerCreditInfo.cs │ ├── CustomerCreditInfoEnum.cs │ ├── CustomerEnum.cs │ ├── CustomerManagerInfo.cs │ ├── CustomerOrderEnum.cs │ ├── CustomerOrderInfo.cs │ ├── CustomerOrderStatus.cs │ ├── CustomerSourceInfo.cs │ ├── CustomerUpdatedLog.cs │ ├── DeliveryChannelChangeLog.cs │ ├── DeliveryChannelConfiguration.cs │ ├── DeliveryDeviation.cs │ ├── DeliveryFee.cs │ ├── DeliveryFeeInfo.cs │ ├── DeliveryImportAccountCheck.cs │ ├── DeliveryImportAccountChecksFinal.cs │ ├── DeliveryImportAccountChecksTemp.cs │ ├── DictionaryType.cs │ ├── EubAccountInfo.cs │ ├── EubWayBillApplicationInfo.cs │ ├── EubWayBillApplicationInfoEnum.cs │ ├── ExpressAccountInfo.cs │ ├── ExpressDeliveryImportAccountCheck.cs │ ├── ExpressDeliveryImportAccountChecksTemp.cs │ ├── ExpressRespons.cs │ ├── ExtModel │ │ ├── AbnormalWayBillModel.cs │ │ ├── AgentNumberInfo.cs │ │ ├── ArticleExt.cs │ │ ├── AuditAnomalyExt.cs │ │ ├── B2CPreAlterExt.cs │ │ ├── BagTagPrintExt.cs │ │ ├── ChargePayAnalysesExt.cs │ │ ├── CountryExt.cs │ │ ├── CreateInStorageExt.cs │ │ ├── CreateInStorageExtCS.cs │ │ ├── CreateOutStorageExt.cs │ │ ├── CustomerAmountRecordExt.cs │ │ ├── CustomerExt.cs │ │ ├── CustomerOrderInfoExportExt.cs │ │ ├── CustomerOrderInfoExt.cs │ │ ├── CustomerStatisticsInfoExt.cs │ │ ├── CustomerType.cs │ │ ├── DHLandEUBWayBillInfoExt.cs │ │ ├── DeliveryDeviationExt.cs │ │ ├── DeliveryFeeExt.cs │ │ ├── DeliveryImportAccountCheck.cs │ │ ├── EnableStatus.cs │ │ ├── ErrorWayBillExt.cs │ │ ├── EubWayBillApplicationInfoExt.cs │ │ ├── ExportOutStorageInfo.cs │ │ ├── ExpressPrintWayBillExt.cs │ │ ├── ExpressWayBillExt.cs │ │ ├── ExpressWayBillViewExt.cs │ │ ├── FZWayBillInfoExt.cs │ │ ├── FubListModelExt.cs │ │ ├── InFeeInfoAuditListExt.cs │ │ ├── InFeeInfoExt.cs │ │ ├── InFeeTotalInfoExt.cs │ │ ├── InStorageAsyncModel.cs │ │ ├── InStorageInfoExt.cs │ │ ├── InStorageInfoExtSlim.cs │ │ ├── InStorageProcess.cs │ │ ├── InStorageTotalModel.cs │ │ ├── InStorageWeightAbnormalExt.cs │ │ ├── InTrackingLogInfoExt.cs │ │ ├── JobErrorLogExt.cs │ │ ├── LabelPrintExt.cs │ │ ├── LabelPrintModel.cs │ │ ├── MailExchangeBagLogsExt.cs │ │ ├── MailPostBagInfoExt.cs │ │ ├── MailReturnGoodsLogsExt.cs │ │ ├── MailTotalPackageInfoExt.cs │ │ ├── NoForecastAbnormalExt.cs │ │ ├── OrderTrackingModel.cs │ │ ├── OrderTrackingRequestModel.cs │ │ ├── OutFeeInfoExt.cs │ │ ├── OutStorageInfo.cs │ │ ├── PriceProviderResult.cs │ │ ├── PrintInStorageInvoiceExt.cs │ │ ├── ReceivingBillExt.cs │ │ ├── ReceivingExpenseExt.cs │ │ ├── RemoteAreaAddressExt.cs │ │ ├── ResponseResult.cs │ │ ├── ResultExt.cs │ │ ├── ReturnGoodsExt.cs │ │ ├── ReturnWayBillModelExt.cs │ │ ├── SelectTrackingNumberExt.cs │ │ ├── SettlementExt.cs │ │ ├── SettlementInfoExt.cs │ │ ├── ShippingMethod.cs │ │ ├── ShippingWayBillExt.cs │ │ ├── TariffPrepayFeeShippingMethod.cs │ │ ├── TaskModel.cs │ │ ├── TotalPackageAddressExt.cs │ │ ├── TotalPackageInfoExt.cs │ │ ├── Vender.cs │ │ ├── WayBillEventLogExt.cs │ │ ├── WayBillImportModel.cs │ │ ├── WayBillInfoExtSilm.cs │ │ ├── WayBillListExportModel.cs │ │ ├── WayBillTemplateExt.cs │ │ └── WaybillInfoUpdateExt.cs │ ├── FeeType.cs │ ├── FinalExpressDeliveryImportAccountCheck.cs │ ├── FinancialEnum.cs │ ├── FuzhouPostLog.cs │ ├── GZPacketAddressInfo.cs │ ├── GoodsTypeInfo.cs │ ├── InStorageInfo.cs │ ├── InStorageOrSettlementRelational.cs │ ├── InStorageWeightDeviation.cs │ ├── InTackingLogInfo.cs │ ├── InTrackingLogInfo.cs │ ├── InsuredCalculation.cs │ ├── JobErrorLog.cs │ ├── LMS.Data.Entity.csproj │ ├── LMS_Db.Entities.cs │ ├── LMS_Db.Entities.tt │ ├── LMS_Enums.cs │ ├── LMS_Enums.tt │ ├── LMS_Enums.xml │ ├── LanguageInfo.cs │ ├── LithuaniaInfo.cs │ ├── MailExchangeBagLog.cs │ ├── MailHoldLog.cs │ ├── MailPostBagInfo.cs │ ├── MailReturnGoodsLog.cs │ ├── MailReturnGoodsLogsEnum.cs │ ├── MailTotalPackageInfo.cs │ ├── MailTotalPackageOrPostBagRelational.cs │ ├── MoneyChangeTypeInfo.cs │ ├── MouthCountry.cs │ ├── NetherlandsParcelRespons.cs │ ├── NoForecastAbnormal.cs │ ├── OperateLogEnum.cs │ ├── OutStorageInfo.cs │ ├── OutTrackingLogInfo.cs │ ├── Param │ │ ├── AbnormalWayBillParam.cs │ │ ├── ArticleParam.cs │ │ ├── B2CPreAlterListParam.cs │ │ ├── ChragePayAnalyeseParam.cs │ │ ├── CountryParam.cs │ │ ├── CustomerAmountRecordParam.cs │ │ ├── CustomerCreditParam.cs │ │ ├── CustomerOrderParam.cs │ │ ├── CustomerParam.cs │ │ ├── DeliveryDeviationParam.cs │ │ ├── DeliveryReviewParam.cs │ │ ├── EubWayBillApplicationInfoParam.cs │ │ ├── EubWayBillParam.cs │ │ ├── ExpressPrintWayBillParam.cs │ │ ├── ExpressWayBillParam.cs │ │ ├── FinancialParam.cs │ │ ├── FubListParam.cs │ │ ├── InFeeInfoAuditParam.cs │ │ ├── InStorageListSearchParam.cs │ │ ├── InStorageWeightAbnormalParam.cs │ │ ├── JobErrorLogsParam.cs │ │ ├── LogFlightNumberListParam.cs │ │ ├── MailExchangeBagLogsParam.cs │ │ ├── MailReturnGoodsLogsParam.cs │ │ ├── OrderListParam.cs │ │ ├── OutStorageListSearchParam.cs │ │ ├── PackageModel.cs │ │ ├── ReceivingBillParam.cs │ │ ├── RemoteAreaAddressParam.cs │ │ ├── ReturnWayBillParam.cs │ │ ├── SettlementInfoParam.cs │ │ ├── SettlementSummaryParam.cs │ │ ├── ShippingWayBillParam.cs │ │ ├── TrackingNumberParam.cs │ │ ├── WayBillListExportParam.cs │ │ ├── WaybillInfoUpdateParam.cs │ │ ├── WaybillSummaryParam.cs │ │ └── WeightDeviationParam.cs │ ├── PaymentType.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── ReceivingBill.cs │ ├── ReceivingExpens.cs │ ├── ReceivingExpenseInfo.cs │ ├── RechargeType.cs │ ├── ReturnGoodEnum.cs │ ├── ReturnGoods.cs │ ├── SenderInfo.cs │ ├── SensitiveTypeInfo.cs │ ├── SequenceNumber.cs │ ├── SettlementDetailsInfo.cs │ ├── SettlementEnum.cs │ ├── SettlementInfo.cs │ ├── ShippingInfo.cs │ ├── SystemConfiguration.cs │ ├── Task.cs │ ├── TotalPackageConfigEnum.cs │ ├── TotalPackageInfo.cs │ ├── TotalPackageOutStorageRelationalInfo.cs │ ├── TotalPackageTraceInfo.cs │ ├── TrackingNumberDetailInfo.cs │ ├── TrackingNumberDetailInfoEnum.cs │ ├── TrackingNumberInfo.cs │ ├── TrackingNumberInfoEnum.cs │ ├── UserModel │ │ ├── Permission.cs │ │ ├── PermissionMenu.cs │ │ ├── PermissionMenuMenuItem.cs │ │ └── User.cs │ ├── VenderFeeLog.cs │ ├── WayBillBusinessDateInfo.cs │ ├── WayBillChangeLog.cs │ ├── WayBillEnum.cs │ ├── WayBillEventEnum.cs │ ├── WayBillEventLog.cs │ ├── WayBillInfo.cs │ ├── WayBillInfoImportTemp.cs │ ├── WayBillPrintLog.cs │ ├── WayBillTemplate.cs │ ├── WayBillTemplateInfo.cs │ ├── WayBillTemplateInfoEnum.cs │ ├── WaybillPackageDetail.cs │ └── WeightAbnormalLog.cs ├── LMS.Data.Enums │ ├── CurrencyRateEnum.cs │ ├── CustomerEnum.cs │ ├── CustomersContactEnum.cs │ ├── GrouponSiteEnum.cs │ ├── LMS.Data.Enums.csproj │ ├── LMS_Enums.cs │ ├── LMS_Enums.tt │ ├── LMS_Enums.xml │ ├── OrderDetailEnum.cs │ ├── OrderEnum.cs │ ├── OrderPaymentEnum.cs │ ├── OrderShippingEnum.cs │ ├── ProductEnum.cs │ ├── ProductSynchroLogEnum.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── QuotationEnum.cs ├── LMS.Data.Express │ ├── DHL │ │ ├── Request │ │ │ └── ShipmentValidateRequestAP.cs │ │ └── Response │ │ │ ├── Error │ │ │ └── ShipmentValidateErrorResponse.cs │ │ │ └── ShipmentValidateResponse.cs │ ├── LMS.Data.Express.csproj │ ├── NLPOST │ │ ├── ErrorCode.Designer.cs │ │ └── ErrorCode.resx │ └── Properties │ │ └── AssemblyInfo.cs └── LMS.Data.Repository │ ├── AbnormalWayBillLogRepository.Generated.cs │ ├── App.config │ ├── ApplicationInfoRepository.Generated.cs │ ├── ArticleRepository.Generated.cs │ ├── B2CPreAlertLogsRepository.Generated.cs │ ├── BaseRepository.cs │ ├── BulkInsert.cs │ ├── CategoryRepository.Generated.cs │ ├── CommonCountryRepository.Generated.cs │ ├── CountryRepository.Generated.cs │ ├── CurrencyCategoryRepository.Generated.cs │ ├── CustomerAmountRecordRepository.Generated.cs │ ├── CustomerBalanceRepository.Generated.cs │ ├── CustomerCreditInfoRepository.Generated.cs │ ├── CustomerManagerInfoRepository.Generated.cs │ ├── CustomerOrderInfoRepository.Generated.cs │ ├── CustomerOrderStatusRepository.Generated.cs │ ├── CustomerRepository.Generated.cs │ ├── CustomerSourceInfoRepository.Generated.cs │ ├── CustomerUpdatedLogRepository.Generated.cs │ ├── DeliveryChannelChangeLogRepository.Generated.cs │ ├── DeliveryChannelConfigurationRepository.Generated.cs │ ├── DeliveryDeviationRepository.Generated.cs │ ├── DeliveryFeeInfoRepository.Generated.cs │ ├── DeliveryFeeRepository.Generated.cs │ ├── DeliveryImportAccountCheckRepository.Generated.cs │ ├── DeliveryImportAccountChecksFinalRepository.Generated.cs │ ├── DeliveryImportAccountChecksTempRepository.Generated.cs │ ├── DictionaryTypeRepository.Generated.cs │ ├── EubAccountInfoRepository.Generated.cs │ ├── EubWayBillApplicationInfoRepository.Generated.cs │ ├── ExpressAccountInfoRepository.Generated.cs │ ├── ExpressDeliveryImportAccountCheckRepository.Generated.cs │ ├── ExpressDeliveryImportAccountChecksTempRepository.Generated.cs │ ├── ExpressResponsRepository.Generated.cs │ ├── Ext │ ├── ArticleRepository.cs │ ├── B2CPreAlertLogsRepository.cs │ ├── CategoryRepository.cs │ ├── CountryRepository.cs │ ├── CustomerAmountRecordRepository.cs │ ├── CustomerRepository.cs │ ├── DeliveryFeeInfoRepository.cs │ ├── DeliveryFeeRepository.cs │ ├── DeliveryImportAccountChecksFinalRepository.cs │ ├── FuzhouPostLogRepository.cs │ ├── IArticleRepository.cs │ ├── IB2CPreAlertLogsRepository.cs │ ├── ICategoryRepository.cs │ ├── ICountryRepository.cs │ ├── ICustomerAmountRecordRepository.cs │ ├── ICustomerOrderInfoRepository.cs │ ├── ICustomerRepository.cs │ ├── IDeliveryDeviationRepository.cs │ ├── IDeliveryFeeInfoRepository.cs │ ├── IDeliveryFeeRepository.cs │ ├── IDeliveryImportAccountChecksFinalRepository.cs │ ├── IEubWayBillApplicationInfoRepository.cs │ ├── IFuzhouPostLogRepository.cs │ ├── IInStorageInfoRepository.cs │ ├── IInTrackingLogInfoRepository.cs │ ├── IJobErrorLogRepository.cs │ ├── IMailExchangeBagLogRepository.cs │ ├── IMailPostBagInfoRepository.cs │ ├── IMailReturnGoodsLogRepository.cs │ ├── IMailTotalPackageInfoRepository.cs │ ├── INetherlandsParcelResponsRepository.cs │ ├── INoForecastAbnormalRepository.cs │ ├── IOutStorageInfoRepository.cs │ ├── IReceivingBillRepository.cs │ ├── IReceivingExpensRepository.cs │ ├── IReturnGoodsRepository.cs │ ├── ISettlementInfoRepository.cs │ ├── ITaskRepository.cs │ ├── ITrackingNumberDetailInfoRepository.cs │ ├── IWayBillInfoImportTempRepository.cs │ ├── IWayBillInfoRepository.cs │ ├── IWayBillTemplateRepository.cs │ ├── IWaybillPackageDetailRepository.cs │ ├── InStorageInfoRepository.cs │ ├── JobErrorLogRepository.cs │ ├── MailExchangeBagLogRepository.cs │ ├── MailPostBagInfoRepository.cs │ ├── MailTotalPackageInfoRepository.cs │ ├── NetherlandsParcelResponsRepository.cs │ ├── NoForecastAbnormalRepository.cs │ ├── OutStorageInfoRepository.cs │ ├── ReceivingBillRepository.cs │ ├── ReceivingExpensRepository.cs │ ├── ReturnGoodsRepository.cs │ ├── SettlementInfoRepository.cs │ ├── TaskRepository.cs │ ├── TrackingNumberDetailInfoRepository.cs │ ├── TrackingNumberInfoRepository.cs │ ├── WayBillInfoImportTempRepository.cs │ ├── WayBillInfoRepository.cs │ ├── WayBillTemplateRepository.cs │ └── WaybillPackageDetailRepository.cs │ ├── FeeTypeRepository.Generated.cs │ ├── FinalExpressDeliveryImportAccountCheckRepository.Generated.cs │ ├── FuzhouPostLogRepository.Generated.cs │ ├── GZPacketAddressInfoRepository.Generated.cs │ ├── GoodsTypeInfoRepository.Generated.cs │ ├── IAbnormalWayBillLogRepository.Generated.cs │ ├── IApplicationInfoRepository.Generated.cs │ ├── IArticleRepository.Generated.cs │ ├── IB2CPreAlertLogsRepository.Generated.cs │ ├── ICategoryRepository.Generated.cs │ ├── ICommonCountryRepository.Generated.cs │ ├── ICountryRepository.Generated.cs │ ├── ICurrencyCategoryRepository.Generated.cs │ ├── ICustomerAmountRecordRepository.Generated.cs │ ├── ICustomerBalanceRepository.Generated.cs │ ├── ICustomerCreditInfoRepository.Generated.cs │ ├── ICustomerManagerInfoRepository.Generated.cs │ ├── ICustomerOrderInfoRepository.Generated.cs │ ├── ICustomerOrderStatusRepository.Generated.cs │ ├── ICustomerRepository.Generated.cs │ ├── ICustomerSourceInfoRepository.Generated.cs │ ├── ICustomerUpdatedLogRepository.Generated.cs │ ├── IDeliveryChannelChangeLogRepository.Generated.cs │ ├── IDeliveryChannelConfigurationRepository.Generated.cs │ ├── IDeliveryDeviationRepository.Generated.cs │ ├── IDeliveryFeeInfoRepository.Generated.cs │ ├── IDeliveryFeeRepository.Generated.cs │ ├── IDeliveryImportAccountCheckRepository.Generated.cs │ ├── IDeliveryImportAccountChecksFinalRepository.Generated.cs │ ├── IDeliveryImportAccountChecksTempRepository.Generated.cs │ ├── IDictionaryTypeRepository.Generated.cs │ ├── IEubAccountInfoRepository.Generated.cs │ ├── IEubWayBillApplicationInfoRepository.Generated.cs │ ├── IExpressAccountInfoRepository.Generated.cs │ ├── IExpressDeliveryImportAccountCheckRepository.Generated.cs │ ├── IExpressDeliveryImportAccountChecksTempRepository.Generated.cs │ ├── IExpressResponsRepository.Generated.cs │ ├── IFeeTypeRepository.Generated.cs │ ├── IFinalExpressDeliveryImportAccountCheckRepository.Generated.cs │ ├── IFuzhouPostLogRepository.Generated.cs │ ├── IGZPacketAddressInfoRepository.Generated.cs │ ├── IGoodsTypeInfoRepository.Generated.cs │ ├── IInStorageInfoRepository.Generated.cs │ ├── IInStorageOrSettlementRelationalRepository.Generated.cs │ ├── IInStorageWeightDeviationRepository.Generated.cs │ ├── IInTackingLogInfoRepository.Generated.cs │ ├── IInTrackingLogInfoRepository.Generated.cs │ ├── IInsuredCalculationRepository.Generated.cs │ ├── IJobErrorLogRepository.Generated.cs │ ├── ILanguageInfoRepository.Generated.cs │ ├── ILithuaniaInfoRepository.Generated.cs │ ├── IMailExchangeBagLogRepository.Generated.cs │ ├── IMailHoldLogRepository.Generated.cs │ ├── IMailPostBagInfoRepository.Generated.cs │ ├── IMailReturnGoodsLogRepository.Generated.cs │ ├── IMailTotalPackageInfoRepository.Generated.cs │ ├── IMailTotalPackageOrPostBagRelationalRepository.Generated.cs │ ├── IMoneyChangeTypeInfoRepository.Generated.cs │ ├── IMouthCountryRepository.Generated.cs │ ├── INetherlandsParcelResponsRepository.Generated.cs │ ├── INoForecastAbnormalRepository.Generated.cs │ ├── IOutStorageInfoRepository.Generated.cs │ ├── IOutTrackingLogInfoRepository.Generated.cs │ ├── IPaymentTypeRepository.Generated.cs │ ├── IReceivingBillRepository.Generated.cs │ ├── IReceivingExpensRepository.Generated.cs │ ├── IReceivingExpenseInfoRepository.Generated.cs │ ├── IRechargeTypeRepository.Generated.cs │ ├── IRepositories.cs │ ├── IRepositories.tt │ ├── IReturnGoodsRepository.Generated.cs │ ├── ISenderInfoRepository.Generated.cs │ ├── ISensitiveTypeInfoRepository.Generated.cs │ ├── ISequenceNumberRepository.Generated.cs │ ├── ISettlementDetailsInfoRepository.Generated.cs │ ├── ISettlementInfoRepository.Generated.cs │ ├── IShippingInfoRepository.Generated.cs │ ├── ISystemConfigurationRepository.Generated.cs │ ├── ITaskRepository.Generated.cs │ ├── ITotalPackageInfoRepository.Generated.cs │ ├── ITotalPackageOutStorageRelationalInfoRepository.Generated.cs │ ├── ITotalPackageTraceInfoRepository.Generated.cs │ ├── ITrackingNumberDetailInfoRepository.Generated.cs │ ├── ITrackingNumberInfoRepository.Generated.cs │ ├── IVenderFeeLogRepository.Generated.cs │ ├── IWayBillBusinessDateInfoRepository.Generated.cs │ ├── IWayBillChangeLogRepository.Generated.cs │ ├── IWayBillEventLogRepository.Generated.cs │ ├── IWayBillInfoImportTempRepository.Generated.cs │ ├── IWayBillInfoRepository.Generated.cs │ ├── IWayBillPrintLogRepository.Generated.cs │ ├── IWayBillTemplateInfoRepository.Generated.cs │ ├── IWayBillTemplateRepository.Generated.cs │ ├── IWaybillPackageDetailRepository.Generated.cs │ ├── IWeightAbnormalLogRepository.Generated.cs │ ├── InStorageInfoRepository.Generated.cs │ ├── InStorageOrSettlementRelationalRepository.Generated.cs │ ├── InStorageWeightDeviationRepository.Generated.cs │ ├── InTackingLogInfoRepository.Generated.cs │ ├── InTrackingLogInfoRepository.Generated.cs │ ├── InsuredCalculationRepository.Generated.cs │ ├── JobErrorLogRepository.Generated.cs │ ├── LMS.Data.Repository.csproj │ ├── LanguageInfoRepository.Generated.cs │ ├── LithuaniaInfoRepository.Generated.cs │ ├── MailExchangeBagLogRepository.Generated.cs │ ├── MailHoldLogRepository.Generated.cs │ ├── MailPostBagInfoRepository.Generated.cs │ ├── MailReturnGoodsLogRepository.Generated.cs │ ├── MailTotalPackageInfoRepository.Generated.cs │ ├── MailTotalPackageOrPostBagRelationalRepository.Generated.cs │ ├── MoneyChangeTypeInfoRepository.Generated.cs │ ├── MouthCountryRepository.Generated.cs │ ├── NetherlandsParcelResponsRepository.Generated.cs │ ├── NoForecastAbnormalRepository.Generated.cs │ ├── OutStorageInfoRepository.Generated.cs │ ├── OutTrackingLogInfoRepository.Generated.cs │ ├── PaymentTypeRepository.Generated.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── ReceivingBillRepository.Generated.cs │ ├── ReceivingExpensRepository.Generated.cs │ ├── ReceivingExpenseInfoRepository.Generated.cs │ ├── RechargeTypeRepository.Generated.cs │ ├── Repositories.cs │ ├── Repositories.tt │ ├── ReturnGoodsRepository.Generated.cs │ ├── SenderInfoRepository.Generated.cs │ ├── SensitiveTypeInfoRepository.Generated.cs │ ├── SequenceNumberRepository.Generated.cs │ ├── SettlementDetailsInfoRepository.Generated.cs │ ├── SettlementInfoRepository.Generated.cs │ ├── ShippingInfoRepository.Generated.cs │ ├── SystemConfigurationRepository.Generated.cs │ ├── TaskRepository.Generated.cs │ ├── TotalPackageInfoRepository.Generated.cs │ ├── TotalPackageOutStorageRelationalInfoRepository.Generated.cs │ ├── TotalPackageTraceInfoRepository.Generated.cs │ ├── TrackingNumberDetailInfoRepository.Generated.cs │ ├── TrackingNumberInfoRepository.Generated.cs │ ├── VenderFeeLogRepository.Generated.cs │ ├── WayBillBusinessDateInfoRepository.Generated.cs │ ├── WayBillChangeLogRepository.Generated.cs │ ├── WayBillEventLogRepository.Generated.cs │ ├── WayBillInfoImportTempRepository.Generated.cs │ ├── WayBillInfoRepository.Generated.cs │ ├── WayBillPrintLogRepository.Generated.cs │ ├── WayBillTemplateInfoRepository.Generated.cs │ ├── WayBillTemplateRepository.Generated.cs │ ├── WaybillPackageDetailRepository.Generated.cs │ ├── WeightAbnormalLogRepository.Generated.cs │ └── packages.config ├── LMS.GetLabelPrint.WebAPI ├── App_Start │ └── WebApiConfig.cs ├── Controllers │ ├── GetLabelPrintController.cs │ └── ValuesController.cs ├── Global.asax ├── Global.asax.cs ├── IOC │ └── LMSLabelPrintDependencyRegistrar.cs ├── LMS.GetLabelPrint.WebAPI.csproj ├── LogException │ └── LabelPrintLogException.cs ├── Models │ ├── LabelPrintRequest.cs │ └── LabelPrintResponse.cs ├── Properties │ ├── AssemblyInfo.cs │ └── PublishProfiles │ │ └── LMS.GetLabelPrint.WebAPI.pubxml ├── UserCenter │ └── HTTPBasicAuthorizeAttribute.cs ├── Web.Debug.config ├── Web.Release.config ├── Web.config ├── WorkContext.cs ├── favicon.ico └── packages.config ├── LMS.PostalAPI ├── App.config ├── App_Start │ ├── BundleConfig.cs │ ├── FilterConfig.cs │ ├── RouteConfig.cs │ └── WebApiConfig.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 │ ├── AutoMapperProfile.cs │ ├── PostalController.cs │ └── TestController.cs ├── Global.asax ├── Global.asax.cs ├── IOC │ ├── DependencyRegistrar.cs │ └── WorkContext.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 ├── LMS.PostalAPI.csproj ├── Properties │ ├── AssemblyInfo.cs │ └── PublishProfiles │ │ └── LMS.PostalAPI.pubxml ├── Scripts │ ├── _references.js │ ├── jquery-1.7.1.intellisense.js │ ├── jquery-1.7.1.js │ ├── jquery-1.7.1.min.js │ ├── jquery-ui-1.8.20.js │ ├── jquery-ui-1.8.20.min.js │ ├── jquery.unobtrusive-ajax.js │ ├── jquery.unobtrusive-ajax.min.js │ ├── jquery.validate-vsdoc.js │ ├── jquery.validate.js │ ├── jquery.validate.min.js │ ├── jquery.validate.unobtrusive.js │ ├── jquery.validate.unobtrusive.min.js │ ├── knockout-2.1.0.debug.js │ ├── knockout-2.1.0.js │ └── modernizr-2.5.3.js ├── Views │ ├── Home │ │ └── Index.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ └── _Layout.cshtml │ ├── Web.config │ └── _ViewStart.cshtml ├── Web.Debug.config ├── Web.Release.config ├── Web.config ├── favicon.ico └── packages.config ├── LMS.PrintLabel ├── LMS.PrintLabelAPI │ ├── App_Start │ │ ├── BundleConfig.cs │ │ ├── FilterConfig.cs │ │ ├── RouteConfig.cs │ │ └── WebApiConfig.cs │ ├── Areas │ │ └── HelpPage │ │ │ ├── ApiDescriptionExtensions.cs │ │ │ ├── App_Start │ │ │ └── HelpPageConfig.cs │ │ │ ├── Controllers │ │ │ └── HelpController.cs │ │ │ ├── HelpPage.css │ │ │ ├── HelpPageAreaRegistration.cs │ │ │ ├── HelpPageConfigurationExtensions.cs │ │ │ ├── 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 │ │ │ │ └── _Layout.cshtml │ │ │ ├── Web.config │ │ │ └── _ViewStart.cshtml │ │ │ └── XmlDocumentationProvider.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 │ │ ├── HomeController.cs │ │ └── PrintUrlController.cs │ ├── Global.asax │ ├── Global.asax.cs │ ├── IOC │ │ └── PrintLabelDependencyRegistrar.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 │ ├── LMS.PrintLabelAPI.csproj │ ├── LogException │ │ └── PrintLabelLogException.cs │ ├── Models │ │ ├── LabelPrintResponse.cs │ │ └── Response.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── PublishProfiles │ │ │ └── LMS.PrintLableAPI.pubxml │ ├── Scripts │ │ ├── _references.js │ │ ├── jquery-1.8.2.intellisense.js │ │ ├── jquery-1.8.2.js │ │ ├── jquery-1.8.2.min.js │ │ ├── jquery-ui-1.8.24.js │ │ ├── jquery-ui-1.8.24.min.js │ │ ├── jquery.unobtrusive-ajax.js │ │ ├── jquery.unobtrusive-ajax.min.js │ │ ├── jquery.validate-vsdoc.js │ │ ├── jquery.validate.js │ │ ├── jquery.validate.min.js │ │ ├── jquery.validate.unobtrusive.js │ │ ├── jquery.validate.unobtrusive.min.js │ │ ├── knockout-2.2.0.debug.js │ │ ├── knockout-2.2.0.js │ │ └── modernizr-2.6.2.js │ ├── UserCenter │ │ └── LMSAPIAuthAttribute.cs │ ├── Views │ │ ├── Home │ │ │ └── Index.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ └── _Layout.cshtml │ │ ├── Web.config │ │ └── _ViewStart.cshtml │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ ├── WorkContext.cs │ ├── favicon.ico │ └── packages.config └── LMS.PrintLabelWeb │ ├── CSS │ └── print.css │ ├── 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 │ └── PrintController.cs │ ├── Global.asax │ ├── Global.asax.cs │ ├── IOC │ └── PrintLabelWebDependencyRegistrar.cs │ ├── Images │ ├── Print │ │ └── TNT │ │ │ ├── postnl.jpg │ │ │ ├── priority.jpg │ │ │ └── selec.jpg │ └── loader.gif │ ├── JS │ ├── jquery-1.7.1.min.js │ └── print.js │ ├── LMS.PrintLabelWeb.csproj │ ├── Models │ ├── ApplicationInfoModel.cs │ ├── CustomerOrderInfoModel.cs │ ├── PrinterTemplateViewModel.cs │ └── PrinterViewModel.cs │ ├── Properties │ ├── AssemblyInfo.cs │ └── PublishProfiles │ │ └── LMS.PrintLabelWeb.pubxml │ ├── Scripts │ ├── MicrosoftAjax.debug.js │ ├── MicrosoftAjax.js │ ├── MicrosoftMvcAjax.debug.js │ ├── MicrosoftMvcAjax.js │ ├── MicrosoftMvcValidation.debug.js │ ├── MicrosoftMvcValidation.js │ ├── jquery-1.7.1.intellisense.js │ ├── jquery-1.7.1.js │ ├── jquery-1.7.1.min.js │ ├── jquery-ui-1.8.20.js │ ├── jquery-ui-1.8.20.min.js │ ├── jquery.unobtrusive-ajax.js │ ├── jquery.unobtrusive-ajax.min.js │ ├── jquery.validate-vsdoc.js │ ├── jquery.validate.js │ ├── jquery.validate.min.js │ ├── jquery.validate.unobtrusive.js │ ├── jquery.validate.unobtrusive.min.js │ └── modernizr-2.5.3.js │ ├── UserCenter │ └── LMSAuthAttribute.cs │ ├── Views │ ├── Print │ │ ├── AddressLabelPrint.cshtml │ │ └── _PrintList.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ └── _Layout.cshtml │ ├── Web.config │ └── _ViewStart.cshtml │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ ├── WorkContext.cs │ └── packages.config ├── LMS.Services ├── LMS.Services.B2CServices │ ├── LMS.Services.B2CServices.csproj │ ├── Model │ │ ├── Prealert.cs │ │ └── Responses.cs │ ├── PreAlertB2CService.cs │ └── Properties │ │ └── AssemblyInfo.cs ├── LMS.Services.BillingServices │ ├── BillingService.cs │ ├── IBillingService.cs │ ├── LMS.Services.BillingServices.csproj │ └── Properties │ │ └── AssemblyInfo.cs ├── LMS.Services.CommonServices │ ├── IGoodsTypeService.cs │ ├── IInsuredCalculationService.cs │ ├── ISensitiveTypeInfoService.cs │ ├── InsuredCalculationService.cs │ ├── LMS.Services.CommonServices.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ └── SensitiveTypeInfoService.cs ├── LMS.Services.CountryServices │ ├── CountryService.cs │ ├── ICountryService.cs │ ├── LMS.Services.CountryServices.csproj │ └── Properties │ │ └── AssemblyInfo.cs ├── LMS.Services.Customer.Services │ ├── CustomerService.cs │ ├── ICustomerService.cs │ ├── LMS.Services.CustomerServices.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ └── app.config ├── LMS.Services.CustomerOrderServices │ ├── CustomerOrderService.cs │ ├── ICustomerOrderService.cs │ ├── LMS.Services.CustomerOrderServices.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ └── app.config ├── LMS.Services.CustomerServices │ ├── CustomerService.cs │ ├── ICustomerService.cs │ ├── LMS.Services.CustomerServices.csproj │ └── Properties │ │ └── AssemblyInfo.cs ├── LMS.Services.DictionaryTypeServices │ ├── DictionaryTypeService.cs │ ├── IDictionaryTypeService.cs │ ├── LMS.Services.DictionaryTypeServices.csproj │ └── Properties │ │ └── AssemblyInfo.cs ├── LMS.Services.EubWayBillServices │ ├── App.config │ ├── EubWayBillService.cs │ ├── IEubWayBillService.cs │ ├── LMS.Services.EubWayBillServices.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── UpgradeLog.XML │ ├── UpgradeLog.htm │ ├── _UpgradeReport_Files │ │ ├── UpgradeReport.css │ │ ├── UpgradeReport.xslt │ │ ├── UpgradeReport_Error.png │ │ ├── UpgradeReport_Information.png │ │ ├── UpgradeReport_Success.png │ │ └── UpgradeReport_Warning.png │ └── packages.config ├── LMS.Services.ExpressServices │ ├── ExpressService.cs │ ├── IExpressService.cs │ ├── LMS.Services.ExpressServices.csproj │ └── Properties │ │ └── AssemblyInfo.cs ├── LMS.Services.FeeManageServices │ ├── FeeManageService.cs │ ├── IFeeManageService.cs │ ├── LMS.Services.FeeManageServices.csproj │ └── Properties │ │ └── AssemblyInfo.cs ├── LMS.Services.FinancialServices │ ├── FinancialService.cs │ ├── IFinancialService.cs │ ├── LMS.Services.FinancialServices.csproj │ └── Properties │ │ └── AssemblyInfo.cs ├── LMS.Services.FreightServices │ ├── FreightService.cs │ ├── IFreightService.cs │ ├── LMS.Services.FreightServices.csproj │ └── Properties │ │ └── AssemblyInfo.cs ├── LMS.Services.FubServices │ ├── FubService.cs │ ├── IFubService.cs │ ├── LMS.Services.FubServices.csproj │ └── Properties │ │ └── AssemblyInfo.cs ├── LMS.Services.HomeServices │ ├── HomeService.cs │ ├── IHomeService.cs │ ├── LMS.Services.HomeServices.csproj │ └── Properties │ │ └── AssemblyInfo.cs ├── LMS.Services.InStorageService │ ├── IInStorageService.cs │ ├── InStorageAsyncModel.cs │ ├── InStorageService.cs │ ├── LMS.Services.InStorageServices.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── app.config │ └── packages.config ├── LMS.Services.LabelPrintWebAPIServices │ ├── ILabelPrintWebApiService.cs │ ├── LMS.Services.LabelPrintWebAPIServices.csproj │ ├── LabelPrintWebApiService.cs │ └── Properties │ │ └── AssemblyInfo.cs ├── LMS.Services.NewServices │ ├── INewService.cs │ ├── LMS.Services.NewServices.csproj │ ├── NewService.cs │ └── Properties │ │ └── AssemblyInfo.cs ├── LMS.Services.OperateLogServices │ └── LMS.Services.OperateLogServices │ │ ├── IOperateLogServices.cs │ │ ├── LMS.Services.OperateLogServices.csproj │ │ ├── OperateLogServices.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── LMS.Services.OrderServices │ ├── IOrderService.cs │ ├── LMS.Services.OrderServices.csproj │ ├── OrderService.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── app.config ├── LMS.Services.OutStorageServices │ ├── IOutStorageService.cs │ ├── LMS.Services.OutStorageServices.csproj │ ├── OutStorageService.cs │ └── Properties │ │ └── AssemblyInfo.cs ├── LMS.Services.PrintServices │ ├── IPrintService.cs │ ├── LMS.Services.PrintServices.csproj │ ├── PrintService.cs │ └── Properties │ │ └── AssemblyInfo.cs ├── LMS.Services.ReturnGoodsServices │ ├── IReturnGoodsService.cs │ ├── LMS.Services.ReturnGoodsServices.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── ReturnGoodsService.cs │ └── app.config ├── LMS.Services.SF │ ├── LMS.Services.SF.csproj │ ├── LMSSFCommon.cs │ ├── LMSSFService.cs │ ├── Model │ │ ├── ErrorCode.Designer.cs │ │ ├── ErrorCode.resx │ │ ├── OrderModel.cs │ │ └── OrderModelValidator.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Service References │ │ ├── References.SfCommon │ │ │ ├── CommonServiceService.wsdl │ │ │ ├── Reference.cs │ │ │ ├── Reference.svcmap │ │ │ ├── configuration.svcinfo │ │ │ └── configuration91.svcinfo │ │ └── References.Sfexpress │ │ │ ├── Reference.cs │ │ │ ├── Reference.svcmap │ │ │ ├── SfexpressService.wsdl │ │ │ ├── SfexpressServiceImplService.wsdl │ │ │ ├── configuration.svcinfo │ │ │ └── configuration91.svcinfo │ ├── app.config │ └── packages.config ├── LMS.Services.SequenceNumber │ ├── App.config │ ├── LMS.Services.SequenceNumber.csproj │ ├── PrefixCode.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SequenceNumberService.cs │ └── packages.config ├── LMS.Services.SettlementServices │ ├── ISettlementService.cs │ ├── LMS.Services.SettlementServices.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ └── SettlementService.cs ├── LMS.Services.TrackServices │ ├── ITrackingService.cs │ ├── LMS.Services.TrackServices.csproj │ ├── LMS.Services.TrackServices │ │ ├── ITrackingService.cs │ │ ├── LMS.Services.TrackServices.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── TrackingService.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── TrackingService.cs ├── LMS.Services.TrackingNumberServices │ ├── ITrackingNumberService.cs │ ├── LMS.Services.TrackingNumberServices.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Service References │ │ └── RefAPI.TrackNumber │ │ │ ├── LMS.Services.TrackingNumberServices.RefAPI.TrackNumber.ResutlInfoOfstring.datasource │ │ │ ├── Reference.cs │ │ │ ├── Reference.svcmap │ │ │ ├── TrackNumberAssign.disco │ │ │ ├── TrackNumberAssign.wsdl │ │ │ ├── TrackNumberAssign.xsd │ │ │ ├── TrackNumberAssign1.xsd │ │ │ ├── TrackNumberAssign2.xsd │ │ │ ├── TrackNumberAssign3.xsd │ │ │ ├── configuration.svcinfo │ │ │ └── configuration91.svcinfo │ ├── TrackingNumberService.cs │ └── app.config ├── LMS.Services.UserServices │ ├── FormAuthenticationServiceExtension.cs │ ├── IPermissionService.cs │ ├── IUserService.cs │ ├── LMS.Services.UserServices.csproj │ ├── Models │ │ ├── Config.cs │ │ ├── Extensions.cs │ │ └── LMSUserData.cs │ ├── PermissionService.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Service References │ │ └── PMSServiceReference │ │ │ ├── LMS.Services.UserServices.PMSServiceReference.PermissionsResponse.datasource │ │ │ ├── LMS.Services.UserServices.PMSServiceReference.Response.datasource │ │ │ ├── LMS.Services.UserServices.PMSServiceReference.UserInfo.datasource │ │ │ ├── LMS.Services.UserServices.PMSServiceReference.UserLoginResponse.datasource │ │ │ ├── PMSService.disco │ │ │ ├── PMSService.wsdl │ │ │ ├── PMSService.xsd │ │ │ ├── PMSService1.xsd │ │ │ ├── PMSService2.xsd │ │ │ ├── PMSService3.xsd │ │ │ ├── Reference.cs │ │ │ ├── Reference.svcmap │ │ │ ├── configuration.svcinfo │ │ │ └── configuration91.svcinfo │ └── UserService.cs └── LMS.Services.WayBillTemplateServices │ ├── IWayBillTemplateService.cs │ ├── LMS.Services.WayBillTemplateServices.csproj │ ├── Properties │ └── AssemblyInfo.cs │ └── WayBillTemplateService.cs ├── LMS.Tests ├── LMS.Tests │ ├── App.config │ ├── LMS.Tests.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── UnitTest1.cs │ ├── XMLFile1.xml │ └── packages.config └── TestCreateWayBillNumber │ ├── App.config │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ └── TestCreateWayBillNumber.csproj ├── LMS.TrackingAPI ├── App_Start │ ├── BundleConfig.cs │ ├── FilterConfig.cs │ ├── RouteConfig.cs │ └── WebApiConfig.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 │ ├── Test.cs │ └── TrackingController .cs ├── Global.asax ├── Global.asax.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 ├── Infrastructure │ ├── DependencyRegistrar.cs │ └── WorkContext.cs ├── LMS.TrackingAPI.csproj ├── Properties │ └── AssemblyInfo.cs ├── Scripts │ ├── _references.js │ ├── jquery-1.7.1.intellisense.js │ ├── jquery-1.7.1.js │ ├── jquery-1.7.1.min.js │ ├── jquery-ui-1.8.20.js │ ├── jquery-ui-1.8.20.min.js │ ├── jquery.unobtrusive-ajax.js │ ├── jquery.unobtrusive-ajax.min.js │ ├── jquery.validate-vsdoc.js │ ├── jquery.validate.js │ ├── jquery.validate.min.js │ ├── jquery.validate.unobtrusive.js │ ├── jquery.validate.unobtrusive.min.js │ ├── knockout-2.1.0.debug.js │ ├── knockout-2.1.0.js │ └── modernizr-2.5.3.js ├── Views │ ├── Home │ │ └── Index.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ └── _Layout.cshtml │ ├── Web.config │ └── _ViewStart.cshtml ├── Web.Debug.config ├── Web.Release.config ├── Web.config ├── favicon.ico └── packages.config ├── LMS.WCF.TrackNumber ├── 0-ReadMe.html ├── Dto │ └── ResutlInfo.cs ├── ITrackNumberAssign.cs ├── LMS.WCF.TrackNumber.csproj ├── Properties │ ├── AssemblyInfo.cs │ └── PublishProfiles │ │ └── TrackNumber.pubxml ├── TrackNumberAssign.svc ├── TrackNumberAssign.svc.cs ├── Web.Debug.config ├── Web.Release.config ├── Web.config └── packages.config ├── LMS.Web.FrontDesk ├── LMS.Web.FrontDesk.Controllers │ ├── LMS.FrontDesk.Controllers.BillingController │ │ ├── BillingController.cs │ │ ├── LMS.FrontDesk.Controllers.BillingController.csproj │ │ ├── Models │ │ │ ├── AutoMapperProfile.cs │ │ │ ├── Billing │ │ │ │ └── BillingModel.cs │ │ │ ├── FreightTrialViewModels.cs │ │ │ └── ShowCategoryListModel.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── app.config │ │ └── packages.config │ ├── LMS.FrontDesk.Controllers.FubController │ │ ├── HomeController.cs │ │ ├── LMS.FrontDesk.Controllers.FubController.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── ViewModel │ │ │ └── InTrackingLogInfoModel.cs │ │ └── packages.config │ ├── LMS.FrontDesk.Controllers.HomeController │ │ ├── HomeController.cs │ │ ├── LMS.FrontDesk.Controllers.HomeController.csproj │ │ ├── Models │ │ │ ├── ArticleModel.cs │ │ │ ├── AutoMapperProfile.cs │ │ │ ├── CategoryModel.cs │ │ │ ├── HomeListModel.cs │ │ │ ├── NewsPartialModel.cs │ │ │ └── ShowCategoryListModel.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── packages.config │ ├── LMS.FrontDesk.Controllers.NewController │ │ ├── LMS.FrontDesk.Controllers.NewController.csproj │ │ ├── Models │ │ │ ├── ArticleModel.cs │ │ │ ├── AutoMapperProfile.cs │ │ │ ├── CategoryModel.cs │ │ │ ├── NewListModel.cs │ │ │ └── ShowCategoryListModel.cs │ │ ├── NewController.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── app.config │ │ └── packages.config │ ├── LMS.FrontDesk.Controllers.RemoteAddressController │ │ ├── LMS.FrontDesk.Controllers.RemoteAddressController.csproj │ │ ├── Models │ │ │ ├── AutoMapperProfile.cs │ │ │ ├── CategoryModel.cs │ │ │ ├── ShowCategoryListModel.cs │ │ │ └── ViewModel.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── RemoteAddressController.cs │ ├── LMS.FrontDesk.Controllers.TrackController │ │ ├── LMS.FrontDesk.Controllers.TrackController.csproj │ │ ├── Models │ │ │ ├── AutoMapperProfile.cs │ │ │ ├── ContactTable.cs │ │ │ ├── EnumStatus.cs │ │ │ └── TrackModel.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── TrackController.cs │ │ └── packages.config │ └── LMS.FrontDesk.Controllers.UserController │ │ ├── LMS.FrontDesk.Controllers.UserController.csproj │ │ ├── Models │ │ ├── AddCustomerModel.cs │ │ ├── AutoMapperProfile.cs │ │ └── ShowCategoryListModel.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── UserController.cs │ │ ├── app.config │ │ └── packages.config ├── LMS.Web.FrontDesk.Kernels │ └── LMS.FrontDesk.Framework │ │ ├── DependencyRegistrar.cs │ │ ├── Extension │ │ ├── InputExtensions.cs │ │ └── PagerHelper.cs │ │ ├── Global.cs │ │ ├── LMS.FrontDesk.Framework.csproj │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── TrackGlobal.cs │ │ ├── WorkContext.cs │ │ └── packages.config ├── LMS.Web.FubTrack │ ├── 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 │ ├── Css │ │ ├── Css │ │ │ └── base.css │ │ └── base.css │ ├── Global.asax │ ├── Images │ │ ├── 20131220020547856.jpg │ │ ├── 89.GIF │ │ ├── FYB_03.png │ │ ├── FYB_07.jpg │ │ ├── Images │ │ │ ├── 20131220020547856.jpg │ │ │ ├── 89.GIF │ │ │ ├── FYB_03.png │ │ │ ├── FYB_07.jpg │ │ │ ├── bg_bn.png │ │ │ └── n1.jpg │ │ ├── bg_bn.png │ │ └── n1.jpg │ ├── LMS.Web.FubTrack.csproj │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── PublishProfiles │ │ │ └── LMS.Web.FubTrack.pubxml │ ├── Scripts │ │ ├── MicrosoftAjax.debug.js │ │ ├── MicrosoftAjax.js │ │ ├── MicrosoftMvcAjax.debug.js │ │ ├── MicrosoftMvcAjax.js │ │ ├── MicrosoftMvcValidation.debug.js │ │ ├── MicrosoftMvcValidation.js │ │ ├── jquery-1.7.1.intellisense.js │ │ ├── jquery-1.7.1.js │ │ ├── jquery-1.7.1.min.js │ │ ├── jquery-ui-1.8.20.js │ │ ├── jquery-ui-1.8.20.min.js │ │ ├── jquery.unobtrusive-ajax.js │ │ ├── jquery.unobtrusive-ajax.min.js │ │ ├── jquery.validate-vsdoc.js │ │ ├── jquery.validate.js │ │ ├── jquery.validate.min.js │ │ ├── jquery.validate.unobtrusive.js │ │ ├── jquery.validate.unobtrusive.min.js │ │ └── modernizr-2.5.3.js │ ├── Views │ │ ├── Home │ │ │ ├── Index.cshtml │ │ │ └── Index2.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ └── _Layout.cshtml │ │ ├── Web.config │ │ └── _ViewStart.cshtml │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ └── packages.config ├── LMS.Web.Track │ ├── 404.html │ ├── Global.asax │ ├── LMS.Web.Track.csproj │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── PublishProfiles │ │ │ └── YunPost.pubxml │ ├── Scripts │ │ ├── MicrosoftAjax.debug.js │ │ ├── MicrosoftAjax.js │ │ ├── MicrosoftMvcAjax.debug.js │ │ ├── MicrosoftMvcAjax.js │ │ ├── MicrosoftMvcValidation.debug.js │ │ ├── MicrosoftMvcValidation.js │ │ ├── ZeroClipboard.js │ │ ├── ZeroClipboard.min.js │ │ ├── ZeroClipboard.swf │ │ ├── autocomplete │ │ │ ├── jquery-1.9.1.js │ │ │ ├── jquery-ui.css │ │ │ └── jquery-ui.js │ │ ├── chosen │ │ │ ├── chosen-sprite.png │ │ │ ├── chosen.css │ │ │ ├── chosen.jquery.js │ │ │ └── index.html │ │ ├── client.js │ │ ├── clipboard.swf │ │ ├── jq1.4.js │ │ ├── jquery-1.4.4.min.js │ │ ├── jquery-1.7.1.intellisense.js │ │ ├── jquery-1.7.1.js │ │ ├── jquery-1.7.1.min.js │ │ ├── jquery-powerSwitch-min.js │ │ ├── jquery-ui-1.8.20.js │ │ ├── jquery-ui-1.8.20.min.js │ │ ├── jquery.unobtrusive-ajax.js │ │ ├── jquery.unobtrusive-ajax.min.js │ │ ├── jquery.validate-vsdoc.js │ │ ├── jquery.validate.js │ │ ├── jquery.validate.min.js │ │ ├── jquery.validate.unobtrusive.js │ │ ├── jquery.validate.unobtrusive.min.js │ │ ├── jquery.zclip.js │ │ ├── jquery.zclip.min.js │ │ ├── modernizr-2.5.3.js │ │ ├── qq │ │ │ ├── brd.gif │ │ │ ├── ico.gif │ │ │ ├── qq.css │ │ │ └── qqservice.js │ │ └── website │ │ │ ├── UtilEvent.js │ │ │ ├── cookie.js │ │ │ ├── info_sch.js │ │ │ ├── jquery.soChange-min.js │ │ │ └── jquery.soChange.js │ ├── Views │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ ├── _Layout.cshtml │ │ │ ├── _LogOnPartial.cshtml │ │ │ └── _ShowDialog.cshtml │ │ ├── Track │ │ │ ├── Detail.cshtml │ │ │ └── Index.cshtml │ │ ├── Web.config │ │ └── _ViewStart.cshtml │ ├── Web.config │ ├── css │ │ ├── base.css │ │ ├── public.css │ │ └── style.css │ ├── images │ │ ├── 2014.11_03.jpg │ │ ├── Sprite_1.png │ │ ├── Sprite_1.psd │ │ ├── bg.jpg │ │ ├── bn1.jpg │ │ ├── earch_btn.png │ │ ├── mwd_bg.gif │ │ ├── search_btn.jpg │ │ ├── search_btnI.jpg │ │ └── 订单查询定稿_03.jpg │ ├── js │ │ ├── ZeroClipboard.js │ │ ├── ZeroClipboard.min.js │ │ ├── ZeroClipboard.swf │ │ ├── client.js │ │ ├── clipboard.swf │ │ ├── jq1.4.js │ │ ├── jquery-powerSwitch-min.js │ │ ├── jquery.zclip.js │ │ └── jquery.zclip.min.js │ └── packages.config ├── LMS.Web.YSD-Express │ ├── 404.html │ ├── Global.asax │ ├── LMS.Web.YSD-Express.csproj │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── PublishProfiles │ │ │ └── LMS.Web.YSD-Express.pubxml │ ├── Scripts │ │ ├── MicrosoftAjax.debug.js │ │ ├── MicrosoftAjax.js │ │ ├── MicrosoftMvcAjax.debug.js │ │ ├── MicrosoftMvcAjax.js │ │ ├── MicrosoftMvcValidation.debug.js │ │ ├── MicrosoftMvcValidation.js │ │ ├── autocomplete │ │ │ ├── jquery-1.9.1.js │ │ │ ├── jquery-ui.css │ │ │ └── jquery-ui.js │ │ ├── chosen │ │ │ ├── chosen-sprite.png │ │ │ ├── chosen.css │ │ │ ├── chosen.jquery.js │ │ │ └── index.html │ │ ├── client.js │ │ ├── jquery-1.4.4.min.js │ │ ├── jquery-1.7.1.intellisense.js │ │ ├── jquery-1.7.1.js │ │ ├── jquery-1.7.1.min.js │ │ ├── jquery-powerSwitch-min.js │ │ ├── jquery-ui-1.8.20.js │ │ ├── jquery-ui-1.8.20.min.js │ │ ├── jquery.unobtrusive-ajax.js │ │ ├── jquery.unobtrusive-ajax.min.js │ │ ├── jquery.validate-vsdoc.js │ │ ├── jquery.validate.js │ │ ├── jquery.validate.min.js │ │ ├── jquery.validate.unobtrusive.js │ │ ├── jquery.validate.unobtrusive.min.js │ │ ├── modernizr-2.5.3.js │ │ ├── qq │ │ │ ├── brd.gif │ │ │ ├── ico.gif │ │ │ ├── qq.css │ │ │ └── qqservice.js │ │ └── website │ │ │ ├── UtilEvent.js │ │ │ ├── cookie.js │ │ │ ├── info_sch.js │ │ │ ├── jquery.soChange-min.js │ │ │ └── jquery.soChange.js │ ├── Views │ │ ├── Billing │ │ │ └── FreightTrial.cshtml │ │ ├── Home │ │ │ ├── About.cshtml │ │ │ ├── ContactUs.cshtml │ │ │ ├── Index.cshtml │ │ │ ├── ProductServices.cshtml │ │ │ ├── _About.cshtml │ │ │ ├── _CompanyNewPartial.cshtml │ │ │ ├── _HomeBannerPartial.cshtml │ │ │ ├── _NewsPartial.cshtml │ │ │ ├── _PartnersPartial.cshtml │ │ │ └── _PriceSearchPartial.cshtml │ │ ├── New │ │ │ ├── NewDetailed.cshtml │ │ │ └── NewList.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ ├── _Layout.cshtml │ │ │ ├── _LogOnPartial.cshtml │ │ │ └── _ShowDialog.cshtml │ │ ├── User │ │ │ ├── AddSuccess.cshtml │ │ │ └── AddUser.cshtml │ │ ├── Web.config │ │ └── _ViewStart.cshtml │ ├── Web.config │ ├── css │ │ ├── base.css │ │ ├── logistics.css │ │ ├── logistics_pub.css │ │ ├── logistics_style.css │ │ └── skin.css │ ├── images │ │ ├── 20140514-云途物流-02_03.jpg │ │ ├── 20140514-云途物流-02_05.jpg │ │ ├── 2342_03.jpg │ │ ├── 2342_17.jpg │ │ ├── 345.jpg │ │ ├── 404_03.jpg │ │ ├── 546456_03.jpg │ │ ├── 546456_07.jpg │ │ ├── 546456_08.jpg │ │ ├── asdasdsadasd_07.jpg │ │ ├── banner │ │ │ ├── 1.jpg │ │ │ ├── 2.jpg │ │ │ ├── 3.jpg │ │ │ ├── 4.jpg │ │ │ ├── 5.jpg │ │ │ ├── banner1.jpg │ │ │ ├── banner2.jpg │ │ │ ├── banner_in_03.jpg │ │ │ ├── banner_in_04.jpg │ │ │ ├── banner_in_05.jpg │ │ │ ├── banner_in_06.jpg │ │ │ ├── banner_in_07.jpg │ │ │ ├── bn1.jpg │ │ │ ├── bn2.jpg │ │ │ ├── bn3.jpg │ │ │ ├── bn4.jpg │ │ │ ├── bn5.jpg │ │ │ ├── bn6.jpg │ │ │ ├── bn7.jpg │ │ │ ├── default_04.jpg │ │ │ ├── default_04_2.jpg │ │ │ ├── default_04_3.jpg │ │ │ └── default_04_4.jpg │ │ ├── banner_1.jpg │ │ ├── banner_in_03.jpg │ │ ├── bd_icon.jpg │ │ ├── bg_1_03.jpg │ │ ├── bg_1_04.jpg │ │ ├── caro_icon.jpg │ │ ├── caro_icon2.jpg │ │ ├── certificate.png │ │ ├── circle_1.png │ │ ├── circle_2.png │ │ ├── clock_1.jpg │ │ ├── default2_03.jpg │ │ ├── default2_07.jpg │ │ ├── default2_10.jpg │ │ ├── default_01.jpg │ │ ├── default_04.jpg │ │ ├── default_06.jpg │ │ ├── default_20.jpg │ │ ├── default_25.jpg │ │ ├── delete.png │ │ ├── grid.png │ │ ├── house.jpg │ │ ├── idxC_bg_03.jpg │ │ ├── idxC_bg_07.jpg │ │ ├── idx_1.jpg │ │ ├── idx_2.jpg │ │ ├── idx_3.jpg │ │ ├── idx_4.jpg │ │ ├── idx_5.jpg │ │ ├── idx_6.jpg │ │ ├── index_06.jpg │ │ ├── index_06.png │ │ ├── index_15.jpg │ │ ├── index_18.jpg │ │ ├── index_20.jpg │ │ ├── index_21.jpg │ │ ├── index_24.jpg │ │ ├── index_30.jpg │ │ ├── index_32.jpg │ │ ├── logo.jpg │ │ ├── logo.png │ │ ├── logo11.jpg │ │ ├── logo2.jpg │ │ ├── logo2.png │ │ ├── logo_1.png │ │ ├── logo_2.jpg │ │ ├── logo_white.png │ │ ├── menu_in.png │ │ ├── menu_in_03.png │ │ ├── menu_in_05.png │ │ ├── menu_in_07.png │ │ ├── menu_in_09.png │ │ ├── menu_in_11.jpg │ │ ├── more_03.jpg │ │ ├── more_07.jpg │ │ ├── mul_ll_03.jpg │ │ ├── nav_icon.jpg │ │ ├── nav_icon1.jpg │ │ ├── nav_icon2.jpg │ │ ├── nav_icon_03.jpg │ │ ├── partner.jpg │ │ ├── phone.jpg │ │ ├── postyun.gif │ │ ├── product_bn.jpg │ │ ├── quan_1.png │ │ ├── quan_2.png │ │ ├── quan_3.png │ │ ├── rgst_03.jpg │ │ ├── rgst_07.jpg │ │ ├── rgst_11.jpg │ │ ├── share_03.jpg │ │ ├── share_05.jpg │ │ ├── share_07.jpg │ │ ├── share_09.jpg │ │ ├── share_1.jpg │ │ ├── share_2.jpg │ │ ├── share_3.jpg │ │ ├── small.jpg │ │ ├── srarch_bg_07.jpg │ │ ├── u_home.jpg │ │ ├── uadmin_logo.png │ │ ├── weichat_17.jpg │ │ ├── welcome_03.png │ │ └── year.png │ └── packages.config ├── LMS.Web.YTWL │ ├── 404.html │ ├── Global.asax │ ├── LMS.Web.YTWL.csproj │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── PublishProfiles │ │ │ └── LMSYTWL.pubxml │ ├── Scripts │ │ ├── MicrosoftAjax.debug.js │ │ ├── MicrosoftAjax.js │ │ ├── MicrosoftMvcAjax.debug.js │ │ ├── MicrosoftMvcAjax.js │ │ ├── MicrosoftMvcValidation.debug.js │ │ ├── MicrosoftMvcValidation.js │ │ ├── autocomplete │ │ │ ├── jquery-1.9.1.js │ │ │ ├── jquery-ui.css │ │ │ └── jquery-ui.js │ │ ├── chosen │ │ │ ├── chosen-sprite.png │ │ │ ├── chosen.css │ │ │ ├── chosen.jquery.js │ │ │ └── index.html │ │ ├── client.js │ │ ├── jquery-1.4.4.min.js │ │ ├── jquery-1.7.1.intellisense.js │ │ ├── jquery-1.7.1.js │ │ ├── jquery-1.7.1.min.js │ │ ├── jquery-powerSwitch-min.js │ │ ├── jquery-ui-1.8.20.js │ │ ├── jquery-ui-1.8.20.min.js │ │ ├── jquery.unobtrusive-ajax.js │ │ ├── jquery.unobtrusive-ajax.min.js │ │ ├── jquery.validate-vsdoc.js │ │ ├── jquery.validate.js │ │ ├── jquery.validate.min.js │ │ ├── jquery.validate.unobtrusive.js │ │ ├── jquery.validate.unobtrusive.min.js │ │ ├── modernizr-2.5.3.js │ │ ├── qq │ │ │ ├── brd.gif │ │ │ ├── ico.gif │ │ │ ├── qq.css │ │ │ └── qqservice.js │ │ └── website │ │ │ ├── UtilEvent.js │ │ │ ├── cookie.js │ │ │ ├── info_sch.js │ │ │ ├── jquery.soChange-min.js │ │ │ └── jquery.soChange.js │ ├── Views │ │ ├── Billing │ │ │ └── FreightTrial.cshtml │ │ ├── Home │ │ │ ├── About.cshtml │ │ │ ├── ContactUs.cshtml │ │ │ ├── Index.cshtml │ │ │ ├── ProductServices.cshtml │ │ │ ├── _About.cshtml │ │ │ ├── _CompanyNewPartial.cshtml │ │ │ ├── _ContactUsPartial.cshtml │ │ │ ├── _HomeBannerPartial.cshtml │ │ │ ├── _NewsPartial.cshtml │ │ │ ├── _PartnersPartial.cshtml │ │ │ └── _PriceSearchPartial.cshtml │ │ ├── New │ │ │ ├── NewDetailed.cshtml │ │ │ └── NewList.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ ├── _Layout.cshtml │ │ │ ├── _LogOnPartial.cshtml │ │ │ └── _ShowDialog.cshtml │ │ ├── User │ │ │ ├── AddSuccess.cshtml │ │ │ └── AddUser.cshtml │ │ ├── Web.config │ │ └── _ViewStart.cshtml │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ ├── css │ │ ├── base.css │ │ ├── logistics.css │ │ ├── logistics_pub.css │ │ ├── logistics_style.css │ │ └── skin.css │ ├── images │ │ ├── 345.jpg │ │ ├── 404_03.jpg │ │ ├── 546456_03.jpg │ │ ├── 546456_07.jpg │ │ ├── 546456_08.jpg │ │ ├── asdasdsadasd_07.jpg │ │ ├── banner │ │ │ ├── banner1.jpg │ │ │ ├── banner2.jpg │ │ │ ├── banner_in_03.jpg │ │ │ ├── banner_in_04.jpg │ │ │ ├── banner_in_05.jpg │ │ │ ├── banner_in_06.jpg │ │ │ ├── banner_in_07.jpg │ │ │ ├── bn1.jpg │ │ │ ├── bn2.jpg │ │ │ ├── bn3.jpg │ │ │ ├── bn4.jpg │ │ │ ├── bn5.jpg │ │ │ ├── bn6.jpg │ │ │ ├── bn7.jpg │ │ │ ├── default_04.jpg │ │ │ ├── default_04_2.jpg │ │ │ ├── default_04_3.jpg │ │ │ └── default_04_4.jpg │ │ ├── banner_1.jpg │ │ ├── banner_in_03.jpg │ │ ├── bd_icon.jpg │ │ ├── certificate.png │ │ ├── circle_1.png │ │ ├── circle_2.png │ │ ├── clock_1.jpg │ │ ├── default2_03.jpg │ │ ├── default2_07.jpg │ │ ├── default2_10.jpg │ │ ├── default_01.jpg │ │ ├── default_04.jpg │ │ ├── default_06.jpg │ │ ├── default_20.jpg │ │ ├── default_25.jpg │ │ ├── delete.png │ │ ├── grid.png │ │ ├── house.jpg │ │ ├── idxC_bg_03.jpg │ │ ├── idxC_bg_07.jpg │ │ ├── index_06.jpg │ │ ├── index_06.png │ │ ├── index_15.jpg │ │ ├── index_18.jpg │ │ ├── index_20.jpg │ │ ├── index_21.jpg │ │ ├── index_24.jpg │ │ ├── index_30.jpg │ │ ├── index_32.jpg │ │ ├── logo.jpg │ │ ├── logo.png │ │ ├── logo2.png │ │ ├── logo_1.png │ │ ├── logo_2.jpg │ │ ├── logo_white.png │ │ ├── menu_in.png │ │ ├── menu_in_03.png │ │ ├── menu_in_05.png │ │ ├── menu_in_07.png │ │ ├── menu_in_09.png │ │ ├── menu_in_11.jpg │ │ ├── more_03.jpg │ │ ├── more_07.jpg │ │ ├── nav_icon1.jpg │ │ ├── nav_icon2.jpg │ │ ├── partner.jpg │ │ ├── phone.jpg │ │ ├── quan_1.png │ │ ├── quan_2.png │ │ ├── rgst_03.jpg │ │ ├── rgst_07.jpg │ │ ├── rgst_11.jpg │ │ ├── share_03.jpg │ │ ├── share_05.jpg │ │ ├── share_07.jpg │ │ ├── share_09.jpg │ │ ├── small.jpg │ │ ├── srarch_bg_07.jpg │ │ ├── u_home.jpg │ │ ├── uadmin_logo.png │ │ ├── welcome_03.png │ │ └── year.png │ └── packages.config ├── LMS.Web.YunPost │ ├── 404.html │ ├── Global.asax │ ├── LMS.Web.YunPost.csproj │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── PublishProfiles │ │ │ └── YunPost.pubxml │ ├── Scripts │ │ ├── MicrosoftAjax.debug.js │ │ ├── MicrosoftAjax.js │ │ ├── MicrosoftMvcAjax.debug.js │ │ ├── MicrosoftMvcAjax.js │ │ ├── MicrosoftMvcValidation.debug.js │ │ ├── MicrosoftMvcValidation.js │ │ ├── autocomplete │ │ │ ├── jquery-1.9.1.js │ │ │ ├── jquery-ui.css │ │ │ └── jquery-ui.js │ │ ├── chosen │ │ │ ├── chosen-sprite.png │ │ │ ├── chosen.css │ │ │ ├── chosen.jquery.js │ │ │ └── index.html │ │ ├── client.js │ │ ├── jquery-1.4.4.min.js │ │ ├── jquery-1.7.1.intellisense.js │ │ ├── jquery-1.7.1.js │ │ ├── jquery-1.7.1.min.js │ │ ├── jquery-powerSwitch-min.js │ │ ├── jquery-ui-1.8.20.js │ │ ├── jquery-ui-1.8.20.min.js │ │ ├── jquery.Sonline.js │ │ ├── jquery.unobtrusive-ajax.js │ │ ├── jquery.unobtrusive-ajax.min.js │ │ ├── jquery.validate-vsdoc.js │ │ ├── jquery.validate.js │ │ ├── jquery.validate.min.js │ │ ├── jquery.validate.unobtrusive.js │ │ ├── jquery.validate.unobtrusive.min.js │ │ ├── modernizr-2.5.3.js │ │ ├── qq │ │ │ ├── brd.gif │ │ │ ├── ico.gif │ │ │ ├── qq.css │ │ │ └── qqservice.js │ │ └── website │ │ │ ├── UtilEvent.js │ │ │ ├── cookie.js │ │ │ ├── info_sch.js │ │ │ ├── jquery.soChange-min.js │ │ │ └── jquery.soChange.js │ ├── Views │ │ ├── Billing │ │ │ └── FreightTrial.cshtml │ │ ├── Home │ │ │ ├── About.cshtml │ │ │ ├── ContactUs.cshtml │ │ │ ├── HelpCenter.cshtml │ │ │ ├── Index.cshtml │ │ │ ├── ProductServices.cshtml │ │ │ ├── _About.cshtml │ │ │ ├── _CompanyNewPartial.cshtml │ │ │ ├── _HomeBannerPartial.cshtml │ │ │ ├── _NewsPartial.cshtml │ │ │ ├── _PartnersPartial.cshtml │ │ │ └── _PriceSearchPartial.cshtml │ │ ├── New │ │ │ ├── NewDetailed.cshtml │ │ │ └── NewList.cshtml │ │ ├── RemoteAddress │ │ │ └── Search.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ ├── _Layout.cshtml │ │ │ ├── _LogOnPartial.cshtml │ │ │ └── _ShowDialog.cshtml │ │ ├── User │ │ │ ├── AddSuccess.cshtml │ │ │ └── AddUser.cshtml │ │ ├── Web.config │ │ └── _ViewStart.cshtml │ ├── Web.config │ ├── css │ │ ├── base.css │ │ ├── datouwang.css │ │ ├── logistics.css │ │ ├── logistics_pub.css │ │ ├── logistics_style.css │ │ └── skin.css │ ├── images │ │ ├── 20140514-云途物流-02_03.jpg │ │ ├── 20140514-云途物流-02_05.jpg │ │ ├── 2342_03.jpg │ │ ├── 2342_17.jpg │ │ ├── 345.jpg │ │ ├── 404_03.jpg │ │ ├── 546456_03.jpg │ │ ├── 546456_07.jpg │ │ ├── 546456_08.jpg │ │ ├── SonlineTitleBg.gif │ │ ├── advt_03.jpg │ │ ├── asdasdsadasd_07.jpg │ │ ├── banner │ │ │ ├── banner1.jpg │ │ │ ├── banner2.jpg │ │ │ ├── banner_07.png │ │ │ ├── banner_in_03.jpg │ │ │ ├── banner_in_04.jpg │ │ │ ├── banner_in_05.jpg │ │ │ ├── banner_in_06.jpg │ │ │ ├── banner_in_07.jpg │ │ │ ├── bn1.jpg │ │ │ ├── bn2.jpg │ │ │ ├── bn3.jpg │ │ │ ├── bn4.jpg │ │ │ ├── bn5.jpg │ │ │ ├── bn6.jpg │ │ │ ├── bn7.jpg │ │ │ ├── default_04.jpg │ │ │ ├── default_04_2.jpg │ │ │ ├── default_04_3.jpg │ │ │ └── default_04_4.jpg │ │ ├── banner_1.jpg │ │ ├── banner_in_03.jpg │ │ ├── bd_icon.jpg │ │ ├── bg_1_03.jpg │ │ ├── bg_1_04.jpg │ │ ├── caro_icon.jpg │ │ ├── caro_icon2.jpg │ │ ├── certificate.png │ │ ├── circle_1.png │ │ ├── circle_2.png │ │ ├── clock_1.jpg │ │ ├── closeBtnImg.gif │ │ ├── default2_03.jpg │ │ ├── default2_07.jpg │ │ ├── default2_10.jpg │ │ ├── defaultImg.png │ │ ├── default_01.jpg │ │ ├── default_04.jpg │ │ ├── default_06.jpg │ │ ├── default_20.jpg │ │ ├── default_25.jpg │ │ ├── delete.png │ │ ├── favicon.ico │ │ ├── grayOpen.jpg │ │ ├── grayTitleBg.gif │ │ ├── greenOpen.jpg │ │ ├── greenTitleBg.gif │ │ ├── grid.jpg │ │ ├── grid.png │ │ ├── head__03.jpg │ │ ├── head__05.jpg │ │ ├── house.jpg │ │ ├── idxC_bg_03.jpg │ │ ├── idxC_bg_07.jpg │ │ ├── idx_1.jpg │ │ ├── idx_2.jpg │ │ ├── idx_3.jpg │ │ ├── idx_4.jpg │ │ ├── idx_5.jpg │ │ ├── idx_6.jpg │ │ ├── idx_7.jpg │ │ ├── idx_8.png │ │ ├── index_06.jpg │ │ ├── index_06.png │ │ ├── index_15.jpg │ │ ├── index_18.jpg │ │ ├── index_20.jpg │ │ ├── index_21.jpg │ │ ├── index_24.jpg │ │ ├── index_30.jpg │ │ ├── index_32.jpg │ │ ├── logo.jpg │ │ ├── logo.png │ │ ├── logo1.png │ │ ├── logo2.png │ │ ├── logo3.png │ │ ├── logo4.png │ │ ├── logo_1.png │ │ ├── logo_2.jpg │ │ ├── logo_white.png │ │ ├── menu_in.png │ │ ├── menu_in_03.png │ │ ├── menu_in_05.png │ │ ├── menu_in_07.png │ │ ├── menu_in_09.png │ │ ├── menu_in_11.jpg │ │ ├── more_03.jpg │ │ ├── more_07.jpg │ │ ├── mul_03.jpg │ │ ├── mul_ll_03.jpg │ │ ├── nav_icon.jpg │ │ ├── nav_icon1.jpg │ │ ├── nav_icon2.jpg │ │ ├── nav_icon_03.jpg │ │ ├── openTrigger.jpg │ │ ├── pack_in_03.jpg │ │ ├── pack_in_06.jpg │ │ ├── partner.jpg │ │ ├── partner_26.jpg │ │ ├── partner_27.jpg │ │ ├── phone.jpg │ │ ├── postyun.gif │ │ ├── product_03.jpg │ │ ├── product_05.jpg │ │ ├── product_07.jpg │ │ ├── product_09.jpg │ │ ├── product_15.jpg │ │ ├── product_16.jpg │ │ ├── product_17.jpg │ │ ├── product_19.jpg │ │ ├── product_bn.jpg │ │ ├── project_03.jpg │ │ ├── project_05.jpg │ │ ├── project_07.jpg │ │ ├── project_09.jpg │ │ ├── project_14.jpg │ │ ├── project_16.jpg │ │ ├── project_18.jpg │ │ ├── project_20.jpg │ │ ├── project_21.jpg │ │ ├── quan_1.png │ │ ├── quan_2.png │ │ ├── redOpen.jpg │ │ ├── redTitleBg.gif │ │ ├── rgst_03.jpg │ │ ├── rgst_07.jpg │ │ ├── rgst_11.jpg │ │ ├── share.png │ │ ├── share_03.jpg │ │ ├── share_05.jpg │ │ ├── share_07.jpg │ │ ├── share_09.jpg │ │ ├── share_1.jpg │ │ ├── share_2.jpg │ │ ├── share_3.jpg │ │ ├── small.jpg │ │ ├── srarch_bg_07.jpg │ │ ├── u_home.jpg │ │ ├── uadmin_logo.png │ │ ├── weichat_17.jpg │ │ ├── weinxi_03.jpg │ │ ├── welcome_03.png │ │ ├── year.png │ │ ├── yunpostBarCode.jpg │ │ └── 云途LOGO.png │ └── packages.config ├── LighTake.LMS.Web.FrontDesk │ ├── 404.html │ ├── Global.asax │ ├── LighTake.LMS.Web.FrontDesk.csproj │ ├── Models │ │ └── AccountModels.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── PublishProfiles │ │ │ └── default.pubxml │ ├── Scripts │ │ ├── MicrosoftAjax.debug.js │ │ ├── MicrosoftAjax.js │ │ ├── MicrosoftMvcAjax.debug.js │ │ ├── MicrosoftMvcAjax.js │ │ ├── MicrosoftMvcValidation.debug.js │ │ ├── MicrosoftMvcValidation.js │ │ ├── autocomplete │ │ │ ├── jquery-1.9.1.js │ │ │ ├── jquery-ui.css │ │ │ └── jquery-ui.js │ │ ├── chosen │ │ │ ├── chosen-sprite.png │ │ │ ├── chosen.css │ │ │ ├── chosen.jquery.js │ │ │ └── index.html │ │ ├── jquery-1.7.1.intellisense.js │ │ ├── jquery-1.7.1.js │ │ ├── jquery-1.7.1.min.js │ │ ├── jquery-ui-1.8.20.js │ │ ├── jquery-ui-1.8.20.min.js │ │ ├── jquery.unobtrusive-ajax.js │ │ ├── jquery.unobtrusive-ajax.min.js │ │ ├── jquery.validate-vsdoc.js │ │ ├── jquery.validate.js │ │ ├── jquery.validate.min.js │ │ ├── jquery.validate.unobtrusive.js │ │ ├── jquery.validate.unobtrusive.min.js │ │ ├── modernizr-2.5.3.js │ │ ├── qq │ │ │ ├── brd.gif │ │ │ ├── ico.gif │ │ │ ├── qq.css │ │ │ └── qqservice.js │ │ └── website │ │ │ ├── UtilEvent.js │ │ │ ├── cookie.js │ │ │ ├── info_sch.js │ │ │ ├── jquery.soChange-min.js │ │ │ └── jquery.soChange.js │ ├── Views │ │ ├── Billing │ │ │ └── FreightTrial.cshtml │ │ ├── Home │ │ │ ├── About.cshtml │ │ │ ├── ContactUs.cshtml │ │ │ ├── Index.cshtml │ │ │ ├── ProductServices.cshtml │ │ │ ├── _About.cshtml │ │ │ ├── _CompanyNewPartial.cshtml │ │ │ ├── _ContactUsPartial.cshtml │ │ │ ├── _HomeBannerPartial.cshtml │ │ │ ├── _NewsPartial.cshtml │ │ │ ├── _PartnersPartial.cshtml │ │ │ └── _PriceSearchPartial.cshtml │ │ ├── New │ │ │ ├── NewDetailed.cshtml │ │ │ └── NewList.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ ├── _Layout.cshtml │ │ │ ├── _LogOnPartial.cshtml │ │ │ └── _ShowDialog.cshtml │ │ ├── User │ │ │ ├── AddSuccess.cshtml │ │ │ └── AddUser.cshtml │ │ ├── Web.config │ │ └── _ViewStart.cshtml │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ ├── css │ │ ├── logistics.css │ │ └── skin.css │ ├── images │ │ ├── 345.jpg │ │ ├── 404_03.jpg │ │ ├── 546456_03.jpg │ │ ├── 546456_07.jpg │ │ ├── 546456_08.jpg │ │ ├── asdasdsadasd_07.jpg │ │ ├── banner │ │ │ ├── banner1.jpg │ │ │ ├── banner2.jpg │ │ │ ├── banner_in_03.jpg │ │ │ ├── banner_in_04.jpg │ │ │ ├── banner_in_05.jpg │ │ │ ├── banner_in_06.jpg │ │ │ ├── banner_in_07.jpg │ │ │ ├── default_04.jpg │ │ │ ├── default_04_2.jpg │ │ │ ├── default_04_3.jpg │ │ │ └── default_04_4.jpg │ │ ├── banner_in_03.jpg │ │ ├── certificate.png │ │ ├── circle_1.png │ │ ├── circle_2.png │ │ ├── default2_03.jpg │ │ ├── default2_07.jpg │ │ ├── default2_10.jpg │ │ ├── default_01.jpg │ │ ├── default_04.jpg │ │ ├── default_06.jpg │ │ ├── default_20.jpg │ │ ├── default_25.jpg │ │ ├── delete.png │ │ ├── grid.png │ │ ├── logo.jpg │ │ ├── logo.png │ │ ├── logo_white.png │ │ ├── menu_in.png │ │ ├── menu_in_03.png │ │ ├── menu_in_05.png │ │ ├── menu_in_07.png │ │ ├── menu_in_09.png │ │ ├── menu_in_11.jpg │ │ ├── more_03.jpg │ │ ├── more_07.jpg │ │ ├── rgst_03.jpg │ │ ├── rgst_07.jpg │ │ ├── rgst_11.jpg │ │ ├── share_03.jpg │ │ ├── share_05.jpg │ │ ├── share_07.jpg │ │ ├── share_09.jpg │ │ ├── small.jpg │ │ ├── srarch_bg_07.jpg │ │ └── u_home.jpg │ └── packages.config └── MXBN.Web │ ├── 404.html │ ├── Global.asax │ ├── MXBN.Web.csproj │ ├── Properties │ └── AssemblyInfo.cs │ ├── Scripts │ ├── MicrosoftAjax.debug.js │ ├── MicrosoftAjax.js │ ├── MicrosoftMvcAjax.debug.js │ ├── MicrosoftMvcAjax.js │ ├── MicrosoftMvcValidation.debug.js │ ├── MicrosoftMvcValidation.js │ ├── autocomplete │ │ ├── jquery-1.9.1.js │ │ ├── jquery-ui.css │ │ └── jquery-ui.js │ ├── chosen │ │ ├── chosen-sprite.png │ │ ├── chosen.css │ │ ├── chosen.jquery.js │ │ └── index.html │ ├── jquery-1.7.1.intellisense.js │ ├── jquery-1.7.1.js │ ├── jquery-1.7.1.min.js │ ├── jquery-ui-1.8.20.js │ ├── jquery-ui-1.8.20.min.js │ ├── jquery.unobtrusive-ajax.js │ ├── jquery.unobtrusive-ajax.min.js │ ├── jquery.validate-vsdoc.js │ ├── jquery.validate.js │ ├── jquery.validate.min.js │ ├── jquery.validate.unobtrusive.js │ ├── jquery.validate.unobtrusive.min.js │ ├── modernizr-2.5.3.js │ ├── qq │ │ ├── brd.gif │ │ ├── ico.gif │ │ ├── qq.css │ │ └── qqservice.js │ └── website │ │ ├── UtilEvent.js │ │ ├── cookie.js │ │ ├── info_sch.js │ │ ├── jquery.soChange-min.js │ │ └── jquery.soChange.js │ ├── Views │ ├── Billing │ │ └── FreightTrial.cshtml │ ├── Home │ │ ├── About.cshtml │ │ ├── ContactUs.cshtml │ │ ├── Index.cshtml │ │ ├── ProductServices.cshtml │ │ ├── _About.cshtml │ │ ├── _CompanyNewPartial.cshtml │ │ ├── _ContactUsPartial.cshtml │ │ ├── _HomeBannerPartial.cshtml │ │ ├── _NewsPartial.cshtml │ │ ├── _PartnersPartial.cshtml │ │ └── _PriceSearchPartial.cshtml │ ├── New │ │ ├── NewDetailed.cshtml │ │ └── NewList.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ ├── _Layout.cshtml │ │ ├── _LogOnPartial.cshtml │ │ └── _ShowDialog.cshtml │ ├── User │ │ ├── AddSuccess.cshtml │ │ └── AddUser.cshtml │ ├── Web.config │ └── _ViewStart.cshtml │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ ├── css │ ├── logistics.css │ ├── logistics.v1.0.0.css │ ├── skin.css │ └── skin.v1.0.0.css │ ├── images │ ├── 345.jpg │ ├── 404_03.jpg │ ├── 546456_03.jpg │ ├── 546456_07.jpg │ ├── 546456_08.jpg │ ├── asdasdsadasd_07.jpg │ ├── banner │ │ ├── banner1.jpg │ │ ├── banner2.jpg │ │ ├── banner_in_03.jpg │ │ ├── banner_in_04.jpg │ │ ├── banner_in_05.jpg │ │ ├── banner_in_06.jpg │ │ ├── banner_in_07.jpg │ │ ├── default_04.jpg │ │ ├── default_04_2.jpg │ │ ├── default_04_3.jpg │ │ └── default_04_4.jpg │ ├── banner_in_03.jpg │ ├── certificate.png │ ├── circle_1.png │ ├── circle_2.png │ ├── default2_03.jpg │ ├── default2_07.jpg │ ├── default2_10.jpg │ ├── default_01.jpg │ ├── default_04.jpg │ ├── default_06.jpg │ ├── default_20.jpg │ ├── default_25.jpg │ ├── delete.png │ ├── grid.png │ ├── logo.jpg │ ├── logo_white.png │ ├── menu_in.png │ ├── menu_in_03.png │ ├── menu_in_05.png │ ├── menu_in_07.png │ ├── menu_in_09.png │ ├── menu_in_11.jpg │ ├── more_03.jpg │ ├── more_07.jpg │ ├── rgst_03.jpg │ ├── rgst_07.jpg │ ├── rgst_11.jpg │ ├── share_03.jpg │ ├── share_05.jpg │ ├── share_07.jpg │ ├── share_09.jpg │ ├── small.jpg │ ├── srarch_bg_07.jpg │ └── u_home.jpg │ └── packages.config ├── LMS.Web.UserCenter ├── LMS.UserCenter.Controllers.CustomerController │ ├── CustomerController.cs │ ├── LMS.UserCenter.Controllers.CustomerController.csproj │ ├── Models │ │ ├── AutoMapperProfile.cs │ │ ├── CustomerFilterModel.cs │ │ ├── CustomerModel.cs │ │ └── CustomerViewModel.cs │ └── Properties │ │ └── AssemblyInfo.cs ├── LMS.UserCenter.Controllers │ ├── LMS.UserCenter.Controllers.AccountController │ │ ├── AccountController.cs │ │ ├── LMS.UserCenter.Controllers.AccountController.csproj │ │ ├── Models │ │ │ ├── AutoMapperProfile.cs │ │ │ └── CustomerStatisticsModel.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── app.config │ │ └── packages.config │ ├── LMS.UserCenter.Controllers.BillingController │ │ ├── BillingController.cs │ │ ├── LMS.UserCenter.Controllers.BillingController.csproj │ │ ├── Models │ │ │ ├── AutoMapperProfile.cs │ │ │ ├── BillWay │ │ │ │ ├── InFeeInfoListViewModel.cs │ │ │ │ ├── InFeeInfoModel.cs │ │ │ │ ├── InFeeListFilterModel.cs │ │ │ │ ├── OutFeeInfoListViewModel.cs │ │ │ │ ├── OutFeeInfoModel.cs │ │ │ │ └── OutFeeListFilterModel.cs │ │ │ ├── Billing │ │ │ │ ├── BillingExecModel.cs │ │ │ │ ├── BillingFilterModel.cs │ │ │ │ ├── BillingModel.cs │ │ │ │ └── BillingViewModels.cs │ │ │ ├── Country │ │ │ │ └── CountryModel.cs │ │ │ ├── Customer │ │ │ │ └── CustomerModel.cs │ │ │ ├── FreightTrialViewModels.cs │ │ │ ├── Recharge │ │ │ │ ├── CustomerBalances.cs │ │ │ │ ├── RechargeModel.cs │ │ │ │ └── RechargeViewModel.cs │ │ │ └── ShippingMethod │ │ │ │ ├── ShippingModel.cs │ │ │ │ └── ShippingViewModel.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── app.config │ │ └── packages.config │ ├── LMS.UserCenter.Controllers.CustomerController │ │ ├── CustomerController.cs │ │ ├── LMS.UserCenter.Controllers.CustomerController.csproj │ │ ├── Models │ │ │ ├── AutoMapperProfile.cs │ │ │ ├── CustomerFilterModel.cs │ │ │ ├── CustomerModel.cs │ │ │ └── CustomerViewModel.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── app.config │ │ └── packages.config │ ├── LMS.UserCenter.Controllers.OrderController │ │ ├── LMS.UserCenter.Controllers.OrderController.csproj │ │ ├── Models │ │ │ ├── ApplicationInfoModel.cs │ │ │ ├── AutoMapperProfile.cs │ │ │ ├── CustomerOrderFilter.cs │ │ │ ├── CustomerOrderInfoModel.cs │ │ │ ├── EubWayBillApplicationInfoModel.cs │ │ │ ├── EubWayBillFilter.cs │ │ │ ├── EubWayBillViewModel.cs │ │ │ ├── ExportFieldItem.cs │ │ │ ├── OrderModel.cs │ │ │ ├── ResultModel.cs │ │ │ ├── ScanPrintLabelViewModel.cs │ │ │ └── WayBillListViewModel.cs │ │ ├── OrderController.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Validators │ │ │ ├── OrderUploadBaseValidator.cs │ │ │ ├── OrderUploadSimpleValidator.cs │ │ │ ├── OrderUploadSinoUSValidator.cs │ │ │ ├── OrderUploadSmallPackageValidator.cs │ │ │ └── OrderUploadStandardValidator.cs │ │ ├── app.config │ │ └── packages.config │ └── LMS.UserCenter.Controllers.PrintController │ │ ├── LMS.UserCenter.Controllers.PrintController.csproj │ │ ├── PrintController.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── app.config │ │ └── packages.config ├── LMS.UserCenter.Core │ ├── Class1.cs │ ├── GlobalConfig.cs │ ├── LMS.UserCenter.Core.csproj │ └── Properties │ │ └── AssemblyInfo.cs ├── LMS.UserCenter.Web.Framework │ ├── App.config │ ├── DependencyRegistrar.cs │ ├── Extension │ │ ├── InputExtensions.cs │ │ └── PagerHelper.cs │ ├── Global.cs │ ├── LMS.UserCenter.Web.Framework.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── WorkContext.cs │ └── packages.config └── LMS.UserCenter.Web │ ├── 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 │ ├── Global.asax │ ├── LMS.UserCenter.Web.csproj │ ├── Properties │ ├── AssemblyInfo.cs │ └── PublishProfiles │ │ └── LMS.UserCenter.pubxml │ ├── Scripts │ ├── MicrosoftAjax.debug.js │ ├── MicrosoftAjax.js │ ├── MicrosoftMvcAjax.debug.js │ ├── MicrosoftMvcAjax.js │ ├── MicrosoftMvcValidation.debug.js │ ├── MicrosoftMvcValidation.js │ ├── jquery-1.7.1.intellisense.js │ ├── jquery-1.7.1.js │ ├── jquery-1.7.1.min.js │ ├── jquery-ui-1.8.20.js │ ├── jquery-ui-1.8.20.min.js │ ├── jquery.unobtrusive-ajax.js │ ├── jquery.unobtrusive-ajax.min.js │ ├── jquery.validate-vsdoc.js │ ├── jquery.validate.js │ ├── jquery.validate.min.js │ ├── jquery.validate.unobtrusive.js │ ├── jquery.validate.unobtrusive.min.js │ └── modernizr-2.5.3.js │ ├── UploadFiles │ ├── ExcelTemplate │ │ ├── CustomerBatchSmallPackage.xls │ │ ├── customerorderuploadtemplate.xls │ │ ├── deliveryorderuploadtemplate.xls │ │ └── onlyCNUSorderuploadtemplate.xls │ └── PrintTemplate │ │ └── Template.html │ ├── Views │ ├── Account │ │ ├── Index.cshtml │ │ ├── Login.cshtml │ │ └── OrderMenu.cshtml │ ├── Billing │ │ ├── ChangeRecords.cshtml │ │ ├── ChargebackDetail.cshtml │ │ ├── FreightTrial.cshtml │ │ ├── ModifyPassword.cshtml │ │ ├── Recharge.cshtml │ │ ├── SelectCountry.cshtml │ │ ├── SelectCustomerList_Bak.cshtml │ │ ├── SelectShippingMethod.cshtml │ │ └── SelectVender.cshtml │ ├── Customer │ │ └── SelectList.cshtml │ ├── Order │ │ ├── Add.cshtml │ │ ├── All.cshtml │ │ ├── BatchAdd.cshtml │ │ ├── BatchAddPackage.cshtml │ │ ├── BatchAddSinoUS.cshtml │ │ ├── Blocked.cshtml │ │ ├── Confirmed.cshtml │ │ ├── Edit.cshtml │ │ ├── EubWayBillList.cshtml │ │ ├── PrintDemo.cshtml │ │ ├── PrintPreview.cshtml │ │ ├── Printer.cshtml │ │ ├── Received.cshtml │ │ ├── ScanPrintLabel.cshtml │ │ ├── Send.cshtml │ │ ├── SinglePrint.cshtml │ │ ├── SubmitFail.cshtml │ │ ├── Submitted.cshtml │ │ ├── UnConfirmed.cshtml │ │ ├── WaybillList.cshtml │ │ ├── _AddAndEdit.cshtml │ │ ├── _BatchAddList.cshtml │ │ ├── _BatchAddPackageList.cshtml │ │ ├── _BatchAddSinoUS.cshtml │ │ ├── _EubWayBillList.cshtml │ │ ├── _List.cshtml │ │ ├── _PrintList.cshtml │ │ ├── _PrintOrder.cshtml │ │ ├── _PrintOrderList.cshtml │ │ ├── _PrintTNTOrder.cshtml │ │ └── _PrintTemplateList.cshtml │ ├── Print │ │ ├── Printer.cshtml │ │ ├── SinglePrint.cshtml │ │ ├── _PrintList.cshtml │ │ ├── _PrintOrder.cshtml │ │ └── _PrintOrderList.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ ├── _Layout.cshtml │ │ ├── _MINIPROFILER UPDATED Layout.cshtml │ │ └── _Notifications.cshtml │ ├── Web.config │ └── _ViewStart.cshtml │ ├── Web.config │ ├── css │ ├── Faile.wav │ ├── Success.wav │ ├── login.css │ ├── mool.css │ ├── pager.css │ ├── print.css │ └── res.css │ ├── images │ ├── PNG │ │ ├── add.png │ │ ├── cancel.png │ │ ├── close.png │ │ ├── cogs.png │ │ ├── delete.png │ │ ├── download.png │ │ ├── download2.png │ │ ├── edit.png │ │ ├── facebook.png │ │ ├── feed.png │ │ ├── folder-add.png │ │ ├── home.png │ │ ├── image.png │ │ ├── locked.png │ │ ├── message.png │ │ ├── money.png │ │ ├── nav_storage_service.png │ │ ├── nav_truck_ques.png │ │ ├── nav_truck_service.png │ │ ├── open.png │ │ ├── password.png │ │ ├── print.png │ │ ├── printer.png │ │ ├── question.png │ │ ├── refresh.png │ │ ├── save.png │ │ ├── scissors.png │ │ ├── search.png │ │ ├── shield.png │ │ ├── storage.png │ │ ├── succeed.png │ │ ├── trashcan.png │ │ ├── truck.png │ │ ├── twitter.png │ │ ├── uniF47D.png │ │ ├── upload.png │ │ ├── users.png │ │ └── warning.png │ ├── Print │ │ └── TNT │ │ │ ├── postnl.jpg │ │ │ ├── priority.jpg │ │ │ └── selec.jpg │ ├── SVG │ │ ├── add.svg │ │ ├── cancel.svg │ │ ├── close.svg │ │ ├── cogs.svg │ │ ├── delete.svg │ │ ├── download.svg │ │ ├── download2.svg │ │ ├── edit.svg │ │ ├── facebook.svg │ │ ├── feed.svg │ │ ├── folder-add.svg │ │ ├── home.svg │ │ ├── image.svg │ │ ├── locked.svg │ │ ├── message.svg │ │ ├── money.svg │ │ ├── nav_storage_service.svg │ │ ├── nav_truck_ques.svg │ │ ├── nav_truck_service.svg │ │ ├── open.svg │ │ ├── password.svg │ │ ├── print.svg │ │ ├── printer.svg │ │ ├── question.svg │ │ ├── refresh.svg │ │ ├── save.svg │ │ ├── scissors.svg │ │ ├── search.svg │ │ ├── shield.svg │ │ ├── storage.svg │ │ ├── succeed.svg │ │ ├── trashcan.svg │ │ ├── truck.svg │ │ ├── twitter.svg │ │ ├── uniF47D.svg │ │ ├── upload.svg │ │ ├── users.svg │ │ └── warning.svg │ ├── canvas.png │ ├── canvas1.png │ ├── canvas2.png │ ├── close.png │ ├── fonts │ │ ├── icomoon.dev.svg │ │ ├── icomoon.eot │ │ ├── icomoon.svg │ │ ├── icomoon.ttf │ │ └── icomoon.woff │ ├── img_03.jpg │ ├── img_06.jpg │ ├── img_07.jpg │ ├── loader.gif │ ├── locked.png │ ├── main_menu.png │ ├── new.gif │ ├── new.jpg │ ├── open.png │ ├── shangdai_ad.png │ └── uadmin_logo.png │ ├── js │ ├── My97DatePicker │ │ ├── My97DatePicker.htm │ │ ├── WdatePicker.js │ │ ├── calendar.js │ │ ├── config.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 │ │ └── 开发包 │ │ │ ├── lang │ │ │ ├── en.js │ │ │ ├── zh-cn.js │ │ │ └── zh-tw.js │ │ │ ├── readme.txt │ │ │ └── skin │ │ │ ├── WdatePicker.css │ │ │ ├── datePicker.gif │ │ │ ├── default │ │ │ ├── datepicker.css │ │ │ └── img.gif │ │ │ └── whyGreen │ │ │ ├── bg.jpg │ │ │ ├── datepicker.css │ │ │ └── img.gif │ ├── _chosen │ │ ├── chosen-sprite.png │ │ ├── chosen.css │ │ └── chosen.jquery.js │ ├── artdialog │ │ ├── jquery.artDialog.js │ │ ├── plugins │ │ │ └── iframeTools.js │ │ └── skins │ │ │ ├── default.css │ │ │ └── icons │ │ │ ├── error.png │ │ │ ├── face-sad.png │ │ │ ├── face-smile.png │ │ │ ├── loading.gif │ │ │ ├── question.png │ │ │ ├── succeed.png │ │ │ └── warning.png │ ├── chosen │ │ ├── chosen-sprite.png │ │ ├── chosen.css │ │ ├── chosen.jquery.js │ │ └── index.html │ ├── common.js │ ├── cookie.js │ ├── easyui-public.js │ ├── ifm.js │ ├── jquery-1.7.1.min.js │ ├── jquery-easyui-1.3.1 │ │ ├── changelog.txt │ │ ├── demo │ │ │ ├── accordion.html │ │ │ ├── calendar.html │ │ │ ├── combo.html │ │ │ ├── combobox.html │ │ │ ├── combobox_data.json │ │ │ ├── combogrid.html │ │ │ ├── combotree.html │ │ │ ├── datagrid.html │ │ │ ├── datagrid2.html │ │ │ ├── datagrid3.html │ │ │ ├── datagrid4.html │ │ │ ├── datagrid5.html │ │ │ ├── datagrid_data.json │ │ │ ├── datagrid_data2.json │ │ │ ├── datagrid_data3.json │ │ │ ├── datebox.html │ │ │ ├── datetimebox.html │ │ │ ├── demo.css │ │ │ ├── dialog.html │ │ │ ├── draggable.html │ │ │ ├── droppable.html │ │ │ ├── droppable1.html │ │ │ ├── droppable2.html │ │ │ ├── easyloader.html │ │ │ ├── form.html │ │ │ ├── form_data.json │ │ │ ├── layout.html │ │ │ ├── layout1.html │ │ │ ├── layout2.html │ │ │ ├── linkbutton.html │ │ │ ├── menu.html │ │ │ ├── menubutton.html │ │ │ ├── messager.html │ │ │ ├── numberbox.html │ │ │ ├── numberbox2.html │ │ │ ├── numberspinner.html │ │ │ ├── pagination.html │ │ │ ├── panel.html │ │ │ ├── panel2.html │ │ │ ├── progressbar.html │ │ │ ├── propertygrid.html │ │ │ ├── propertygrid_data.json │ │ │ ├── resizable.html │ │ │ ├── searchbox.html │ │ │ ├── slider.html │ │ │ ├── splitbutton.html │ │ │ ├── tabs.html │ │ │ ├── tabs_href_test.html │ │ │ ├── timespinner.html │ │ │ ├── tree.html │ │ │ ├── tree2.html │ │ │ ├── tree_data.json │ │ │ ├── treegrid.html │ │ │ ├── treegrid2.html │ │ │ ├── treegrid3.html │ │ │ ├── treegrid_data.json │ │ │ ├── treegrid_data2.json │ │ │ ├── treegrid_data3.json │ │ │ ├── treegrid_subdata.json │ │ │ ├── validatebox.html │ │ │ └── window.html │ │ ├── easyloader.js │ │ ├── jquery.easyui.min.js │ │ ├── licence_gpl.txt │ │ ├── license_commercial.txt │ │ ├── locale │ │ │ ├── easyui-lang-af.js │ │ │ ├── easyui-lang-bg.js │ │ │ ├── easyui-lang-ca.js │ │ │ ├── easyui-lang-cs.js │ │ │ ├── easyui-lang-cz.js │ │ │ ├── easyui-lang-da.js │ │ │ ├── easyui-lang-de.js │ │ │ ├── easyui-lang-en.js │ │ │ ├── easyui-lang-es.js │ │ │ ├── easyui-lang-fr.js │ │ │ ├── easyui-lang-it.js │ │ │ ├── easyui-lang-nl.js │ │ │ ├── easyui-lang-pt_BR.js │ │ │ ├── easyui-lang-ru.js │ │ │ ├── easyui-lang-tr.js │ │ │ ├── easyui-lang-zh_CN.js │ │ │ └── easyui-lang-zh_TW.js │ │ ├── plugins │ │ │ ├── jquery.accordion.js │ │ │ ├── jquery.calendar.js │ │ │ ├── jquery.combo.js │ │ │ ├── jquery.combobox.js │ │ │ ├── jquery.combogrid.js │ │ │ ├── jquery.combotree.js │ │ │ ├── jquery.datagrid.js │ │ │ ├── jquery.datebox.js │ │ │ ├── jquery.datetimebox.js │ │ │ ├── jquery.dialog.js │ │ │ ├── jquery.draggable.js │ │ │ ├── jquery.droppable.js │ │ │ ├── jquery.form.js │ │ │ ├── jquery.layout.js │ │ │ ├── jquery.linkbutton.js │ │ │ ├── jquery.menu.js │ │ │ ├── jquery.menubutton.js │ │ │ ├── jquery.messager.js │ │ │ ├── jquery.numberbox.js │ │ │ ├── jquery.numberspinner.js │ │ │ ├── jquery.pagination.js │ │ │ ├── jquery.panel.js │ │ │ ├── jquery.parser.js │ │ │ ├── jquery.progressbar.js │ │ │ ├── jquery.propertygrid.js │ │ │ ├── jquery.resizable.js │ │ │ ├── jquery.searchbox.js │ │ │ ├── jquery.slider.js │ │ │ ├── jquery.spinner.js │ │ │ ├── jquery.splitbutton.js │ │ │ ├── jquery.tabs.js │ │ │ ├── jquery.timespinner.js │ │ │ ├── jquery.tree.js │ │ │ ├── jquery.treegrid.js │ │ │ ├── jquery.validatebox.js │ │ │ └── jquery.window.js │ │ ├── readme.txt │ │ ├── src │ │ │ ├── easyloader.js │ │ │ ├── jquery.accordion.js │ │ │ ├── jquery.calendar.js │ │ │ ├── jquery.combobox.js │ │ │ ├── jquery.datebox.js │ │ │ ├── jquery.draggable.js │ │ │ ├── jquery.droppable.js │ │ │ ├── jquery.form.js │ │ │ ├── jquery.linkbutton.js │ │ │ ├── jquery.menu.js │ │ │ ├── jquery.parser.js │ │ │ ├── jquery.progressbar.js │ │ │ ├── jquery.propertygrid.js │ │ │ ├── jquery.resizable.js │ │ │ ├── jquery.slider.js │ │ │ ├── jquery.tabs.js │ │ │ └── jquery.window.js │ │ └── themes │ │ │ ├── default │ │ │ ├── accordion.css │ │ │ ├── calendar.css │ │ │ ├── combo.css │ │ │ ├── combobox.css │ │ │ ├── datagrid.css │ │ │ ├── datebox.css │ │ │ ├── dialog.css │ │ │ ├── easyui.css │ │ │ ├── images │ │ │ │ ├── accordion_collapse.png │ │ │ │ ├── accordion_expand.png │ │ │ │ ├── blank.gif │ │ │ │ ├── button_a_bg.gif │ │ │ │ ├── button_plain_hover.png │ │ │ │ ├── button_span_bg.gif │ │ │ │ ├── calendar_nextmonth.gif │ │ │ │ ├── calendar_nextyear.gif │ │ │ │ ├── calendar_prevmonth.gif │ │ │ │ ├── calendar_prevyear.gif │ │ │ │ ├── combo_arrow.gif │ │ │ │ ├── datagrid_header_bg.gif │ │ │ │ ├── datagrid_row_collapse.gif │ │ │ │ ├── datagrid_row_expand.gif │ │ │ │ ├── datagrid_sort_asc.gif │ │ │ │ ├── datagrid_sort_desc.gif │ │ │ │ ├── datagrid_title_bg.png │ │ │ │ ├── datebox_arrow.png │ │ │ │ ├── layout_arrows.png │ │ │ │ ├── menu.gif │ │ │ │ ├── menu_downarrow.png │ │ │ │ ├── menu_rightarrow.png │ │ │ │ ├── menu_sep.png │ │ │ │ ├── menu_split_downarrow.png │ │ │ │ ├── messager_error.gif │ │ │ │ ├── messager_info.gif │ │ │ │ ├── messager_question.gif │ │ │ │ ├── messager_warning.gif │ │ │ │ ├── pagination_first.gif │ │ │ │ ├── pagination_last.gif │ │ │ │ ├── pagination_load.png │ │ │ │ ├── pagination_loading.gif │ │ │ │ ├── pagination_next.gif │ │ │ │ ├── pagination_prev.gif │ │ │ │ ├── panel_loading.gif │ │ │ │ ├── panel_title.png │ │ │ │ ├── panel_tools.gif │ │ │ │ ├── searchbox_button.png │ │ │ │ ├── slider_handle.png │ │ │ │ ├── spinner_arrow_down.gif │ │ │ │ ├── spinner_arrow_up.gif │ │ │ │ ├── tabs_active.png │ │ │ │ ├── tabs_close.gif │ │ │ │ ├── tabs_enabled.png │ │ │ │ ├── tabs_leftarrow.png │ │ │ │ ├── tabs_rightarrow.png │ │ │ │ ├── tree_arrows.gif │ │ │ │ ├── tree_checkbox_0.gif │ │ │ │ ├── tree_checkbox_1.gif │ │ │ │ ├── tree_checkbox_2.gif │ │ │ │ ├── tree_dnd_no.png │ │ │ │ ├── tree_dnd_yes.png │ │ │ │ ├── tree_elbow.png │ │ │ │ ├── tree_file.gif │ │ │ │ ├── tree_folder.gif │ │ │ │ ├── tree_folder_open.gif │ │ │ │ ├── tree_loading.gif │ │ │ │ ├── validatebox_pointer.gif │ │ │ │ └── validatebox_warning.png │ │ │ ├── layout.css │ │ │ ├── linkbutton.css │ │ │ ├── menu.css │ │ │ ├── menubutton.css │ │ │ ├── messager.css │ │ │ ├── pagination.css │ │ │ ├── panel.css │ │ │ ├── progressbar.css │ │ │ ├── propertygrid.css │ │ │ ├── searchbox.css │ │ │ ├── slider.css │ │ │ ├── spinner.css │ │ │ ├── splitbutton.css │ │ │ ├── tabs.css │ │ │ ├── tree.css │ │ │ ├── validatebox.css │ │ │ └── window.css │ │ │ ├── gray │ │ │ ├── accordion.css │ │ │ ├── calendar.css │ │ │ ├── combo.css │ │ │ ├── combobox.css │ │ │ ├── datagrid.css │ │ │ ├── datebox.css │ │ │ ├── dialog.css │ │ │ ├── easyui.css │ │ │ ├── images │ │ │ │ ├── accordion_collapse.png │ │ │ │ ├── accordion_expand.png │ │ │ │ ├── blank.gif │ │ │ │ ├── button_a_bg.gif │ │ │ │ ├── button_plain_hover.png │ │ │ │ ├── button_span_bg.gif │ │ │ │ ├── calendar_nextmonth.gif │ │ │ │ ├── calendar_nextyear.gif │ │ │ │ ├── calendar_prevmonth.gif │ │ │ │ ├── calendar_prevyear.gif │ │ │ │ ├── combo_arrow.gif │ │ │ │ ├── datagrid_header_bg.gif │ │ │ │ ├── datagrid_row_collapse.gif │ │ │ │ ├── datagrid_row_expand.gif │ │ │ │ ├── datagrid_sort_asc.gif │ │ │ │ ├── datagrid_sort_desc.gif │ │ │ │ ├── datagrid_title_bg.gif │ │ │ │ ├── datebox_arrow.png │ │ │ │ ├── layout_arrows.png │ │ │ │ ├── menu.gif │ │ │ │ ├── menu_downarrow.png │ │ │ │ ├── menu_rightarrow.png │ │ │ │ ├── menu_sep.png │ │ │ │ ├── menu_split_downarrow.png │ │ │ │ ├── messager_error.gif │ │ │ │ ├── messager_info.gif │ │ │ │ ├── messager_question.gif │ │ │ │ ├── messager_warning.gif │ │ │ │ ├── pagination_first.gif │ │ │ │ ├── pagination_last.gif │ │ │ │ ├── pagination_load.png │ │ │ │ ├── pagination_loading.gif │ │ │ │ ├── pagination_next.gif │ │ │ │ ├── pagination_prev.gif │ │ │ │ ├── panel_loading.gif │ │ │ │ ├── panel_title.gif │ │ │ │ ├── panel_tools.gif │ │ │ │ ├── searchbox_button.png │ │ │ │ ├── slider_handle.png │ │ │ │ ├── spinner_arrow_down.gif │ │ │ │ ├── spinner_arrow_up.gif │ │ │ │ ├── tabs_close.gif │ │ │ │ ├── tabs_enabled.gif │ │ │ │ ├── tabs_leftarrow.png │ │ │ │ ├── tabs_rightarrow.png │ │ │ │ ├── tree_arrows.gif │ │ │ │ ├── tree_checkbox_0.gif │ │ │ │ ├── tree_checkbox_1.gif │ │ │ │ ├── tree_checkbox_2.gif │ │ │ │ ├── tree_dnd_no.png │ │ │ │ ├── tree_dnd_yes.png │ │ │ │ ├── tree_elbow.png │ │ │ │ ├── tree_file.gif │ │ │ │ ├── tree_folder.gif │ │ │ │ ├── tree_folder_open.gif │ │ │ │ ├── tree_loading.gif │ │ │ │ ├── validatebox_pointer.gif │ │ │ │ └── validatebox_warning.png │ │ │ ├── layout.css │ │ │ ├── linkbutton.css │ │ │ ├── menu.css │ │ │ ├── menubutton.css │ │ │ ├── messager.css │ │ │ ├── pagination.css │ │ │ ├── panel.css │ │ │ ├── progressbar.css │ │ │ ├── propertygrid.css │ │ │ ├── searchbox.css │ │ │ ├── slider.css │ │ │ ├── spinner.css │ │ │ ├── splitbutton.css │ │ │ ├── tabs.css │ │ │ ├── tree.css │ │ │ ├── validatebox.css │ │ │ └── window.css │ │ │ ├── icon.css │ │ │ ├── icons │ │ │ ├── back.png │ │ │ ├── blank.gif │ │ │ ├── cancel.png │ │ │ ├── cut.png │ │ │ ├── edit_add.png │ │ │ ├── edit_remove.png │ │ │ ├── filesave.png │ │ │ ├── help.png │ │ │ ├── mini_add.png │ │ │ ├── mini_edit.png │ │ │ ├── mini_refresh.png │ │ │ ├── no.png │ │ │ ├── ok.png │ │ │ ├── pencil.png │ │ │ ├── print.png │ │ │ ├── redo.png │ │ │ ├── reload.png │ │ │ ├── search.png │ │ │ ├── sum.png │ │ │ ├── tip.png │ │ │ └── undo.png │ │ │ └── metro │ │ │ ├── accordion.css │ │ │ ├── calendar.css │ │ │ ├── combo.css │ │ │ ├── combobox.css │ │ │ ├── datagrid.css │ │ │ ├── datebox.css │ │ │ ├── dialog.css │ │ │ ├── easyui.css │ │ │ ├── images │ │ │ ├── accordion_collapse.png │ │ │ ├── accordion_expand.png │ │ │ ├── blank.gif │ │ │ ├── calendar_nextmonth.gif │ │ │ ├── calendar_nextyear.gif │ │ │ ├── calendar_prevmonth.gif │ │ │ ├── calendar_prevyear.gif │ │ │ ├── combo_arrow.gif │ │ │ ├── datagrid_row_collapse.gif │ │ │ ├── datagrid_row_expand.gif │ │ │ ├── datagrid_sort_asc.gif │ │ │ ├── datagrid_sort_desc.gif │ │ │ ├── datebox_arrow.png │ │ │ ├── layout_arrows.png │ │ │ ├── menu_downarrow.png │ │ │ ├── menu_rightarrow.png │ │ │ ├── menu_sep.png │ │ │ ├── menu_split_downarrow.png │ │ │ ├── messager_error.gif │ │ │ ├── messager_info.gif │ │ │ ├── messager_question.gif │ │ │ ├── messager_warning.gif │ │ │ ├── pagination_first.gif │ │ │ ├── pagination_last.gif │ │ │ ├── pagination_load.png │ │ │ ├── pagination_loading.gif │ │ │ ├── pagination_next.gif │ │ │ ├── pagination_prev.gif │ │ │ ├── panel_loading.gif │ │ │ ├── panel_tools.gif │ │ │ ├── searchbox_button.png │ │ │ ├── slider_handle.png │ │ │ ├── tabs_close.gif │ │ │ ├── tabs_leftarrow.png │ │ │ ├── tabs_rightarrow.png │ │ │ ├── tree_arrows.gif │ │ │ ├── tree_checkbox_0.gif │ │ │ ├── tree_checkbox_1.gif │ │ │ ├── tree_checkbox_2.gif │ │ │ ├── tree_dnd_no.png │ │ │ ├── tree_dnd_yes.png │ │ │ ├── tree_elbow.png │ │ │ ├── tree_file.gif │ │ │ ├── tree_folder.gif │ │ │ ├── tree_folder_open.gif │ │ │ ├── tree_loading.gif │ │ │ └── validatebox_warning.png │ │ │ ├── layout.css │ │ │ ├── linkbutton.css │ │ │ ├── menu.css │ │ │ ├── menubutton.css │ │ │ ├── messager.css │ │ │ ├── pagination.css │ │ │ ├── panel.css │ │ │ ├── progressbar.css │ │ │ ├── propertygrid.css │ │ │ ├── searchbox.css │ │ │ ├── slider.css │ │ │ ├── splitbutton.css │ │ │ ├── tabs.css │ │ │ ├── tree.css │ │ │ ├── validatebox.css │ │ │ └── window.css │ ├── jquery-jtemplates.js │ ├── jquery.jqprint-0.3.js │ ├── jquery.json-2.4.min.js │ ├── kindeditor │ │ ├── asp.net │ │ │ ├── README.txt │ │ │ ├── demo.aspx │ │ │ ├── file_manager_json.ashx │ │ │ └── upload_json.ashx │ │ ├── examples │ │ │ ├── colorpicker.html │ │ │ ├── custom-plugin.html │ │ │ ├── custom-theme.html │ │ │ ├── default.html │ │ │ ├── dialog.html │ │ │ ├── dynamic-load.html │ │ │ ├── file-dialog.html │ │ │ ├── file-manager.html │ │ │ ├── filter-mode.html │ │ │ ├── image-dialog.html │ │ │ ├── index.css │ │ │ ├── index.html │ │ │ ├── jquery-ui.html │ │ │ ├── jquery.html │ │ │ ├── mootools.html │ │ │ ├── multi-image-dialog.html │ │ │ ├── multi-language.html │ │ │ ├── newline.html │ │ │ ├── node.html │ │ │ ├── paste-type.html │ │ │ ├── qqstyle.html │ │ │ ├── readonly.html │ │ │ ├── simple.html │ │ │ ├── total.html │ │ │ ├── uploadbutton.html │ │ │ ├── url-type.html │ │ │ └── word-count.html │ │ ├── jsp │ │ │ ├── README.txt │ │ │ ├── demo.jsp │ │ │ ├── file_manager_json.jsp │ │ │ ├── lib │ │ │ │ ├── commons-fileupload-1.2.1.jar │ │ │ │ ├── commons-io-1.4.jar │ │ │ │ └── json_simple-1.1.jar │ │ │ └── upload_json.jsp │ │ ├── kindeditor-min.js │ │ ├── kindeditor.js │ │ ├── lang │ │ │ ├── ar.js │ │ │ ├── en.js │ │ │ ├── zh_CN.js │ │ │ └── zh_TW.js │ │ ├── php │ │ │ ├── JSON.php │ │ │ ├── demo.php │ │ │ ├── file_manager_json.php │ │ │ └── upload_json.php │ │ ├── plugins │ │ │ ├── anchor │ │ │ │ └── anchor.js │ │ │ ├── baidumap │ │ │ │ ├── baidumap.js │ │ │ │ └── map.html │ │ │ ├── clearhtml │ │ │ │ └── clearhtml.js │ │ │ ├── code │ │ │ │ ├── code.js │ │ │ │ ├── prettify.css │ │ │ │ └── prettify.js │ │ │ ├── emoticons │ │ │ │ ├── emoticons.js │ │ │ │ └── images │ │ │ │ │ ├── 0.gif │ │ │ │ │ ├── 1.gif │ │ │ │ │ ├── 10.gif │ │ │ │ │ ├── 100.gif │ │ │ │ │ ├── 101.gif │ │ │ │ │ ├── 102.gif │ │ │ │ │ ├── 103.gif │ │ │ │ │ ├── 104.gif │ │ │ │ │ ├── 105.gif │ │ │ │ │ ├── 106.gif │ │ │ │ │ ├── 107.gif │ │ │ │ │ ├── 108.gif │ │ │ │ │ ├── 109.gif │ │ │ │ │ ├── 11.gif │ │ │ │ │ ├── 110.gif │ │ │ │ │ ├── 111.gif │ │ │ │ │ ├── 112.gif │ │ │ │ │ ├── 113.gif │ │ │ │ │ ├── 114.gif │ │ │ │ │ ├── 115.gif │ │ │ │ │ ├── 116.gif │ │ │ │ │ ├── 117.gif │ │ │ │ │ ├── 118.gif │ │ │ │ │ ├── 119.gif │ │ │ │ │ ├── 12.gif │ │ │ │ │ ├── 120.gif │ │ │ │ │ ├── 121.gif │ │ │ │ │ ├── 122.gif │ │ │ │ │ ├── 123.gif │ │ │ │ │ ├── 124.gif │ │ │ │ │ ├── 125.gif │ │ │ │ │ ├── 126.gif │ │ │ │ │ ├── 127.gif │ │ │ │ │ ├── 128.gif │ │ │ │ │ ├── 129.gif │ │ │ │ │ ├── 13.gif │ │ │ │ │ ├── 130.gif │ │ │ │ │ ├── 131.gif │ │ │ │ │ ├── 132.gif │ │ │ │ │ ├── 133.gif │ │ │ │ │ ├── 134.gif │ │ │ │ │ ├── 14.gif │ │ │ │ │ ├── 15.gif │ │ │ │ │ ├── 16.gif │ │ │ │ │ ├── 17.gif │ │ │ │ │ ├── 18.gif │ │ │ │ │ ├── 19.gif │ │ │ │ │ ├── 2.gif │ │ │ │ │ ├── 20.gif │ │ │ │ │ ├── 21.gif │ │ │ │ │ ├── 22.gif │ │ │ │ │ ├── 23.gif │ │ │ │ │ ├── 24.gif │ │ │ │ │ ├── 25.gif │ │ │ │ │ ├── 26.gif │ │ │ │ │ ├── 27.gif │ │ │ │ │ ├── 28.gif │ │ │ │ │ ├── 29.gif │ │ │ │ │ ├── 3.gif │ │ │ │ │ ├── 30.gif │ │ │ │ │ ├── 31.gif │ │ │ │ │ ├── 32.gif │ │ │ │ │ ├── 33.gif │ │ │ │ │ ├── 34.gif │ │ │ │ │ ├── 35.gif │ │ │ │ │ ├── 36.gif │ │ │ │ │ ├── 37.gif │ │ │ │ │ ├── 38.gif │ │ │ │ │ ├── 39.gif │ │ │ │ │ ├── 4.gif │ │ │ │ │ ├── 40.gif │ │ │ │ │ ├── 41.gif │ │ │ │ │ ├── 42.gif │ │ │ │ │ ├── 43.gif │ │ │ │ │ ├── 44.gif │ │ │ │ │ ├── 45.gif │ │ │ │ │ ├── 46.gif │ │ │ │ │ ├── 47.gif │ │ │ │ │ ├── 48.gif │ │ │ │ │ ├── 49.gif │ │ │ │ │ ├── 5.gif │ │ │ │ │ ├── 50.gif │ │ │ │ │ ├── 51.gif │ │ │ │ │ ├── 52.gif │ │ │ │ │ ├── 53.gif │ │ │ │ │ ├── 54.gif │ │ │ │ │ ├── 55.gif │ │ │ │ │ ├── 56.gif │ │ │ │ │ ├── 57.gif │ │ │ │ │ ├── 58.gif │ │ │ │ │ ├── 59.gif │ │ │ │ │ ├── 6.gif │ │ │ │ │ ├── 60.gif │ │ │ │ │ ├── 61.gif │ │ │ │ │ ├── 62.gif │ │ │ │ │ ├── 63.gif │ │ │ │ │ ├── 64.gif │ │ │ │ │ ├── 65.gif │ │ │ │ │ ├── 66.gif │ │ │ │ │ ├── 67.gif │ │ │ │ │ ├── 68.gif │ │ │ │ │ ├── 69.gif │ │ │ │ │ ├── 7.gif │ │ │ │ │ ├── 70.gif │ │ │ │ │ ├── 71.gif │ │ │ │ │ ├── 72.gif │ │ │ │ │ ├── 73.gif │ │ │ │ │ ├── 74.gif │ │ │ │ │ ├── 75.gif │ │ │ │ │ ├── 76.gif │ │ │ │ │ ├── 77.gif │ │ │ │ │ ├── 78.gif │ │ │ │ │ ├── 79.gif │ │ │ │ │ ├── 8.gif │ │ │ │ │ ├── 80.gif │ │ │ │ │ ├── 81.gif │ │ │ │ │ ├── 82.gif │ │ │ │ │ ├── 83.gif │ │ │ │ │ ├── 84.gif │ │ │ │ │ ├── 85.gif │ │ │ │ │ ├── 86.gif │ │ │ │ │ ├── 87.gif │ │ │ │ │ ├── 88.gif │ │ │ │ │ ├── 89.gif │ │ │ │ │ ├── 9.gif │ │ │ │ │ ├── 90.gif │ │ │ │ │ ├── 91.gif │ │ │ │ │ ├── 92.gif │ │ │ │ │ ├── 93.gif │ │ │ │ │ ├── 94.gif │ │ │ │ │ ├── 95.gif │ │ │ │ │ ├── 96.gif │ │ │ │ │ ├── 97.gif │ │ │ │ │ ├── 98.gif │ │ │ │ │ ├── 99.gif │ │ │ │ │ └── static.gif │ │ │ ├── filemanager │ │ │ │ ├── filemanager.js │ │ │ │ └── images │ │ │ │ │ ├── file-16.gif │ │ │ │ │ ├── file-64.gif │ │ │ │ │ ├── folder-16.gif │ │ │ │ │ ├── folder-64.gif │ │ │ │ │ └── go-up.gif │ │ │ ├── flash │ │ │ │ └── flash.js │ │ │ ├── image │ │ │ │ ├── image.js │ │ │ │ └── images │ │ │ │ │ ├── align_left.gif │ │ │ │ │ ├── align_right.gif │ │ │ │ │ ├── align_top.gif │ │ │ │ │ └── refresh.png │ │ │ ├── insertfile │ │ │ │ └── insertfile.js │ │ │ ├── lineheight │ │ │ │ └── lineheight.js │ │ │ ├── link │ │ │ │ └── link.js │ │ │ ├── map │ │ │ │ ├── map.html │ │ │ │ └── map.js │ │ │ ├── media │ │ │ │ └── media.js │ │ │ ├── multiimage │ │ │ │ ├── images │ │ │ │ │ ├── image.png │ │ │ │ │ ├── select-files-en.png │ │ │ │ │ ├── select-files-zh_CN.png │ │ │ │ │ └── swfupload.swf │ │ │ │ └── multiimage.js │ │ │ ├── pagebreak │ │ │ │ └── pagebreak.js │ │ │ ├── plainpaste │ │ │ │ └── plainpaste.js │ │ │ ├── preview │ │ │ │ └── preview.js │ │ │ ├── quickformat │ │ │ │ └── quickformat.js │ │ │ ├── table │ │ │ │ └── table.js │ │ │ ├── template │ │ │ │ ├── html │ │ │ │ │ ├── 1.html │ │ │ │ │ ├── 2.html │ │ │ │ │ └── 3.html │ │ │ │ └── template.js │ │ │ └── wordpaste │ │ │ │ └── wordpaste.js │ │ └── themes │ │ │ ├── common │ │ │ ├── anchor.gif │ │ │ ├── blank.gif │ │ │ ├── flash.gif │ │ │ ├── loading.gif │ │ │ ├── media.gif │ │ │ └── rm.gif │ │ │ ├── default │ │ │ ├── background.png │ │ │ ├── default.css │ │ │ └── default.png │ │ │ ├── qq │ │ │ ├── editor.gif │ │ │ └── qq.css │ │ │ └── simple │ │ │ └── simple.css │ ├── loadFile.js │ ├── lte-ie7.js │ ├── print.js │ ├── print │ │ ├── LodopFuncs.js │ │ ├── _chosen │ │ │ ├── chosen-sprite.png │ │ │ ├── chosen.css │ │ │ └── chosen.jquery.js │ │ ├── jquery-1.7.1.min.js │ │ └── jquery.jqprint-0.3.js │ ├── quickPrint.js │ └── validation.js │ └── packages.config ├── LMS.Web ├── LMS.Models │ ├── App.config │ ├── AutoMapperProfile.cs │ ├── Category │ │ └── CategoryModel.cs │ ├── Country │ │ └── CountryModel.cs │ ├── CustomerOrderInfo │ │ └── CustomerOrderInfosModel.cs │ ├── DictionaryType │ │ └── DictionaryTypeModel.cs │ ├── FeeManage │ │ ├── FeeManageParamModel.cs │ │ └── FeeTypeModel.cs │ ├── LMS.Models.csproj │ ├── Menu.cs │ ├── PagedCollection.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SearchFilter.cs │ └── packages.config ├── LMS.Web.Common │ ├── Class1.cs │ ├── LMS.Web.Common.csproj │ └── Properties │ │ └── AssemblyInfo.cs ├── LighTake.LMS.Web.Framework │ ├── App.config │ ├── Engine │ │ ├── DependencyRegistrar.cs │ │ └── GrouponDependencyResolver.cs │ ├── Extension │ │ ├── ButtonPermissionValidatorAttribute.cs │ │ └── LMSPagerHelper.cs │ ├── Global.cs │ ├── LighTake.LMS.Web.Framework.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── WorkContext.cs │ └── packages.config └── LighTake.LMS.Web │ ├── Css │ ├── Ajax_loading.css │ ├── CheckStand.css │ ├── Dropdownlist.css │ ├── Faile.wav │ ├── ShowBigPic.css │ ├── Site.css │ ├── Success.wav │ ├── Success2.wav │ ├── buy-sale-base.css │ ├── login.css │ ├── pager.css │ ├── print.css │ ├── public.css │ └── publics.css │ ├── Global.asax │ ├── HtmlPage1.html │ ├── Images │ ├── Print │ │ ├── DHL │ │ │ └── logo.jpg │ │ ├── NLPOST │ │ │ ├── Logo_09.jpg │ │ │ ├── SF-logo.jpg │ │ │ ├── logo3.jpg │ │ │ ├── logo_03.jpg │ │ │ └── logo_06.jpg │ │ ├── TNT │ │ │ ├── postnl.jpg │ │ │ ├── priority.jpg │ │ │ └── selec.jpg │ │ ├── logo.png │ │ └── widgetlove.jpg │ ├── SF-logo.jpg │ ├── background.png │ ├── backimg1.png │ ├── backimg2.png │ ├── backimg3.png │ ├── backimg4.png │ ├── backimg5.png │ ├── cancel.png │ ├── datePicker.gif │ ├── delete_2.png │ ├── downarrow.jpg │ ├── edit_add.png │ ├── edit_remove.png │ ├── exclamation.png │ ├── fancy_nav_left.png │ ├── fancy_nav_right.png │ ├── filesave.png │ ├── loader.gif │ ├── loader1.gif │ ├── loading.jpg │ ├── login_2.png │ ├── login_bg.png │ ├── login_middle_img.png │ ├── logo_03.gif │ ├── logo_07.gif │ ├── logo_10.gif │ ├── logo_17.gif │ ├── main_img.png │ ├── main_img6.png │ ├── menu.png │ ├── menu_arrow.png │ ├── menu_l.png │ ├── menu_l_selected.png │ ├── menu_minus.png │ ├── menu_plus.png │ ├── menu_r.png │ ├── menu_r_selected.png │ ├── minus.png │ ├── noImage.jpg │ ├── pencil_edit.png │ ├── plus.png │ ├── quick_l.png │ ├── quick_r.png │ ├── save_diskette_floppy_disk.png │ ├── tick.png │ ├── title_link.png │ └── title_tab_selected.png │ ├── Infrastructure │ └── WebDependencyRegistrar.cs │ ├── LighTake.LMS.Web.csproj │ ├── Scripts │ ├── Ajax_loading.js │ ├── MicrosoftAjax.debug.js │ ├── MicrosoftAjax.js │ ├── MicrosoftMvcAjax.debug.js │ ├── MicrosoftMvcAjax.js │ ├── MicrosoftMvcValidation.debug.js │ ├── MicrosoftMvcValidation.js │ ├── QuickPrint.js │ ├── artdialog │ │ ├── jquery.artDialog.js │ │ ├── plugins │ │ │ └── iframeTools.js │ │ └── skins │ │ │ ├── default.css │ │ │ └── icons │ │ │ ├── error.png │ │ │ ├── face-sad.png │ │ │ ├── face-smile.png │ │ │ ├── loading.gif │ │ │ ├── question.png │ │ │ ├── succeed.png │ │ │ └── warning.png │ ├── chosen │ │ ├── chosen-sprite.png │ │ ├── chosen.css │ │ ├── chosen.jquery.min.js │ │ └── chosen.proto.min.js │ ├── common.js │ ├── dis_js.js │ ├── dropdownlist.js │ ├── easyloader.js │ ├── easyui-public.js │ ├── iCarousel.js │ ├── jq1.4.js │ ├── jquery-1.4.2.min.js │ ├── jquery-1.7.1.intellisense.js │ ├── jquery-1.7.1.js │ ├── jquery-1.7.1.min.js │ ├── jquery-1.8.0.js │ ├── jquery-1.8.0.min.js │ ├── jquery-easyui-1.3.1 │ │ ├── changelog.txt │ │ ├── demo │ │ │ ├── accordion.html │ │ │ ├── calendar.html │ │ │ ├── combo.html │ │ │ ├── combobox.html │ │ │ ├── combobox_data.json │ │ │ ├── combogrid.html │ │ │ ├── combotree.html │ │ │ ├── datagrid.html │ │ │ ├── datagrid2.html │ │ │ ├── datagrid3.html │ │ │ ├── datagrid4.html │ │ │ ├── datagrid5.html │ │ │ ├── datagrid_data.json │ │ │ ├── datagrid_data2.json │ │ │ ├── datagrid_data3.json │ │ │ ├── datebox.html │ │ │ ├── datetimebox.html │ │ │ ├── demo.css │ │ │ ├── dialog.html │ │ │ ├── draggable.html │ │ │ ├── droppable.html │ │ │ ├── droppable1.html │ │ │ ├── droppable2.html │ │ │ ├── easyloader.html │ │ │ ├── form.html │ │ │ ├── form_data.json │ │ │ ├── layout.html │ │ │ ├── layout1.html │ │ │ ├── layout2.html │ │ │ ├── linkbutton.html │ │ │ ├── menu.html │ │ │ ├── menubutton.html │ │ │ ├── messager.html │ │ │ ├── numberbox.html │ │ │ ├── numberbox2.html │ │ │ ├── numberspinner.html │ │ │ ├── pagination.html │ │ │ ├── panel.html │ │ │ ├── panel2.html │ │ │ ├── progressbar.html │ │ │ ├── propertygrid.html │ │ │ ├── propertygrid_data.json │ │ │ ├── resizable.html │ │ │ ├── searchbox.html │ │ │ ├── slider.html │ │ │ ├── splitbutton.html │ │ │ ├── tabs.html │ │ │ ├── tabs_href_test.html │ │ │ ├── timespinner.html │ │ │ ├── tree.html │ │ │ ├── tree2.html │ │ │ ├── tree_data.json │ │ │ ├── treegrid.html │ │ │ ├── treegrid2.html │ │ │ ├── treegrid3.html │ │ │ ├── treegrid_data.json │ │ │ ├── treegrid_data2.json │ │ │ ├── treegrid_data3.json │ │ │ ├── treegrid_subdata.json │ │ │ ├── validatebox.html │ │ │ └── window.html │ │ ├── easyloader.js │ │ ├── jquery.easyui.min.js │ │ ├── licence_gpl.txt │ │ ├── license_commercial.txt │ │ ├── locale │ │ │ ├── easyui-lang-af.js │ │ │ ├── easyui-lang-bg.js │ │ │ ├── easyui-lang-ca.js │ │ │ ├── easyui-lang-cs.js │ │ │ ├── easyui-lang-cz.js │ │ │ ├── easyui-lang-da.js │ │ │ ├── easyui-lang-de.js │ │ │ ├── easyui-lang-en.js │ │ │ ├── easyui-lang-es.js │ │ │ ├── easyui-lang-fr.js │ │ │ ├── easyui-lang-it.js │ │ │ ├── easyui-lang-nl.js │ │ │ ├── easyui-lang-pt_BR.js │ │ │ ├── easyui-lang-ru.js │ │ │ ├── easyui-lang-tr.js │ │ │ ├── easyui-lang-zh_CN.js │ │ │ └── easyui-lang-zh_TW.js │ │ ├── plugins │ │ │ ├── jquery.accordion.js │ │ │ ├── jquery.calendar.js │ │ │ ├── jquery.combo.js │ │ │ ├── jquery.combobox.js │ │ │ ├── jquery.combogrid.js │ │ │ ├── jquery.combotree.js │ │ │ ├── jquery.datagrid.js │ │ │ ├── jquery.datebox.js │ │ │ ├── jquery.datetimebox.js │ │ │ ├── jquery.dialog.js │ │ │ ├── jquery.draggable.js │ │ │ ├── jquery.droppable.js │ │ │ ├── jquery.form.js │ │ │ ├── jquery.layout.js │ │ │ ├── jquery.linkbutton.js │ │ │ ├── jquery.menu.js │ │ │ ├── jquery.menubutton.js │ │ │ ├── jquery.messager.js │ │ │ ├── jquery.numberbox.js │ │ │ ├── jquery.numberspinner.js │ │ │ ├── jquery.pagination.js │ │ │ ├── jquery.panel.js │ │ │ ├── jquery.parser.js │ │ │ ├── jquery.progressbar.js │ │ │ ├── jquery.propertygrid.js │ │ │ ├── jquery.resizable.js │ │ │ ├── jquery.searchbox.js │ │ │ ├── jquery.slider.js │ │ │ ├── jquery.spinner.js │ │ │ ├── jquery.splitbutton.js │ │ │ ├── jquery.tabs.js │ │ │ ├── jquery.timespinner.js │ │ │ ├── jquery.tree.js │ │ │ ├── jquery.treegrid.js │ │ │ ├── jquery.validatebox.js │ │ │ └── jquery.window.js │ │ ├── readme.txt │ │ ├── src │ │ │ ├── easyloader.js │ │ │ ├── jquery.accordion.js │ │ │ ├── jquery.calendar.js │ │ │ ├── jquery.combobox.js │ │ │ ├── jquery.datebox.js │ │ │ ├── jquery.draggable.js │ │ │ ├── jquery.droppable.js │ │ │ ├── jquery.form.js │ │ │ ├── jquery.linkbutton.js │ │ │ ├── jquery.menu.js │ │ │ ├── jquery.parser.js │ │ │ ├── jquery.progressbar.js │ │ │ ├── jquery.propertygrid.js │ │ │ ├── jquery.resizable.js │ │ │ ├── jquery.slider.js │ │ │ ├── jquery.tabs.js │ │ │ └── jquery.window.js │ │ └── themes │ │ │ ├── default │ │ │ ├── accordion.css │ │ │ ├── calendar.css │ │ │ ├── combo.css │ │ │ ├── combobox.css │ │ │ ├── datagrid.css │ │ │ ├── datebox.css │ │ │ ├── dialog.css │ │ │ ├── easyui.css │ │ │ ├── images │ │ │ │ ├── accordion_collapse.png │ │ │ │ ├── accordion_expand.png │ │ │ │ ├── blank.gif │ │ │ │ ├── button_a_bg.gif │ │ │ │ ├── button_plain_hover.png │ │ │ │ ├── button_span_bg.gif │ │ │ │ ├── calendar_nextmonth.gif │ │ │ │ ├── calendar_nextyear.gif │ │ │ │ ├── calendar_prevmonth.gif │ │ │ │ ├── calendar_prevyear.gif │ │ │ │ ├── combo_arrow.gif │ │ │ │ ├── datagrid_header_bg.gif │ │ │ │ ├── datagrid_row_collapse.gif │ │ │ │ ├── datagrid_row_expand.gif │ │ │ │ ├── datagrid_sort_asc.gif │ │ │ │ ├── datagrid_sort_desc.gif │ │ │ │ ├── datagrid_title_bg.png │ │ │ │ ├── datebox_arrow.png │ │ │ │ ├── layout_arrows.png │ │ │ │ ├── menu.gif │ │ │ │ ├── menu_downarrow.png │ │ │ │ ├── menu_rightarrow.png │ │ │ │ ├── menu_sep.png │ │ │ │ ├── menu_split_downarrow.png │ │ │ │ ├── messager_error.gif │ │ │ │ ├── messager_info.gif │ │ │ │ ├── messager_question.gif │ │ │ │ ├── messager_warning.gif │ │ │ │ ├── pagination_first.gif │ │ │ │ ├── pagination_last.gif │ │ │ │ ├── pagination_load.png │ │ │ │ ├── pagination_loading.gif │ │ │ │ ├── pagination_next.gif │ │ │ │ ├── pagination_prev.gif │ │ │ │ ├── panel_loading.gif │ │ │ │ ├── panel_title.png │ │ │ │ ├── panel_tools.gif │ │ │ │ ├── searchbox_button.png │ │ │ │ ├── slider_handle.png │ │ │ │ ├── spinner_arrow_down.gif │ │ │ │ ├── spinner_arrow_up.gif │ │ │ │ ├── tabs_active.png │ │ │ │ ├── tabs_close.gif │ │ │ │ ├── tabs_enabled.png │ │ │ │ ├── tabs_leftarrow.png │ │ │ │ ├── tabs_rightarrow.png │ │ │ │ ├── tree_arrows.gif │ │ │ │ ├── tree_checkbox_0.gif │ │ │ │ ├── tree_checkbox_1.gif │ │ │ │ ├── tree_checkbox_2.gif │ │ │ │ ├── tree_dnd_no.png │ │ │ │ ├── tree_dnd_yes.png │ │ │ │ ├── tree_elbow.png │ │ │ │ ├── tree_file.gif │ │ │ │ ├── tree_folder.gif │ │ │ │ ├── tree_folder_open.gif │ │ │ │ ├── tree_loading.gif │ │ │ │ ├── validatebox_pointer.gif │ │ │ │ └── validatebox_warning.png │ │ │ ├── layout.css │ │ │ ├── linkbutton.css │ │ │ ├── menu.css │ │ │ ├── menubutton.css │ │ │ ├── messager.css │ │ │ ├── pagination.css │ │ │ ├── panel.css │ │ │ ├── progressbar.css │ │ │ ├── propertygrid.css │ │ │ ├── searchbox.css │ │ │ ├── slider.css │ │ │ ├── spinner.css │ │ │ ├── splitbutton.css │ │ │ ├── tabs.css │ │ │ ├── tree.css │ │ │ ├── validatebox.css │ │ │ └── window.css │ │ │ ├── gray │ │ │ ├── accordion.css │ │ │ ├── calendar.css │ │ │ ├── combo.css │ │ │ ├── combobox.css │ │ │ ├── datagrid.css │ │ │ ├── datebox.css │ │ │ ├── dialog.css │ │ │ ├── easyui.css │ │ │ ├── images │ │ │ │ ├── accordion_collapse.png │ │ │ │ ├── accordion_expand.png │ │ │ │ ├── blank.gif │ │ │ │ ├── button_a_bg.gif │ │ │ │ ├── button_plain_hover.png │ │ │ │ ├── button_span_bg.gif │ │ │ │ ├── calendar_nextmonth.gif │ │ │ │ ├── calendar_nextyear.gif │ │ │ │ ├── calendar_prevmonth.gif │ │ │ │ ├── calendar_prevyear.gif │ │ │ │ ├── combo_arrow.gif │ │ │ │ ├── datagrid_header_bg.gif │ │ │ │ ├── datagrid_row_collapse.gif │ │ │ │ ├── datagrid_row_expand.gif │ │ │ │ ├── datagrid_sort_asc.gif │ │ │ │ ├── datagrid_sort_desc.gif │ │ │ │ ├── datagrid_title_bg.gif │ │ │ │ ├── datebox_arrow.png │ │ │ │ ├── layout_arrows.png │ │ │ │ ├── menu.gif │ │ │ │ ├── menu_downarrow.png │ │ │ │ ├── menu_rightarrow.png │ │ │ │ ├── menu_sep.png │ │ │ │ ├── menu_split_downarrow.png │ │ │ │ ├── messager_error.gif │ │ │ │ ├── messager_info.gif │ │ │ │ ├── messager_question.gif │ │ │ │ ├── messager_warning.gif │ │ │ │ ├── pagination_first.gif │ │ │ │ ├── pagination_last.gif │ │ │ │ ├── pagination_load.png │ │ │ │ ├── pagination_loading.gif │ │ │ │ ├── pagination_next.gif │ │ │ │ ├── pagination_prev.gif │ │ │ │ ├── panel_loading.gif │ │ │ │ ├── panel_title.gif │ │ │ │ ├── panel_tools.gif │ │ │ │ ├── searchbox_button.png │ │ │ │ ├── slider_handle.png │ │ │ │ ├── spinner_arrow_down.gif │ │ │ │ ├── spinner_arrow_up.gif │ │ │ │ ├── tabs_close.gif │ │ │ │ ├── tabs_enabled.gif │ │ │ │ ├── tabs_leftarrow.png │ │ │ │ ├── tabs_rightarrow.png │ │ │ │ ├── tree_arrows.gif │ │ │ │ ├── tree_checkbox_0.gif │ │ │ │ ├── tree_checkbox_1.gif │ │ │ │ ├── tree_checkbox_2.gif │ │ │ │ ├── tree_dnd_no.png │ │ │ │ ├── tree_dnd_yes.png │ │ │ │ ├── tree_elbow.png │ │ │ │ ├── tree_file.gif │ │ │ │ ├── tree_folder.gif │ │ │ │ ├── tree_folder_open.gif │ │ │ │ ├── tree_loading.gif │ │ │ │ ├── validatebox_pointer.gif │ │ │ │ └── validatebox_warning.png │ │ │ ├── layout.css │ │ │ ├── linkbutton.css │ │ │ ├── menu.css │ │ │ ├── menubutton.css │ │ │ ├── messager.css │ │ │ ├── pagination.css │ │ │ ├── panel.css │ │ │ ├── progressbar.css │ │ │ ├── propertygrid.css │ │ │ ├── searchbox.css │ │ │ ├── slider.css │ │ │ ├── spinner.css │ │ │ ├── splitbutton.css │ │ │ ├── tabs.css │ │ │ ├── tree.css │ │ │ ├── validatebox.css │ │ │ └── window.css │ │ │ ├── icon.css │ │ │ ├── icons │ │ │ ├── back.png │ │ │ ├── blank.gif │ │ │ ├── cancel.png │ │ │ ├── cut.png │ │ │ ├── edit_add.png │ │ │ ├── edit_remove.png │ │ │ ├── filesave.png │ │ │ ├── help.png │ │ │ ├── mini_add.png │ │ │ ├── mini_edit.png │ │ │ ├── mini_refresh.png │ │ │ ├── no.png │ │ │ ├── ok.png │ │ │ ├── pencil.png │ │ │ ├── print.png │ │ │ ├── redo.png │ │ │ ├── reload.png │ │ │ ├── search.png │ │ │ ├── sum.png │ │ │ ├── tip.png │ │ │ └── undo.png │ │ │ └── metro │ │ │ ├── accordion.css │ │ │ ├── calendar.css │ │ │ ├── combo.css │ │ │ ├── combobox.css │ │ │ ├── datagrid.css │ │ │ ├── datebox.css │ │ │ ├── dialog.css │ │ │ ├── easyui.css │ │ │ ├── images │ │ │ ├── accordion_collapse.png │ │ │ ├── accordion_expand.png │ │ │ ├── blank.gif │ │ │ ├── calendar_nextmonth.gif │ │ │ ├── calendar_nextyear.gif │ │ │ ├── calendar_prevmonth.gif │ │ │ ├── calendar_prevyear.gif │ │ │ ├── combo_arrow.gif │ │ │ ├── datagrid_row_collapse.gif │ │ │ ├── datagrid_row_expand.gif │ │ │ ├── datagrid_sort_asc.gif │ │ │ ├── datagrid_sort_desc.gif │ │ │ ├── datebox_arrow.png │ │ │ ├── layout_arrows.png │ │ │ ├── menu_downarrow.png │ │ │ ├── menu_rightarrow.png │ │ │ ├── menu_sep.png │ │ │ ├── menu_split_downarrow.png │ │ │ ├── messager_error.gif │ │ │ ├── messager_info.gif │ │ │ ├── messager_question.gif │ │ │ ├── messager_warning.gif │ │ │ ├── pagination_first.gif │ │ │ ├── pagination_last.gif │ │ │ ├── pagination_load.png │ │ │ ├── pagination_loading.gif │ │ │ ├── pagination_next.gif │ │ │ ├── pagination_prev.gif │ │ │ ├── panel_loading.gif │ │ │ ├── panel_tools.gif │ │ │ ├── searchbox_button.png │ │ │ ├── slider_handle.png │ │ │ ├── tabs_close.gif │ │ │ ├── tabs_leftarrow.png │ │ │ ├── tabs_rightarrow.png │ │ │ ├── tree_arrows.gif │ │ │ ├── tree_checkbox_0.gif │ │ │ ├── tree_checkbox_1.gif │ │ │ ├── tree_checkbox_2.gif │ │ │ ├── tree_dnd_no.png │ │ │ ├── tree_dnd_yes.png │ │ │ ├── tree_elbow.png │ │ │ ├── tree_file.gif │ │ │ ├── tree_folder.gif │ │ │ ├── tree_folder_open.gif │ │ │ ├── tree_loading.gif │ │ │ └── validatebox_warning.png │ │ │ ├── layout.css │ │ │ ├── linkbutton.css │ │ │ ├── menu.css │ │ │ ├── menubutton.css │ │ │ ├── messager.css │ │ │ ├── pagination.css │ │ │ ├── panel.css │ │ │ ├── progressbar.css │ │ │ ├── propertygrid.css │ │ │ ├── searchbox.css │ │ │ ├── slider.css │ │ │ ├── splitbutton.css │ │ │ ├── tabs.css │ │ │ ├── tree.css │ │ │ ├── validatebox.css │ │ │ └── window.css │ ├── jquery-ui-1.8.20.js │ ├── jquery-ui-1.8.20.min.js │ ├── jquery-ui │ │ ├── combobox.js │ │ ├── jquery-ui.css │ │ ├── jquery.ui.autocomplete.js │ │ ├── jquery.ui.autocomplete.min.css │ │ ├── jquery.ui.button.js │ │ ├── jquery.ui.core.js │ │ ├── jquery.ui.menu.js │ │ ├── jquery.ui.position.js │ │ ├── jquery.ui.tooltip.js │ │ └── jquery.ui.widget.js │ ├── jquery.extend.js │ ├── jquery.json-2.4.min.js │ ├── jquery.tmpl.min.js │ ├── jquery.unobtrusive-ajax.js │ ├── jquery.unobtrusive-ajax.min.js │ ├── jquery.validate-vsdoc.js │ ├── jquery.validate.js │ ├── jquery.validate.min.js │ ├── jquery.validate.unobtrusive.js │ ├── jquery.validate.unobtrusive.min.js │ ├── kindeditor │ │ ├── asp.net │ │ │ ├── README.txt │ │ │ ├── demo.aspx │ │ │ ├── file_manager_json.ashx │ │ │ └── upload_json.ashx │ │ ├── examples │ │ │ ├── colorpicker.html │ │ │ ├── custom-plugin.html │ │ │ ├── custom-theme.html │ │ │ ├── default.html │ │ │ ├── dialog.html │ │ │ ├── dynamic-load.html │ │ │ ├── file-dialog.html │ │ │ ├── file-manager.html │ │ │ ├── filter-mode.html │ │ │ ├── image-dialog.html │ │ │ ├── index.css │ │ │ ├── index.html │ │ │ ├── jquery-ui.html │ │ │ ├── jquery.html │ │ │ ├── mootools.html │ │ │ ├── multi-image-dialog.html │ │ │ ├── multi-language.html │ │ │ ├── newline.html │ │ │ ├── node.html │ │ │ ├── paste-type.html │ │ │ ├── qqstyle.html │ │ │ ├── readonly.html │ │ │ ├── simple.html │ │ │ ├── total.html │ │ │ ├── uploadbutton.html │ │ │ ├── url-type.html │ │ │ └── word-count.html │ │ ├── jsp │ │ │ ├── README.txt │ │ │ ├── demo.jsp │ │ │ ├── file_manager_json.jsp │ │ │ ├── lib │ │ │ │ ├── commons-fileupload-1.2.1.jar │ │ │ │ ├── commons-io-1.4.jar │ │ │ │ └── json_simple-1.1.jar │ │ │ └── upload_json.jsp │ │ ├── kindeditor-min.js │ │ ├── kindeditor.js │ │ ├── lang │ │ │ ├── ar.js │ │ │ ├── en.js │ │ │ ├── zh_CN.js │ │ │ └── zh_TW.js │ │ ├── php │ │ │ ├── JSON.php │ │ │ ├── demo.php │ │ │ ├── file_manager_json.php │ │ │ └── upload_json.php │ │ ├── plugins │ │ │ ├── anchor │ │ │ │ └── anchor.js │ │ │ ├── baidumap │ │ │ │ ├── baidumap.js │ │ │ │ └── map.html │ │ │ ├── clearhtml │ │ │ │ └── clearhtml.js │ │ │ ├── code │ │ │ │ ├── code.js │ │ │ │ ├── prettify.css │ │ │ │ └── prettify.js │ │ │ ├── emoticons │ │ │ │ ├── emoticons.js │ │ │ │ └── images │ │ │ │ │ ├── 0.gif │ │ │ │ │ ├── 1.gif │ │ │ │ │ ├── 10.gif │ │ │ │ │ ├── 100.gif │ │ │ │ │ ├── 101.gif │ │ │ │ │ ├── 102.gif │ │ │ │ │ ├── 103.gif │ │ │ │ │ ├── 104.gif │ │ │ │ │ ├── 105.gif │ │ │ │ │ ├── 106.gif │ │ │ │ │ ├── 107.gif │ │ │ │ │ ├── 108.gif │ │ │ │ │ ├── 109.gif │ │ │ │ │ ├── 11.gif │ │ │ │ │ ├── 110.gif │ │ │ │ │ ├── 111.gif │ │ │ │ │ ├── 112.gif │ │ │ │ │ ├── 113.gif │ │ │ │ │ ├── 114.gif │ │ │ │ │ ├── 115.gif │ │ │ │ │ ├── 116.gif │ │ │ │ │ ├── 117.gif │ │ │ │ │ ├── 118.gif │ │ │ │ │ ├── 119.gif │ │ │ │ │ ├── 12.gif │ │ │ │ │ ├── 120.gif │ │ │ │ │ ├── 121.gif │ │ │ │ │ ├── 122.gif │ │ │ │ │ ├── 123.gif │ │ │ │ │ ├── 124.gif │ │ │ │ │ ├── 125.gif │ │ │ │ │ ├── 126.gif │ │ │ │ │ ├── 127.gif │ │ │ │ │ ├── 128.gif │ │ │ │ │ ├── 129.gif │ │ │ │ │ ├── 13.gif │ │ │ │ │ ├── 130.gif │ │ │ │ │ ├── 131.gif │ │ │ │ │ ├── 132.gif │ │ │ │ │ ├── 133.gif │ │ │ │ │ ├── 134.gif │ │ │ │ │ ├── 14.gif │ │ │ │ │ ├── 15.gif │ │ │ │ │ ├── 16.gif │ │ │ │ │ ├── 17.gif │ │ │ │ │ ├── 18.gif │ │ │ │ │ ├── 19.gif │ │ │ │ │ ├── 2.gif │ │ │ │ │ ├── 20.gif │ │ │ │ │ ├── 21.gif │ │ │ │ │ ├── 22.gif │ │ │ │ │ ├── 23.gif │ │ │ │ │ ├── 24.gif │ │ │ │ │ ├── 25.gif │ │ │ │ │ ├── 26.gif │ │ │ │ │ ├── 27.gif │ │ │ │ │ ├── 28.gif │ │ │ │ │ ├── 29.gif │ │ │ │ │ ├── 3.gif │ │ │ │ │ ├── 30.gif │ │ │ │ │ ├── 31.gif │ │ │ │ │ ├── 32.gif │ │ │ │ │ ├── 33.gif │ │ │ │ │ ├── 34.gif │ │ │ │ │ ├── 35.gif │ │ │ │ │ ├── 36.gif │ │ │ │ │ ├── 37.gif │ │ │ │ │ ├── 38.gif │ │ │ │ │ ├── 39.gif │ │ │ │ │ ├── 4.gif │ │ │ │ │ ├── 40.gif │ │ │ │ │ ├── 41.gif │ │ │ │ │ ├── 42.gif │ │ │ │ │ ├── 43.gif │ │ │ │ │ ├── 44.gif │ │ │ │ │ ├── 45.gif │ │ │ │ │ ├── 46.gif │ │ │ │ │ ├── 47.gif │ │ │ │ │ ├── 48.gif │ │ │ │ │ ├── 49.gif │ │ │ │ │ ├── 5.gif │ │ │ │ │ ├── 50.gif │ │ │ │ │ ├── 51.gif │ │ │ │ │ ├── 52.gif │ │ │ │ │ ├── 53.gif │ │ │ │ │ ├── 54.gif │ │ │ │ │ ├── 55.gif │ │ │ │ │ ├── 56.gif │ │ │ │ │ ├── 57.gif │ │ │ │ │ ├── 58.gif │ │ │ │ │ ├── 59.gif │ │ │ │ │ ├── 6.gif │ │ │ │ │ ├── 60.gif │ │ │ │ │ ├── 61.gif │ │ │ │ │ ├── 62.gif │ │ │ │ │ ├── 63.gif │ │ │ │ │ ├── 64.gif │ │ │ │ │ ├── 65.gif │ │ │ │ │ ├── 66.gif │ │ │ │ │ ├── 67.gif │ │ │ │ │ ├── 68.gif │ │ │ │ │ ├── 69.gif │ │ │ │ │ ├── 7.gif │ │ │ │ │ ├── 70.gif │ │ │ │ │ ├── 71.gif │ │ │ │ │ ├── 72.gif │ │ │ │ │ ├── 73.gif │ │ │ │ │ ├── 74.gif │ │ │ │ │ ├── 75.gif │ │ │ │ │ ├── 76.gif │ │ │ │ │ ├── 77.gif │ │ │ │ │ ├── 78.gif │ │ │ │ │ ├── 79.gif │ │ │ │ │ ├── 8.gif │ │ │ │ │ ├── 80.gif │ │ │ │ │ ├── 81.gif │ │ │ │ │ ├── 82.gif │ │ │ │ │ ├── 83.gif │ │ │ │ │ ├── 84.gif │ │ │ │ │ ├── 85.gif │ │ │ │ │ ├── 86.gif │ │ │ │ │ ├── 87.gif │ │ │ │ │ ├── 88.gif │ │ │ │ │ ├── 89.gif │ │ │ │ │ ├── 9.gif │ │ │ │ │ ├── 90.gif │ │ │ │ │ ├── 91.gif │ │ │ │ │ ├── 92.gif │ │ │ │ │ ├── 93.gif │ │ │ │ │ ├── 94.gif │ │ │ │ │ ├── 95.gif │ │ │ │ │ ├── 96.gif │ │ │ │ │ ├── 97.gif │ │ │ │ │ ├── 98.gif │ │ │ │ │ ├── 99.gif │ │ │ │ │ └── static.gif │ │ │ ├── filemanager │ │ │ │ ├── filemanager.js │ │ │ │ └── images │ │ │ │ │ ├── file-16.gif │ │ │ │ │ ├── file-64.gif │ │ │ │ │ ├── folder-16.gif │ │ │ │ │ ├── folder-64.gif │ │ │ │ │ └── go-up.gif │ │ │ ├── flash │ │ │ │ └── flash.js │ │ │ ├── image │ │ │ │ ├── image.js │ │ │ │ └── images │ │ │ │ │ ├── align_left.gif │ │ │ │ │ ├── align_right.gif │ │ │ │ │ ├── align_top.gif │ │ │ │ │ └── refresh.png │ │ │ ├── insertfile │ │ │ │ └── insertfile.js │ │ │ ├── lineheight │ │ │ │ └── lineheight.js │ │ │ ├── link │ │ │ │ └── link.js │ │ │ ├── map │ │ │ │ ├── map.html │ │ │ │ └── map.js │ │ │ ├── media │ │ │ │ └── media.js │ │ │ ├── multiimage │ │ │ │ ├── images │ │ │ │ │ ├── image.png │ │ │ │ │ ├── select-files-en.png │ │ │ │ │ ├── select-files-zh_CN.png │ │ │ │ │ └── swfupload.swf │ │ │ │ └── multiimage.js │ │ │ ├── pagebreak │ │ │ │ └── pagebreak.js │ │ │ ├── plainpaste │ │ │ │ └── plainpaste.js │ │ │ ├── preview │ │ │ │ └── preview.js │ │ │ ├── quickformat │ │ │ │ └── quickformat.js │ │ │ ├── table │ │ │ │ └── table.js │ │ │ ├── template │ │ │ │ ├── html │ │ │ │ │ ├── 1.html │ │ │ │ │ ├── 2.html │ │ │ │ │ └── 3.html │ │ │ │ └── template.js │ │ │ └── wordpaste │ │ │ │ └── wordpaste.js │ │ └── themes │ │ │ ├── common │ │ │ ├── anchor.gif │ │ │ ├── blank.gif │ │ │ ├── flash.gif │ │ │ ├── loading.gif │ │ │ ├── media.gif │ │ │ └── rm.gif │ │ │ ├── default │ │ │ ├── background.png │ │ │ ├── default.css │ │ │ └── default.png │ │ │ ├── qq │ │ │ ├── editor.gif │ │ │ └── qq.css │ │ │ └── simple │ │ │ └── simple.css │ ├── liger │ │ ├── images │ │ │ ├── loading.gif │ │ │ ├── top.jpg │ │ │ └── topicon.gif │ │ ├── jquery-validation │ │ │ ├── jquery.metadata.js │ │ │ ├── jquery.validate.min.js │ │ │ ├── messages_cn.js │ │ │ └── version.txt │ │ ├── jquery │ │ │ ├── jquery-1.3.2.min.js │ │ │ ├── jquery-1.4.4.min.js │ │ │ └── jquery-1.5.2.min.js │ │ ├── json2.js │ │ └── liger │ │ │ ├── js │ │ │ ├── core │ │ │ │ ├── base.js │ │ │ │ └── inject.js │ │ │ ├── ligerui.all.js │ │ │ ├── ligerui.min.js │ │ │ └── plugins │ │ │ │ ├── ligerAccordion.js │ │ │ │ ├── ligerButton.js │ │ │ │ ├── ligerCheckBox.js │ │ │ │ ├── ligerCheckBoxList.js │ │ │ │ ├── ligerComboBox.js │ │ │ │ ├── ligerDateEditor.js │ │ │ │ ├── ligerDialog.js │ │ │ │ ├── ligerDrag.js │ │ │ │ ├── ligerEasyTab.js │ │ │ │ ├── ligerFilter.js │ │ │ │ ├── ligerForm.js │ │ │ │ ├── ligerGrid.js │ │ │ │ ├── ligerLayout.js │ │ │ │ ├── ligerListBox.js │ │ │ │ ├── ligerMenu.js │ │ │ │ ├── ligerMenuBar.js │ │ │ │ ├── ligerMessageBox.js │ │ │ │ ├── ligerPopupEdit.js │ │ │ │ ├── ligerRadio.js │ │ │ │ ├── ligerRadioList.js │ │ │ │ ├── ligerResizable.js │ │ │ │ ├── ligerSpinner.js │ │ │ │ ├── ligerTab.js │ │ │ │ ├── ligerTextBox.js │ │ │ │ ├── ligerTip.js │ │ │ │ ├── ligerToolBar.js │ │ │ │ ├── ligerTree.js │ │ │ │ └── ligerWindow.js │ │ │ └── skins │ │ │ ├── Aqua │ │ │ ├── css │ │ │ │ ├── ligerui-all.css │ │ │ │ ├── ligerui-common.css │ │ │ │ ├── ligerui-dialog.css │ │ │ │ ├── ligerui-form.css │ │ │ │ ├── ligerui-grid.css │ │ │ │ ├── ligerui-layout.css │ │ │ │ ├── ligerui-menu.css │ │ │ │ ├── ligerui-tab.css │ │ │ │ └── ligerui-tree.css │ │ │ └── images │ │ │ │ ├── common │ │ │ │ ├── bigloading.gif │ │ │ │ ├── button-disabled.gif │ │ │ │ ├── button-over.gif │ │ │ │ ├── button.gif │ │ │ │ ├── drop-icons.gif │ │ │ │ ├── exclamation.gif │ │ │ │ ├── invalid-line.gif │ │ │ │ ├── loading.gif │ │ │ │ ├── table.png │ │ │ │ └── toggle.gif │ │ │ │ ├── controls │ │ │ │ ├── bg-panel-title-over.gif │ │ │ │ ├── bg-panel-title-pressed.gif │ │ │ │ ├── bg-panel-title.gif │ │ │ │ ├── bg-tab-title-over.gif │ │ │ │ ├── bg-tab-title-pressed.gif │ │ │ │ ├── bg-tab-title.gif │ │ │ │ ├── bg-text.gif │ │ │ │ ├── bg-trigger-over.gif │ │ │ │ ├── bg-trigger-pressed.gif │ │ │ │ ├── bg-trigger.gif │ │ │ │ ├── btn-l.gif │ │ │ │ ├── btn-r.gif │ │ │ │ ├── btn.gif │ │ │ │ ├── button-bg-over.gif │ │ │ │ ├── button-bg.gif │ │ │ │ ├── checkbox.gif │ │ │ │ ├── dateeditor-bar-bg.gif │ │ │ │ ├── dateeditor-header-bg.gif │ │ │ │ └── radio.gif │ │ │ │ ├── dateeditor │ │ │ │ ├── date.gif │ │ │ │ ├── icon-first.gif │ │ │ │ ├── icon-last.gif │ │ │ │ ├── icon-next.gif │ │ │ │ └── icon-prev.gif │ │ │ │ ├── form │ │ │ │ └── verify-corner.gif │ │ │ │ ├── grid │ │ │ │ ├── grid-checkbox-checked.gif │ │ │ │ ├── grid-checkbox.gif │ │ │ │ ├── grid-detail-close.gif │ │ │ │ ├── grid-detail-open.gif │ │ │ │ ├── grid-tree-close.gif │ │ │ │ ├── grid-tree-open.gif │ │ │ │ ├── header-bg-over.gif │ │ │ │ ├── header-bg.gif │ │ │ │ ├── header2-bg.jpg │ │ │ │ ├── popup-line.gif │ │ │ │ └── popup-row-over.gif │ │ │ │ ├── icon │ │ │ │ ├── bar-button-over.gif │ │ │ │ ├── checkbox-checked.gif │ │ │ │ ├── checkbox.gif │ │ │ │ ├── cross.gif │ │ │ │ ├── icon-close-over.gif │ │ │ │ ├── icon-close.gif │ │ │ │ ├── icon-down.gif │ │ │ │ ├── icon-drop.gif │ │ │ │ ├── icon-edited.gif │ │ │ │ ├── icon-first.gif │ │ │ │ ├── icon-last.gif │ │ │ │ ├── icon-line.gif │ │ │ │ ├── icon-load.gif │ │ │ │ ├── icon-next.gif │ │ │ │ ├── icon-prev.gif │ │ │ │ ├── icon-select.gif │ │ │ │ ├── icon-sort-asc.gif │ │ │ │ ├── icon-sort-desc.gif │ │ │ │ ├── icon-unselect.gif │ │ │ │ └── icon-up.gif │ │ │ │ ├── layout │ │ │ │ ├── accordion-content.gif │ │ │ │ ├── accordion-header-over.gif │ │ │ │ ├── accordion-header.gif │ │ │ │ ├── layout-header-over.gif │ │ │ │ ├── layout-header.gif │ │ │ │ ├── layout-sidebar-header.gif │ │ │ │ ├── mini-bottom.gif │ │ │ │ ├── mini-left.gif │ │ │ │ ├── mini-right.gif │ │ │ │ ├── mini-top.gif │ │ │ │ ├── panel-content.gif │ │ │ │ ├── panel-header-over.gif │ │ │ │ ├── panel-header.gif │ │ │ │ ├── tabs-bg.gif │ │ │ │ ├── tabs-item-bg.gif │ │ │ │ ├── tabs-item-left-bg.gif │ │ │ │ ├── tabs-item-over-bg.gif │ │ │ │ ├── tabs-item-right-bg.gif │ │ │ │ ├── tabs-tools.gif │ │ │ │ └── togglebar.gif │ │ │ │ ├── menu │ │ │ │ ├── menu-item-arrow.gif │ │ │ │ ├── menu-item-down.gif │ │ │ │ ├── menu-item-over-l.gif │ │ │ │ ├── menu-item-over-m.gif │ │ │ │ ├── menu-item-over-r.gif │ │ │ │ ├── menu-line-x.gif │ │ │ │ └── menu-line-y.gif │ │ │ │ ├── panel │ │ │ │ ├── bar-bg.gif │ │ │ │ ├── header-bg.gif │ │ │ │ ├── header-bg.jpg │ │ │ │ ├── header2-bg.jpg │ │ │ │ ├── panel-btn-l.gif │ │ │ │ ├── panel-btn-r.gif │ │ │ │ ├── panel-btn.gif │ │ │ │ ├── panel-header.gif │ │ │ │ ├── panel-menu-item-down.gif │ │ │ │ ├── panel-menu.gif │ │ │ │ ├── panel-toolbar.gif │ │ │ │ └── panel-tools.gif │ │ │ │ ├── tree │ │ │ │ ├── folder-open.gif │ │ │ │ ├── folder.gif │ │ │ │ ├── loading.gif │ │ │ │ ├── tree-leaf.gif │ │ │ │ ├── tree-level.gif │ │ │ │ ├── tree-noline.gif │ │ │ │ ├── tree-status-close.gif │ │ │ │ ├── tree-status-open.gif │ │ │ │ ├── tree-status.gif │ │ │ │ └── tree.gif │ │ │ │ └── win │ │ │ │ ├── box-icons.gif │ │ │ │ ├── box.gif │ │ │ │ ├── dialog-bc.gif │ │ │ │ ├── dialog-icons.gif │ │ │ │ ├── dialog-tc.gif │ │ │ │ ├── dialog-winbtns.gif │ │ │ │ ├── dialog.gif │ │ │ │ ├── taskbar-task.gif │ │ │ │ ├── taskbar.gif │ │ │ │ ├── taskbar.png │ │ │ │ └── taskicon.gif │ │ │ ├── Gray │ │ │ ├── css │ │ │ │ ├── all.css │ │ │ │ ├── common.css │ │ │ │ ├── dialog.css │ │ │ │ ├── form.css │ │ │ │ ├── grid.css │ │ │ │ ├── layout.css │ │ │ │ └── tab.css │ │ │ └── images │ │ │ │ ├── layout │ │ │ │ ├── accordion-header.gif │ │ │ │ ├── icon-close-over.gif │ │ │ │ ├── icon-close.gif │ │ │ │ ├── layout-header.gif │ │ │ │ ├── tabs-bg.gif │ │ │ │ ├── tabs-item-bg.gif │ │ │ │ ├── tabs-item-left-bg.gif │ │ │ │ ├── tabs-item-left-selected.gif │ │ │ │ ├── tabs-item-right-bg.gif │ │ │ │ ├── tabs-item-right-selected.gif │ │ │ │ ├── tabs-item-selected.gif │ │ │ │ └── togglebar.gif │ │ │ │ ├── ui │ │ │ │ ├── btn.gif │ │ │ │ ├── button-disabled.gif │ │ │ │ ├── button-over.gif │ │ │ │ ├── button.gif │ │ │ │ ├── button1.gif │ │ │ │ ├── button2.gif │ │ │ │ ├── dateeditor-bar.gif │ │ │ │ ├── dateeditor-btn-over.gif │ │ │ │ ├── dateeditor-btn.gif │ │ │ │ ├── dateeditor-thead.gif │ │ │ │ ├── grid-detail-close.gif │ │ │ │ ├── grid-detail-open.gif │ │ │ │ ├── gridalt.gif │ │ │ │ ├── gridbar.jpg │ │ │ │ ├── grideditor.gif │ │ │ │ ├── icon-down.gif │ │ │ │ ├── icon-select.gif │ │ │ │ ├── icon-unselect.gif │ │ │ │ ├── icon-up.gif │ │ │ │ ├── input.gif │ │ │ │ ├── inputdisabled.gif │ │ │ │ ├── loading.gif │ │ │ │ ├── loading2.gif │ │ │ │ └── trigger.gif │ │ │ │ └── win │ │ │ │ ├── dialog-winbtns.gif │ │ │ │ ├── dialogbtn.gif │ │ │ │ └── dialogicon.gif │ │ │ ├── Silvery │ │ │ ├── css │ │ │ │ ├── form.css │ │ │ │ ├── grid.css │ │ │ │ ├── layout.css │ │ │ │ └── style.css │ │ │ └── images │ │ │ │ ├── form │ │ │ │ ├── checkboxradio.gif │ │ │ │ ├── icon-down-over.gif │ │ │ │ ├── icon-down.gif │ │ │ │ ├── icon-up-over.gif │ │ │ │ ├── icon-up.gif │ │ │ │ ├── invalid_line.gif │ │ │ │ ├── text-date-icon.gif │ │ │ │ ├── text-down-icon.gif │ │ │ │ ├── text-focus.gif │ │ │ │ ├── text-l-focus.gif │ │ │ │ ├── text-l-over.gif │ │ │ │ ├── text-l.gif │ │ │ │ ├── text-over.gif │ │ │ │ ├── text-r-focus.gif │ │ │ │ ├── text-r-over.gif │ │ │ │ ├── text-r.gif │ │ │ │ └── text.gif │ │ │ │ ├── grid │ │ │ │ └── gridheaderbg.jpg │ │ │ │ └── layout │ │ │ │ ├── accordion-header-over.jpg │ │ │ │ ├── accordion-header.jpg │ │ │ │ ├── layout-header-over.jpg │ │ │ │ ├── layout-header.jpg │ │ │ │ ├── tabs-bg.jpg │ │ │ │ ├── tabs-item-bg.jpg │ │ │ │ ├── tabs-item-left-bg.gif │ │ │ │ ├── tabs-item-over-bg.gif │ │ │ │ ├── tabs-item-right-bg.gif │ │ │ │ └── tabs-tools.gif │ │ │ ├── icons │ │ │ ├── add.gif │ │ │ ├── archives.gif │ │ │ ├── attibutes.gif │ │ │ ├── back.gif │ │ │ ├── bluebook.gif │ │ │ ├── bookpen.gif │ │ │ ├── busy.gif │ │ │ ├── calendar.gif │ │ │ ├── candle.gif │ │ │ ├── coffee.gif │ │ │ ├── comment.gif │ │ │ ├── communication.gif │ │ │ ├── config.gif │ │ │ ├── customers.gif │ │ │ ├── cut.gif │ │ │ ├── database.gif │ │ │ ├── delete.gif │ │ │ ├── discuss.gif │ │ │ ├── down.gif │ │ │ ├── edit.gif │ │ │ ├── graywarn.gif │ │ │ ├── greenwarn.gif │ │ │ ├── help.gif │ │ │ ├── home.gif │ │ │ ├── lock.gif │ │ │ ├── logout.gif │ │ │ ├── mailbox.gif │ │ │ ├── memeber.gif │ │ │ ├── modify.gif │ │ │ ├── msn.gif │ │ │ ├── myaccount.gif │ │ │ ├── ok.gif │ │ │ ├── outbox.gif │ │ │ ├── pager.gif │ │ │ ├── photograph.gif │ │ │ ├── plus.gif │ │ │ ├── prev.gif │ │ │ ├── print.gif │ │ │ ├── process.gif │ │ │ ├── qq.gif │ │ │ ├── refresh.gif │ │ │ ├── right.gif │ │ │ ├── role.gif │ │ │ ├── save-disabled.gif │ │ │ ├── save.gif │ │ │ ├── search.gif │ │ │ ├── search2.gif │ │ │ ├── settings.gif │ │ │ ├── true.gif │ │ │ ├── up.gif │ │ │ └── 新建 Microsoft Office Excel 工作表.xlsx │ │ │ └── ligerui-icons.css │ ├── modernizr-2.5.3.js │ ├── my97DatePicker │ │ ├── My97DatePicker.htm │ │ ├── WdatePicker.js │ │ ├── calendar.js │ │ ├── config.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 │ │ └── 开发包 │ │ │ ├── lang │ │ │ ├── en.js │ │ │ ├── zh-cn.js │ │ │ └── zh-tw.js │ │ │ ├── readme.txt │ │ │ └── skin │ │ │ ├── WdatePicker.css │ │ │ ├── datePicker.gif │ │ │ ├── default │ │ │ ├── datepicker.css │ │ │ └── img.gif │ │ │ └── whyGreen │ │ │ ├── bg.jpg │ │ │ ├── datepicker.css │ │ │ └── img.gif │ ├── order.js │ ├── print │ │ ├── LodopFuncs.js │ │ ├── clipboard.swf │ │ └── jquery.jqprint-0.3.js │ ├── quotation.js │ ├── smooth.menu.js │ ├── tojson.js │ ├── uploadify │ │ ├── jquery.uploadify.js │ │ ├── jquery.uploadify.min.js │ │ ├── upload.jpg │ │ ├── uploadify-cancel.png │ │ ├── uploadify.css │ │ └── uploadify.swf │ └── util.js │ ├── Views │ ├── Common │ │ ├── LeftNavigation.cshtml │ │ ├── SelectCountry.cshtml │ │ └── TopMenu.cshtml │ ├── Customer │ │ ├── Add.cshtml │ │ ├── CustomerAmountRecordList.cshtml │ │ ├── CustomerRecharge.cshtml │ │ ├── CustomerRechargeList.cshtml │ │ ├── Edit.cshtml │ │ ├── List.cshtml │ │ ├── SelectList.cshtml │ │ ├── SelectListInfo.cshtml │ │ └── SelectReceivingExpenseList.cshtml │ ├── FeeManage │ │ ├── Add.cshtml │ │ ├── Edit.cshtml │ │ └── List.cshtml │ ├── Financial │ │ ├── AddOrEditDeliveryDeviation.cshtml │ │ ├── AuditAnomaly.cshtml │ │ ├── ChargePayAnalyseList.cshtml │ │ ├── DeliveryCostDetailsReview.cshtml │ │ ├── DeliveryDeviation.cshtml │ │ ├── DeliveryFeeAnomalyEdit.cshtml │ │ ├── DeliveryFeeAnomalyList.cshtml │ │ ├── DeliveryFeeExpressAnomalyEdit.cshtml │ │ ├── DeliveryFeeExpressAnomalyList.cshtml │ │ ├── DeliveryFeeVectorExcelUpload.cshtml │ │ ├── DeliveryFeeWaitAudit.cshtml │ │ ├── DeliveryPartialView.cshtml │ │ ├── ExpressDeliveryExeclUpload.cshtml │ │ ├── ExpressDeliveryFeeList.cshtml │ │ ├── ExpressDeliveryFeePartialList.cshtml │ │ ├── ExpressDeliveryImportWaitAduitPartList.cshtml │ │ ├── InFeeInfoAuditList.cshtml │ │ ├── JobErrorLogInfo.cshtml │ │ ├── ReceivingBillList.cshtml │ │ ├── ReceivingExpensesEdit.cshtml │ │ └── ReceivingExpensesList.cshtml │ ├── Fub │ │ ├── BagTagPrint.cshtml │ │ ├── CenterSelectList.cshtml │ │ ├── EditTime.cshtml │ │ ├── ExchangeBag.cshtml │ │ ├── ExchangeBagLogList.cshtml │ │ ├── ExchangeBagMainPost.cshtml │ │ ├── FubSelectList.cshtml │ │ ├── FuzhouSelectList.cshtml │ │ ├── HoldList.cshtml │ │ ├── LogFlightNumberList.cshtml │ │ ├── PackageExchangeBag.cshtml │ │ ├── ReturnBagLogList.cshtml │ │ └── ReturnGoods.cshtml │ ├── News │ │ ├── News.cshtml │ │ ├── NewsAdd.cshtml │ │ └── NewsEdit.cshtml │ ├── OperationLog │ │ ├── Index.cshtml │ │ └── SelectModuleName.cshtml │ ├── Order │ │ ├── List.cshtml │ │ └── Upload.cshtml │ ├── Print │ │ ├── DHLPrintPreview.cshtml │ │ ├── DHLPrintPreview_1.cshtml │ │ ├── InvoicePrinter.cshtml │ │ ├── LithuaniaPrintView.cshtml │ │ ├── NetherlandsParcelPreview.cshtml │ │ ├── PrintPreview.cshtml │ │ ├── Printer.cshtml │ │ ├── _InvoicePrinter.cshtml │ │ └── _PrintList.cshtml │ ├── Security │ │ └── AccessDenied.cshtml │ ├── Settlement │ │ ├── CheckStand.cshtml │ │ ├── NoSettlementList.cshtml │ │ ├── SettlementDetail.cshtml │ │ ├── SettlementInfoList.cshtml │ │ └── SettlementSummary.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ ├── Header.Menu.cshtml │ │ ├── Header.cshtml │ │ ├── _Layout.cshtml │ │ ├── _MINIPROFILER UPDATED Layout.cshtml │ │ ├── _Notifications.cshtml │ │ └── _ShowDialog.cshtml │ ├── User │ │ ├── Home │ │ │ └── Index.cshtml │ │ └── Login.cshtml │ ├── WayBill │ │ ├── AbnormalWayBillList.cshtml │ │ ├── AddOrEditWeightCompare.cshtml │ │ ├── AddWayBillTemplate.cshtml │ │ ├── B2CPreAlterList.cshtml │ │ ├── CountryList.cshtml │ │ ├── DHLPrintPreview.cshtml │ │ ├── DHLPrintPreview2.cshtml │ │ ├── Detail.cshtml │ │ ├── EditTime.cshtml │ │ ├── EditTotalPackageTime.cshtml │ │ ├── ExpressPrintWayBillList.cshtml │ │ ├── ExpressWayBillInfoList.cshtml │ │ ├── FastInStorage.cshtml │ │ ├── FastOutStorage.cshtml │ │ ├── FilterOutShippingMethod.cshtml │ │ ├── FilterShippingMethod.cshtml │ │ ├── FristInStorage.cshtml │ │ ├── FristOutStorage.cshtml │ │ ├── InFeeInfoList.cshtml │ │ ├── InStorageDetail.cshtml │ │ ├── InStorageList.cshtml │ │ ├── InStorageSyncErrorList.cshtml │ │ ├── InStorageWeightAbnormal.cshtml │ │ ├── InStorageWeightCompare.cshtml │ │ ├── InvoicePrinter.cshtml │ │ ├── List.cshtml │ │ ├── ModifWayBillDetail.cshtml │ │ ├── NewSelectVender.cshtml │ │ ├── NewTrackingNumber.cshtml │ │ ├── NoForecastAbnormalList.cshtml │ │ ├── OutFeeInfoList.cshtml │ │ ├── OutStorageDetail.cshtml │ │ ├── OutStorageList.cshtml │ │ ├── OutStorageShippinMethodConfigure.cshtml │ │ ├── PrintPreview.cshtml │ │ ├── Printer.cshtml │ │ ├── QuickPrint.cshtml │ │ ├── ReturnAuditList.cshtml │ │ ├── ReturnWayBillList.cshtml │ │ ├── SelectCountry.cshtml │ │ ├── SelectOutShippingMethod.cshtml │ │ ├── SelectShippingMethod.cshtml │ │ ├── SelectShippingMethodInfo.cshtml │ │ ├── SelectTrackingNumber.cshtml │ │ ├── SelectVender.cshtml │ │ ├── SelectVenderInfo.cshtml │ │ ├── ShippingWayBillList.cshtml │ │ ├── TrackList.cshtml │ │ ├── TrackingNumberDetail.cshtml │ │ ├── TrackingNumberList.cshtml │ │ ├── UpdateOutStorageInfo.cshtml │ │ ├── UpdateReturnAudit.cshtml │ │ ├── WayBillExcelExportList.cshtml │ │ ├── WayBillInfosDetail.cshtml │ │ ├── WayBillSummary.cshtml │ │ ├── WayBillTemplateInfoList.cshtml │ │ ├── WayBillTemplateInfoPreview.cshtml │ │ ├── WayBillTemplateList.cshtml │ │ ├── WayBillTemplatePreview.cshtml │ │ ├── WayBillTemplateSave.cshtml │ │ ├── WaybillInfoUpdate.cshtml │ │ ├── _InvoicePrinter.cshtml │ │ └── _PrintTNTOrder.cshtml │ ├── Web.config │ ├── Website │ │ ├── AddCategory.cshtml │ │ ├── CategoryList.cshtml │ │ └── EditCategory.cshtml │ └── _ViewStart.cshtml │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ └── packages.config ├── LMS.WebAPI.API └── LMS.WebAPI.Client │ ├── ApiControllerBase.cs │ ├── App_Start │ ├── BundleConfig.cs │ ├── FilterConfig.cs │ ├── RouteConfig.cs │ └── WebApiConfig.cs │ ├── Controllers │ ├── LmsController.cs │ └── WayBillController.cs │ ├── Global.asax │ ├── Global.asax.cs │ ├── Handler │ ├── GlobalConfig.cs │ └── HttpAuthenticationHandler.cs │ ├── Helper │ ├── CommonMethodHelper.cs │ ├── ErrorCodeHelper.cs │ └── ModelComparer.cs │ ├── IOC │ └── DependencyRegistrar.cs │ ├── LMS.WebAPI.Client.csproj │ ├── Models │ ├── AutoMapperProfile.cs │ ├── CountryModel.cs │ ├── CustomerModel.cs │ ├── GoodsTypeModel.cs │ ├── OrderModel.cs │ ├── PriceModel.cs │ ├── ShippingMethodModel.cs │ ├── WayBillInfoModel.cs │ └── WayBillModel.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── PublishProfiles │ │ └── aa.pubxml │ ├── Resource.Designer.cs │ ├── Resource.resx │ └── Resources.resx │ ├── Response.cs │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ ├── WorkContext.cs │ └── packages.config ├── LMS.WebAPI ├── App_Start │ └── WebApiConfig.cs ├── Controllers │ ├── ApiController.cs │ ├── ClientUpdateController.cs │ ├── LmsController.cs │ ├── TestController.cs │ └── WayBillController.cs ├── Global.asax ├── Global.asax.cs ├── IOC │ └── LMSWebAPIDependencyRegistrar.cs ├── LMS.WebAPI.csproj ├── Model │ ├── AutoMapperProfile.cs │ ├── CustomerInStorageModel.cs │ ├── CustomerModel.cs │ ├── FeeInfoModel.cs │ ├── InFeeTotalInfoExtModel.cs │ ├── InStorageFormModel.cs │ ├── InStorageInfoModel.cs │ ├── InStorageInfoModelDetailViewModel.cs │ ├── InStorageModel.cs │ ├── InStorageSaveModel.cs │ ├── InStorageWayBillModel.cs │ ├── LoginModel.cs │ ├── ResponseResult.cs │ ├── UserModel.cs │ ├── WayBillInfoModel.cs │ ├── WayBillInfoSaveModel.cs │ ├── WayBillModel.cs │ └── WaybillPackageDetailModel.cs ├── Properties │ ├── AssemblyInfo.cs │ └── PublishProfiles │ │ └── siteconfig.pubxml ├── Web.Debug.config ├── Web.Release.config ├── Web.config ├── WorkContext.cs └── packages.config ├── LMS.WebApi.Client.Test ├── App.config ├── Controllers │ ├── GetLabelPrintController.cs │ ├── LmsController.cs │ └── WayBillController.cs ├── LMS.WebApi.Client.Test.csproj ├── Properties │ └── AssemblyInfo.cs ├── ServiceHttpResponse │ └── HttpResponseTests.cs ├── UnitTest1.cs └── packages.config ├── LMS.WinForm.Framework ├── App.config ├── Engine │ └── DependencyRegistrar.cs ├── LMS.WinForm.Framework.csproj ├── Properties │ └── AssemblyInfo.cs └── packages.config ├── LMS.WinForm ├── LMS.Client.QuickPrint │ ├── Common │ │ ├── IEPrintHelper.cs │ │ ├── Wuyi.Common.HttpRequestUnit.cs │ │ └── Wuyi.Common.HttpServer.cs │ ├── LMS.Client.QuickPrint.csproj │ ├── MainForm.Designer.cs │ ├── MainForm.cs │ ├── MainForm.resx │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── app.config ├── LMS.Client.Setup │ ├── LMS.Client.Setup.isl │ └── LMS.Client.Setup.isproj ├── LMS.Client.WeightHelper │ ├── Common │ │ ├── WeightReader.cs │ │ └── Wuyi.Common.HttpServer.cs │ ├── LMS.Client.WeightHelper.csproj │ ├── MainForm.Designer.cs │ ├── MainForm.cs │ ├── MainForm.resx │ ├── Program.cs │ └── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings ├── LMS.WinForm.Client │ ├── App.config │ ├── Common │ │ ├── GlobalConfig.cs │ │ ├── HttpHelper.cs │ │ ├── IEPrintHelper.cs │ │ ├── IniFileHelper.cs │ │ ├── InvokeWebApiHelper.cs │ │ ├── LoginHelper.cs │ │ ├── SoundPaly.cs │ │ ├── WeightReader.cs │ │ ├── Wuyi.Common.HttpRequestUnit.cs │ │ └── Wuyi.Common.HttpServer.cs │ ├── Customer │ │ ├── CustomerList.Designer.cs │ │ ├── CustomerList.cs │ │ └── CustomerList.resx │ ├── FileConfig.ini │ ├── FrmAbout.Designer.cs │ ├── FrmAbout.cs │ ├── FrmAbout.resx │ ├── FrmLogin.Designer.cs │ ├── FrmLogin.cs │ ├── FrmLogin.resx │ ├── FrmMain.Designer.cs │ ├── FrmMain.cs │ ├── FrmMain.resx │ ├── FrmPrintSetting.Designer.cs │ ├── FrmPrintSetting.cs │ ├── FrmPrintSetting.resx │ ├── FrmScaleSetting.Designer.cs │ ├── FrmScaleSetting.cs │ ├── FrmScaleSetting.resx │ ├── LMS.WinForm.Client.csproj │ ├── Models │ │ ├── CustomerInStorageModel.cs │ │ ├── CustomerInfoPackageRequest.cs │ │ ├── CustomerModel.cs │ │ ├── InFeeTotalInfoExtModel.cs │ │ ├── InStorageFormModel.cs │ │ ├── InStorageInfoModel.cs │ │ ├── InStorageInfoModelDetailViewModel.cs │ │ ├── InStorageModel.cs │ │ ├── InStorageRequestFormModel.cs │ │ ├── InStorageSaveModel.cs │ │ ├── InStorageWayBillModel.cs │ │ ├── LoginModel.cs │ │ ├── PackageRequest.cs │ │ ├── PriceProviderDetail.cs │ │ ├── PriceProviderExtResult.cs │ │ ├── PriceProviderResult.cs │ │ ├── ResponseResultModel.cs │ │ ├── UserModel.cs │ │ ├── VendersModel.cs │ │ ├── WayBillInfoModel.cs │ │ ├── WayBillInfoSaveModel.cs │ │ └── WaybillPackageDetailModel.cs │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Resource │ │ ├── Faile.wav │ │ ├── InstorageLable.frx │ │ ├── PackageLable.frx │ │ ├── Success.wav │ │ ├── Success2.wav │ │ ├── connecting.gif │ │ ├── loading.gif │ │ ├── logo4.png │ │ └── 打印使用说明.txt │ ├── Storage │ │ ├── FrmInStorage.Designer.cs │ │ ├── FrmInStorage.cs │ │ ├── FrmInStorage.resx │ │ ├── FrmInStorageInfo.Designer.cs │ │ ├── FrmInStorageInfo.cs │ │ ├── FrmInStorageInfo.resx │ │ ├── FrmOutStorage.Designer.cs │ │ ├── FrmOutStorage.cs │ │ └── FrmOutStorage.resx │ ├── WayBill │ │ ├── FrmReGoods.Designer.cs │ │ ├── FrmReGoods.cs │ │ └── FrmReGoods.resx │ ├── favicon.ico │ ├── frmLoading.Designer.cs │ ├── frmLoading.cs │ ├── frmLoading.resx │ └── packages.config ├── LMS.WinForm.InversionOfControl │ ├── AppTypeFinder.cs │ ├── Autofac │ │ ├── ComponentLifeStyle.cs │ │ ├── ComponentRegistrationException.cs │ │ ├── ContainerConfigurer.cs │ │ ├── ContainerManager.cs │ │ └── IDependencyRegistrar.cs │ ├── Engine.cs │ ├── EngineContext.cs │ ├── IEngine.cs │ ├── LMS.WinForm.InversionOfControl.csproj │ └── Properties │ │ └── AssemblyInfo.cs └── WinFormSetup │ ├── WinFormSetup.isl │ └── WinFormSetup.isproj ├── LMS系统命名规则.txt ├── LighTake.Infrastructure ├── .nuget │ ├── NuGet.Config │ └── NuGet.targets ├── EntityFramework.Extended │ ├── App.config │ ├── Audit │ │ ├── AlwaysAuditAttribute.cs │ │ ├── Audit.xsd │ │ ├── AuditAction.cs │ │ ├── AuditAttribute.cs │ │ ├── AuditConfiguration.cs │ │ ├── AuditEntity.cs │ │ ├── AuditEntryState.cs │ │ ├── AuditKey.cs │ │ ├── AuditKeyCollection.cs │ │ ├── AuditLog.cs │ │ ├── AuditLogger.cs │ │ ├── AuditProperty.cs │ │ ├── AuditPropertyCollection.cs │ │ ├── AuditPropertyFormatAttribute.cs │ │ └── NotAuditedAttribute.cs │ ├── Batch │ │ ├── DbCommandSqlServerBatchRunner.cs │ │ ├── EFSqlServerBatchRunner.cs │ │ └── IBatchRunner.cs │ ├── Caching │ │ ├── CacheExpirationMode.cs │ │ ├── CacheKey.cs │ │ ├── CacheManager.cs │ │ ├── CachePolicy.cs │ │ ├── CacheTag.cs │ │ ├── ICacheProvider.cs │ │ ├── MemoryCacheProvider.cs │ │ └── Query │ │ │ ├── Evaluator.cs │ │ │ ├── LocalCollectionExpander.cs │ │ │ ├── QueryCache.cs │ │ │ └── Utility.cs │ ├── Container.cs │ ├── Dynamic │ │ └── DynamicQueryable.cs │ ├── EntityFramework.Extended.csproj │ ├── EntityFramework.Extended.net40.csproj │ ├── Extensions │ │ ├── AuditExtensions.cs │ │ ├── BatchExtensions.cs │ │ ├── CacheExtensions.cs │ │ ├── DataRecordExtensions.cs │ │ ├── ExpressionExtensions.cs │ │ ├── FutureExtensions.cs │ │ ├── ObjectContextExtensions.cs │ │ └── ObjectQueryExtensions.cs │ ├── Future │ │ ├── FutureContext.cs │ │ ├── FutureCount.cs │ │ ├── FutureException.cs │ │ ├── FuturePlan.cs │ │ ├── FutureQuery.cs │ │ ├── FutureQueryBase.cs │ │ ├── FutureRunner.cs │ │ ├── FutureStore.cs │ │ ├── FutureValue.cs │ │ ├── IFutureContext.cs │ │ ├── IFutureQuery.cs │ │ └── IFutureRunner.cs │ ├── GlobalAssemblyInfo.net40.cs │ ├── IContainer.cs │ ├── Locator.cs │ ├── Mapping │ │ ├── EntityMap.cs │ │ ├── IMappingProvider.cs │ │ ├── MappingResolver.cs │ │ ├── MetadataMappingProvider.cs │ │ └── PropertyMap.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Reflection │ │ ├── DelegateFactory.cs │ │ ├── DynamicProxy.cs │ │ ├── FieldAccessor.cs │ │ ├── ILGeneratorExtensions.cs │ │ ├── IMemberAccessor.cs │ │ ├── IMemberInfo.cs │ │ ├── IMethodAccessor.cs │ │ ├── LateBinder.cs │ │ ├── MemberAccessor.cs │ │ ├── MethodAccessor.cs │ │ ├── ObjectCloner.cs │ │ ├── ObjectCopier.cs │ │ ├── PropertyAccessor.cs │ │ ├── ReflectionHelper.cs │ │ └── TypeAccessor.cs │ └── packages.config ├── Libs │ ├── ServiceStack.Common.dll │ ├── ServiceStack.Common.xml │ ├── ServiceStack.Interfaces.dll │ ├── ServiceStack.Redis.XML │ ├── ServiceStack.Redis.dll │ ├── ServiceStack.Text.dll │ └── ServiceStack.Text.xml ├── LighTake.Infrastructure.Common.BizLogging │ ├── BizLog.cs │ ├── BizLogger.cs │ ├── Enums │ │ ├── KeyWordType.cs │ │ ├── System.cs │ │ ├── SystemCodeHelper.cs │ │ └── UserType.cs │ ├── LighTake.Infrastructure.Common.BizLogging.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Service References │ │ └── BizLogWcf │ │ │ ├── API1.disco │ │ │ ├── API1.wsdl │ │ │ ├── API3.xsd │ │ │ ├── API31.xsd │ │ │ ├── API32.xsd │ │ │ ├── LighTake.Infrastructure.Common.BizLogging.BizLogWcf.BizLogModel.datasource │ │ │ ├── Reference.cs │ │ │ ├── Reference.svcmap │ │ │ ├── configuration.svcinfo │ │ │ └── configuration91.svcinfo │ ├── Test.cs │ └── app.config ├── LighTake.Infrastructure.Common.Caching │ ├── Cache.cs │ ├── CacheItemStatus.cs │ ├── CacheProviderFactory.cs │ ├── DistributedCache.cs │ ├── EntLibCacheProvider.cs │ ├── ICache.cs │ ├── ICacheProviderFactory.cs │ ├── LighTake.Infrastructure.Common.Caching.csproj │ ├── Memcached │ │ ├── CRCTool.cs │ │ ├── Config │ │ │ ├── MemcachedConfigSection.cs │ │ │ ├── MemcachedServerCollection.cs │ │ │ ├── MemcachedServerElement.cs │ │ │ └── MemcachedSocketPoolElement.cs │ │ ├── IterIsolate.cs │ │ ├── MemcachedClient.cs │ │ ├── MemcachedTools.cs │ │ ├── NativeHandler.cs │ │ ├── NetworkStreamIgnoreSeek.cs │ │ ├── SockIO.cs │ │ ├── SockIOPool.cs │ │ └── StringMessages.resx │ ├── MemcachedCacheProvider.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Redis │ │ ├── RedisCacheProvider.cs │ │ └── StackChangeRedisCacheProvider.cs │ └── packages.config ├── LighTake.Infrastructure.Common.Configuration │ ├── ConfigBase.cs │ ├── ConfigSettingCollection.cs │ ├── GlobalConfig.cs │ ├── IConfigSetting.cs │ ├── LighTake.Infrastructure.Common.Configuration.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ └── RunModel.cs ├── LighTake.Infrastructure.Common.Excel │ ├── ExcelHelper.cs │ ├── ExcelOperation.cs │ ├── ExcelRowConfig.cs │ ├── ExportExcelByWeb.cs │ ├── LighTake.Infrastructure.Common.Excel.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packages.config ├── LighTake.Infrastructure.Common.InversionOfControl │ ├── Auotfac │ │ ├── AutofacRequestLifetimeHttpModule.cs │ │ ├── ComponentLifeStyle.cs │ │ ├── ComponentRegistrationException.cs │ │ ├── ContainerConfigurer.cs │ │ ├── ContainerManager.cs │ │ └── IDependencyRegistrar.cs │ ├── Castle │ │ ├── AutofacDependencyResolver.cs │ │ ├── DependencyResolverFactory.cs │ │ ├── IDependencyResolver.cs │ │ ├── IDependencyResolverFactory.cs │ │ ├── IoC.cs │ │ └── WindsorDependencyResolver.cs │ ├── Engine.cs │ ├── EngineContext.cs │ ├── EventBroker.cs │ ├── IEngine.cs │ ├── LighTake.Infrastructure.Common.InversionOfControl.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── WebAppTypeFinder.cs │ └── packages.config ├── LighTake.Infrastructure.Common.Logging │ ├── ILog.cs │ ├── ILoggerService.cs │ ├── LighTake.Infrastructure.Common.Logging.csproj │ ├── Log.cs │ ├── Log4netLogger.cs │ ├── LogLevel.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packages.config ├── LighTake.Infrastructure.Common.TypeAdapter │ ├── AutoMapper │ │ ├── AutomapperTypeAdapter.cs │ │ └── AutomapperTypeAdapterFactory.cs │ ├── ITypeAdapter.cs │ ├── ITypeAdapterFactory.cs │ ├── LighTake.Infrastructure.Common.TypeAdapter.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── TypeAdapterFactory.cs │ └── packages.config ├── LighTake.Infrastructure.Common │ ├── ComponentModel │ │ └── WriteLockDisposable.cs │ ├── Constants.cs │ ├── ConvertListToDataTable.cs │ ├── DisposableResource.cs │ ├── Exception │ │ ├── BusinessLogicException.cs │ │ ├── CustomerException.cs │ │ ├── DataAccessException.cs │ │ └── InfrastructureException.cs │ ├── Extensions │ │ ├── Collections.cs │ │ ├── DataTables.cs │ │ ├── Dates.cs │ │ ├── Dynamic.cs │ │ ├── ExpressionVisitor.cs │ │ ├── IO.cs │ │ ├── Inflector.cs │ │ ├── Numeric.cs │ │ ├── Objects.cs │ │ ├── QueryableExtension.cs │ │ ├── RegexPattern.cs │ │ ├── Strings.cs │ │ ├── Validations.cs │ │ └── WCFExtension.cs │ ├── JsonHelper.cs │ ├── LighTake.Infrastructure.Common.csproj │ ├── MessageManager.cs │ ├── Pager │ │ └── PagedList.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── ServiceBase.cs │ ├── ShowMessageType.cs │ ├── Singleton.cs │ ├── SiteShippingMethodToSCM.cs │ ├── TypeFinder │ │ ├── AppDomainTypeFinder.cs │ │ └── ITypeFinder.cs │ ├── Utities │ │ ├── BidirectionalMapping.cs │ │ ├── Check.cs │ │ ├── CollectionConverter.cs │ │ ├── CollectionHelper.cs │ │ ├── DataSourceBinder.cs │ │ ├── DictionaryExtensions.cs │ │ ├── DynamicMethodExecutor.cs │ │ ├── ExpressionUtil.cs │ │ ├── HttpRequestsFunctions.cs │ │ ├── IBidirectionalMapping.cs │ │ ├── ImageUtil.cs │ │ ├── PinyinHelper.cs │ │ ├── SecurityUtil.cs │ │ ├── SerializeUtil.cs │ │ ├── Tools.cs │ │ ├── TreeNodeHelper.cs │ │ ├── UnZip.cs │ │ ├── WebUtil.cs │ │ ├── XmlDoc.cs │ │ └── Zip.cs │ └── ValidationImageCodeGenerator.cs ├── LighTake.Infrastructure.CommonQueue │ ├── ISimpleQueue.cs │ ├── LighTake.Infrastructure.CommonQueue.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── QueueHelper.cs │ ├── RabbitQueue.cs │ ├── Service References │ │ ├── API.Queue │ │ │ ├── LighTake.Infrastructure.CommonQueue.API.Queue.QueueModel.datasource │ │ │ ├── LtQueue.disco │ │ │ ├── LtQueue.wsdl │ │ │ ├── LtQueue.xsd │ │ │ ├── LtQueue1.xsd │ │ │ ├── LtQueue2.xsd │ │ │ ├── LtQueue3.xsd │ │ │ ├── Reference.cs │ │ │ ├── Reference.svcmap │ │ │ ├── configuration.svcinfo │ │ │ └── configuration91.svcinfo │ │ └── API.Task │ │ │ ├── LtTaskQueue.disco │ │ │ ├── LtTaskQueue.wsdl │ │ │ ├── LtTaskQueue.xsd │ │ │ ├── LtTaskQueue1.xsd │ │ │ ├── LtTaskQueue2.xsd │ │ │ ├── Reference.cs │ │ │ ├── Reference.svcmap │ │ │ ├── configuration.svcinfo │ │ │ └── configuration91.svcinfo │ ├── TaskQueue.cs │ ├── WcfQueue.cs │ ├── app.config │ └── packages.config ├── LighTake.Infrastructure.Data │ ├── Entity │ │ ├── DataEntity.cs │ │ ├── DataFieldAttribute.cs │ │ ├── EntityBase.cs │ │ └── IEntity.cs │ ├── Extensions │ │ ├── DatabaseExtensionscs.cs │ │ ├── ObjectContextExtensions.cs │ │ └── ReservedColumns.cs │ ├── LighTake.Infrastructure.Data.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Repository │ │ ├── IRepository.cs │ │ └── StoredProcedure.cs │ └── UnitOfWork │ │ ├── IRepository.cs │ │ ├── IUnitOfWork.cs │ │ ├── IUnitOfWorkFactory.cs │ │ ├── ObjectContextManager.cs │ │ └── UnitOfWork.cs ├── LighTake.Infrastructure.Http │ ├── BaseApiController.cs │ ├── HttpHelper.cs │ ├── Infrastructure │ │ ├── Exceptions │ │ │ └── ArgumentValidateErrorException.cs │ │ ├── Filters │ │ │ ├── LogExceptionFilter.cs │ │ │ └── LogInfoFilter.cs │ │ ├── HttpContentEncoding.cs │ │ ├── HttpContentTypes.cs │ │ └── HttpMethod.cs │ ├── LighTake.Infrastructure.Http.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packages.config ├── LighTake.Infrastructure.PerformanceMonitor │ ├── App_Start │ │ └── MiniProfiler.cs │ ├── LighTake.Infrastructure.PerformanceMonitor.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── StackExchange.Profiling.Mvc │ │ ├── ProfilingActionFilter.cs │ │ ├── ProfilingViewEngine.cs │ │ └── WrappedView.cs │ ├── Views │ │ └── Shared │ │ │ └── _MINIPROFILER UPDATED Layout.cshtml │ ├── app.config │ └── packages.config ├── LighTake.Infrastructure.RabbitManager │ ├── App.config │ ├── ConnectionHelper.cs │ ├── LighTake.Infrastructure.RabbitManager.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RabbitMQConfig.cs │ └── packages.config ├── LighTake.Infrastructure.SSO │ ├── LighTake.Infrastructure.SSO.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RequestToken.cs │ ├── ResponseToken.cs │ ├── SsoCipher.cs │ ├── SsoEngine.cs │ └── SsoTicket.cs ├── LighTake.Infrastructure.Seedwork.EF │ ├── App.config │ ├── EFUnitOfWork.cs │ ├── IQueryableUnitOfWork.cs │ ├── ISql.cs │ ├── LighTake.Infrastructure.Seedwork.EF.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Repository.cs │ └── packages.config ├── LighTake.Infrastructure.Seedwork │ ├── Entity.cs │ ├── IRepository.cs │ ├── IUnitOfWork.cs │ ├── LighTake.Infrastructure.Seedwork.csproj │ ├── MapperExtensionMethods.cs │ ├── OrderByParam.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── SearchParam.cs ├── LighTake.Infrastructure.Shipping │ ├── Common.cs │ ├── ConcreteShippingMethod │ │ ├── DefaultShippingProvider.cs │ │ ├── EUBSpecialLineShippingProvider.cs │ │ └── IShippingProvider.cs │ ├── Country.cs │ ├── LighTake.Infrastructure.Shipping.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Region.cs │ ├── ShipmentPackage.cs │ ├── ShippingDetails.cs │ ├── ShippingException.cs │ ├── ShippingMethod.cs │ ├── ShippingMethodCountry.cs │ └── ShippingMethodProviderFactory.cs ├── LighTake.Infrastructure.Shopping │ ├── LighTake.Infrastructure.Shopping.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── ShoppingCart.cs │ └── ShoppingCartItem.cs ├── LighTake.Infrastructure.Web │ ├── Authentication │ │ ├── FakeAuthenticationService.cs │ │ ├── FormsAuthenticationService.cs │ │ ├── IAuthenticationService.cs │ │ ├── SsoAuthenticationService.cs │ │ └── UserData.cs │ ├── Controllers │ │ ├── BaseController.cs │ │ ├── ContollerExtensions.cs │ │ └── ValidationCodeController.cs │ ├── DependencyResolver.cs │ ├── ExcelXlsFileResult.cs │ ├── Extensions │ │ ├── FormExtensions.cs │ │ ├── LayoutExtensions.cs │ │ ├── MvcExtensions.cs │ │ └── RouteExtensions.cs │ ├── Filters │ │ ├── FormValueRequiredAttribute.cs │ │ ├── MemberOnlyAttribute.cs │ │ └── SsoMemberOnlyAttribute.cs │ ├── HttpHandler │ │ ├── BarCodeHandler.cs │ │ └── Ping.ashx.cs │ ├── HttpModules │ │ └── ObjectContextDisposeModule.cs │ ├── IWebHelper.cs │ ├── LighTake.Infrastructure.Web.csproj │ ├── MVC.cs │ ├── Models │ │ ├── BasePageModel.cs │ │ ├── RangeDateTimeFilter.cs │ │ └── SearchFilter.cs │ ├── Pager │ │ ├── PageLinqExtensions.cs │ │ ├── PagerBuilder.cs │ │ ├── PagerExtension.cs │ │ ├── PagerHelper.cs │ │ ├── PagerItem.cs │ │ └── PagerOptions.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Route │ │ ├── IModelUrlProvider.cs │ │ ├── LowerCaseRouteExtensions.cs │ │ ├── LowerCaseUrlRoute.cs │ │ ├── ModelAttribute.cs │ │ ├── ModelParameterBinder.cs │ │ ├── ModelRoutingExtensions.cs │ │ ├── ModelUrlRoute.cs │ │ └── RegexRoute.cs │ ├── UI │ │ ├── HtmlHelperExtensions.cs │ │ ├── IPageTitleBuilder.cs │ │ ├── NotifyType.cs │ │ ├── PageTitleBuilder.cs │ │ └── ResourceLocation.cs │ ├── Utities │ │ ├── FormBinder.cs │ │ ├── ILocalData.cs │ │ ├── Local.cs │ │ ├── RemotePost.cs │ │ ├── Strings.cs │ │ └── Tools.cs │ ├── Validation │ │ ├── AddressStateAttribute.cs │ │ ├── EqualsToAttribute.cs │ │ ├── MustBeTrueAttribute.cs │ │ ├── StringTrimBinderAttribute.cs │ │ └── ValidateStringLengthAttribute.cs │ └── WebHelper.cs ├── LighTake.Infrastructure.sln └── packages │ ├── AutoMapper.2.0.0 │ ├── AutoMapper.2.0.0.nupkg │ └── lib │ │ ├── net40-client │ │ ├── AutoMapper.dll │ │ └── AutoMapper.xml │ │ └── sl4 │ │ ├── AutoMapper.XML │ │ └── AutoMapper.dll │ ├── Autofac.2.6.3.862 │ ├── Autofac.2.6.3.862.nupkg │ └── lib │ │ ├── NET35 │ │ ├── Autofac.Configuration.dll │ │ ├── Autofac.dll │ │ └── Autofac.xml │ │ ├── NET40 │ │ ├── Autofac.Configuration.dll │ │ ├── Autofac.dll │ │ └── Autofac.xml │ │ ├── SL3-WP │ │ ├── Autofac.dll │ │ └── Autofac.xml │ │ ├── SL4-WindowsPhone │ │ ├── Autofac.dll │ │ └── Autofac.xml │ │ ├── SL4-WindowsPhone71 │ │ ├── Autofac.dll │ │ └── Autofac.xml │ │ └── SL4 │ │ ├── Autofac.dll │ │ └── Autofac.xml │ ├── Autofac.Mvc3.2.6.3.862 │ ├── Autofac.Mvc3.2.6.3.862.nupkg │ └── lib │ │ └── NET40 │ │ └── Autofac.Integration.Mvc.dll │ ├── Castle.Core.3.1.0 │ ├── ASL - Apache Software Foundation License.txt │ ├── BreakingChanges.txt │ ├── Castle.Core.3.1.0.nupkg │ ├── Changes.txt │ ├── Committers.txt │ ├── License.txt │ ├── lib │ │ ├── net35 │ │ │ ├── Castle.Core.dll │ │ │ └── Castle.Core.xml │ │ ├── net40-client │ │ │ ├── Castle.Core.dll │ │ │ └── Castle.Core.xml │ │ └── sl4 │ │ │ ├── Castle.Core.dll │ │ │ └── Castle.Core.xml │ └── readme.txt │ ├── Castle.Windsor.3.1.0 │ ├── ASL - Apache Software Foundation License.txt │ ├── BreakingChanges.txt │ ├── Castle.Windsor.3.1.0.nupkg │ ├── Changes.txt │ ├── Committers.txt │ ├── License.txt │ ├── lib │ │ ├── net35 │ │ │ ├── Castle.Windsor.dll │ │ │ └── Castle.Windsor.xml │ │ ├── net40-client │ │ │ ├── Castle.Windsor.dll │ │ │ └── Castle.Windsor.xml │ │ ├── net40 │ │ │ ├── Castle.Windsor.dll │ │ │ └── Castle.Windsor.xml │ │ └── sl4 │ │ │ ├── Castle.Windsor.dll │ │ │ └── Castle.Windsor.xml │ └── readme.txt │ ├── CommonServiceLocator.1.0 │ ├── CommonServiceLocator.1.0.nupkg │ └── lib │ │ ├── NET35 │ │ ├── Microsoft.Practices.ServiceLocation.XML │ │ └── Microsoft.Practices.ServiceLocation.dll │ │ └── SL30 │ │ ├── Microsoft.Practices.ServiceLocation.XML │ │ └── Microsoft.Practices.ServiceLocation.dll │ ├── EnterpriseLibrary.Caching.5.0.505.0 │ ├── EnterpriseLibrary.Caching.5.0.505.0.nupkg │ ├── lib │ │ ├── NET35 │ │ │ ├── Microsoft.Practices.EnterpriseLibrary.Caching.dll │ │ │ └── Microsoft.Practices.EnterpriseLibrary.Caching.xml │ │ └── SL40 │ │ │ ├── Microsoft.Practices.EnterpriseLibrary.Caching.Silverlight.dll │ │ │ └── Microsoft.Practices.EnterpriseLibrary.Caching.Silverlight.xml │ └── tools │ │ ├── Utils.psm1 │ │ └── install.ps1 │ ├── EnterpriseLibrary.Common.5.0.505.0 │ ├── EnterpriseLibrary.Common.5.0.505.0.nupkg │ ├── lib │ │ ├── NET35 │ │ │ ├── Microsoft.Practices.EnterpriseLibrary.Common.dll │ │ │ └── Microsoft.Practices.EnterpriseLibrary.Common.xml │ │ └── SL40 │ │ │ ├── Microsoft.Practices.EnterpriseLibrary.Common.Silverlight.dll │ │ │ └── Microsoft.Practices.EnterpriseLibrary.Common.Silverlight.xml │ └── tools │ │ ├── Utils.psm1 │ │ └── install.ps1 │ ├── Memcached.ClientLibrary.1.0 │ ├── Memcached.ClientLibrary.1.0.nupkg │ └── lib │ │ ├── net11 │ │ ├── Commons.dll │ │ ├── ICSharpCode.SharpZipLib.dll │ │ ├── Memcached.ClientLibrary.dll │ │ └── log4net.dll │ │ └── net20 │ │ ├── Commons.dll │ │ ├── ICSharpCode.SharpZipLib.dll │ │ ├── Memcached.ClientLibrary.dll │ │ └── log4net.dll │ ├── MiniProfiler.2.1.0 │ ├── MiniProfiler.2.1.0.nupkg │ └── lib │ │ └── net40 │ │ ├── MiniProfiler.dll │ │ └── MiniProfiler.xml │ ├── MiniProfiler.EF.2.1.0 │ ├── MiniProfiler.EF.2.1.0.nupkg │ └── lib │ │ └── net40 │ │ └── MiniProfiler.EntityFramework.dll │ ├── MiniProfiler.MVC3.2.0.2 │ ├── Content │ │ ├── App_Start │ │ │ └── MiniProfiler.cs.pp │ │ └── Views │ │ │ └── Shared │ │ │ └── _MINIPROFILER UPDATED Layout.cshtml │ ├── MiniProfiler.MVC3.2.0.2.nupkg │ └── tools │ │ └── install.ps1 │ ├── NPOI.1.2.5 │ ├── Ionic_Utils_Zip_license.txt │ ├── License.txt │ ├── NPOI.1.2.5.nupkg │ ├── Read Me.txt │ ├── Release Notes.txt │ └── lib │ │ ├── net20 │ │ ├── Ionic.Zip.dll │ │ ├── NPOI.XML │ │ └── NPOI.dll │ │ └── net40 │ │ ├── Ionic.Zip.dll │ │ ├── NPOI.XML │ │ └── NPOI.dll │ ├── NPOI.Excel.2.1.1 │ ├── NPOI.Excel.2.1.1.nupkg │ └── lib │ │ ├── ICSharpCode.SharpZipLib.dll │ │ ├── NPOI.OOXML.dll │ │ ├── NPOI.OpenXml4Net.dll │ │ ├── NPOI.OpenXmlFormats.dll │ │ └── NPOI.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+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 │ ├── RabbitMQ.Client.3.3.2 │ ├── RabbitMQ.Client.3.3.2.nupkg │ └── lib │ │ ├── net20 │ │ ├── RabbitMQ.Client.dll │ │ └── RabbitMQ.Client.xml │ │ └── net30 │ │ ├── RabbitMQ.Client.dll │ │ └── RabbitMQ.Client.xml │ ├── Unity.2.1.505.2 │ ├── Unity.2.1.505.2.nupkg │ ├── lib │ │ ├── NET35 │ │ │ ├── Microsoft.Practices.Unity.Configuration.dll │ │ │ ├── Microsoft.Practices.Unity.Configuration.xml │ │ │ ├── Microsoft.Practices.Unity.dll │ │ │ └── Microsoft.Practices.Unity.xml │ │ └── SL30 │ │ │ ├── Microsoft.Practices.Unity.Silverlight.dll │ │ │ └── Microsoft.Practices.Unity.Silverlight.xml │ └── tools │ │ ├── Utils.psm1 │ │ └── install.ps1 │ ├── Unity.Interception.2.1.505.2 │ ├── Unity.Interception.2.1.505.2.nupkg │ ├── lib │ │ ├── NET35 │ │ │ ├── Microsoft.Practices.Unity.Interception.Configuration.dll │ │ │ ├── Microsoft.Practices.Unity.Interception.Configuration.xml │ │ │ ├── Microsoft.Practices.Unity.Interception.dll │ │ │ └── Microsoft.Practices.Unity.Interception.xml │ │ └── SL40 │ │ │ ├── Microsoft.Practices.Unity.Interception.Silverlight.dll │ │ │ └── Microsoft.Practices.Unity.Interception.Silverlight.xml │ └── tools │ │ ├── Utils.psm1 │ │ └── install.ps1 │ ├── WebActivator.1.4 │ ├── WebActivator.1.4.nupkg │ └── lib │ │ └── NETFramework40 │ │ └── WebActivator.dll │ ├── log4net.1.2.10 │ ├── lib │ │ ├── 1.0 │ │ │ ├── log4net.dll │ │ │ └── log4net.xml │ │ ├── 1.1 │ │ │ ├── log4net.dll │ │ │ └── log4net.xml │ │ └── 2.0 │ │ │ ├── log4net.dll │ │ │ └── log4net.xml │ └── log4net.1.2.10.nupkg │ └── repositories.config ├── LighTake.LMS.sln ├── LighTake.MQS ├── Libs │ ├── HtmlSanitizationLibrary.dll │ ├── LighTake.Infrastructure.Common.Logging.1.0.0.0.nupkg │ ├── LighTake.Infrastructure.Common.Logging.1.0.0.0.symbols.nupkg │ ├── LighTake.Infrastructure.Common.Logging.dll │ ├── LighTake.Infrastructure.Common.dll │ ├── Newtonsoft.Json.dll │ ├── log4net.dll │ └── log4net.xml ├── LighTake.MQS.sln ├── LighTake.MQS │ ├── Dto │ │ └── QueueModel.cs │ ├── ILtQueue.cs │ ├── ILtTaskQueue.cs │ ├── IQueueMini.cs │ ├── LighTake.MQS.csproj │ ├── LtQueue.svc │ ├── LtQueue.svc.cs │ ├── LtTaskQueue.svc │ ├── LtTaskQueue.svc.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── QueueMini.cs │ ├── Web.Debug.config │ ├── Web.Release.config │ └── Web.config ├── MQS_Data.Context │ ├── App.Config │ ├── MQS_Data.Context.cs │ ├── MQS_Data.Context.csproj │ ├── MQS_Data.Context.tt │ ├── MQS_Data.Designer.cs │ ├── MQS_Data.cs │ ├── MQS_Data.edmx │ ├── MQS_Data.edmx.diagram │ ├── MQS_Data.tt │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── TaskQueue.cs │ └── packages.config ├── MQS_Tests │ ├── MQS_Tests.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Service References │ │ └── LtQueueService │ │ │ ├── LtQueue.disco │ │ │ ├── LtQueue.wsdl │ │ │ ├── LtQueue.xsd │ │ │ ├── LtQueue1.xsd │ │ │ ├── LtQueue2.xsd │ │ │ ├── MQS_Tests.LtQueueService.QueueModel.datasource │ │ │ ├── Reference.cs │ │ │ ├── Reference.svcmap │ │ │ ├── configuration.svcinfo │ │ │ └── configuration91.svcinfo │ ├── UnitTest1.cs │ └── app.config ├── TaskEnqueuer │ ├── MQS_TaskEnqueuer.csproj │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Service References │ │ ├── LtQueueService │ │ │ ├── LtQueue.disco │ │ │ ├── LtQueue.wsdl │ │ │ ├── LtQueue.xsd │ │ │ ├── LtQueue1.xsd │ │ │ ├── LtQueue2.xsd │ │ │ ├── LtQueue3.xsd │ │ │ ├── MQS_TaskEnqueuer.LtQueueService.QueueModel.datasource │ │ │ ├── Reference.cs │ │ │ ├── Reference.svcmap │ │ │ ├── configuration.svcinfo │ │ │ └── configuration91.svcinfo │ │ └── LtTaskQueueService │ │ │ ├── LtTaskQueue.disco │ │ │ ├── LtTaskQueue.wsdl │ │ │ ├── LtTaskQueue.xsd │ │ │ ├── LtTaskQueue1.xsd │ │ │ ├── LtTaskQueue2.xsd │ │ │ ├── Reference.cs │ │ │ ├── Reference.svcmap │ │ │ ├── configuration.svcinfo │ │ │ └── configuration91.svcinfo │ └── app.config └── packages │ ├── EntityFramework.5.0.0 │ ├── Content │ │ ├── App.config.transform │ │ └── Web.config.transform │ ├── EntityFramework.5.0.0.nupkg │ ├── EntityFramework.5.0.0.nuspec │ ├── lib │ │ ├── net40 │ │ │ ├── EntityFramework.dll │ │ │ ├── EntityFramework.xml │ │ │ └── zh-Hans │ │ │ │ ├── EntityFramework.resources.dll │ │ │ │ └── EntityFramework.xml │ │ └── net45 │ │ │ ├── EntityFramework.dll │ │ │ ├── EntityFramework.xml │ │ │ └── zh-Hans │ │ │ ├── EntityFramework.resources.dll │ │ │ └── EntityFramework.xml │ └── tools │ │ ├── EntityFramework.PS3.psd1 │ │ ├── EntityFramework.PowerShell.Utility.dll │ │ ├── EntityFramework.PowerShell.dll │ │ ├── EntityFramework.psd1 │ │ ├── EntityFramework.psm1 │ │ ├── Redirect.VS11.config │ │ ├── Redirect.config │ │ ├── about_EntityFramework.help.txt │ │ ├── init.ps1 │ │ └── install.ps1 │ ├── EntityFramework.zh-Hans.5.0.0 │ ├── EntityFramework.zh-Hans.5.0.0.nupkg │ ├── EntityFramework.zh-Hans.5.0.0.nuspec │ └── lib │ │ ├── net40 │ │ └── zh-Hans │ │ │ ├── EntityFramework.resources.dll │ │ │ └── EntityFramework.xml │ │ └── net45 │ │ └── zh-Hans │ │ ├── EntityFramework.resources.dll │ │ └── EntityFramework.xml │ └── repositories.config ├── OrderUploadValidatorTest ├── OrderUploadValidatorTest.csproj ├── Program.cs ├── Properties │ └── AssemblyInfo.cs └── app.config ├── README.md ├── UpgradeLog.htm ├── libs ├── AntiXSSLibrary.dll ├── Aspose.BarCode.dll ├── Aspose.BarCodeRecognition.dll ├── DbHelper.dll ├── DevComponents.DotNetBar2.dll ├── EntityFramework.BulkInsert.x.0.8 │ ├── ef4 │ │ └── lib │ │ │ └── Net40 │ │ │ └── EntityFramework.BulkInsert.dll │ ├── ef5 │ │ └── lib │ │ │ ├── Net40 │ │ │ └── EntityFramework.BulkInsert.dll │ │ │ └── Net45 │ │ │ └── EntityFramework.BulkInsert.dll │ └── ef6 │ │ └── lib │ │ ├── Net40 │ │ └── EntityFramework.BulkInsert.dll │ │ └── Net45 │ │ └── EntityFramework.BulkInsert.dll ├── EntityFramework.SqlServer.dll ├── FastReport.Bars.dll ├── FastReport.dll ├── HtmlSanitizationLibrary.dll ├── ICSharpCode.SharpZipLib.dll ├── Interop.Acrobat.dll ├── Lightake.EUB.Common.dll ├── Lightake.UEB.API.dll ├── NPOI.OOXML.dll ├── NPOI.OpenXml4Net.dll ├── NPOI.OpenXmlFormats.dll ├── NPOI.dll ├── Newtonsoft.Json.dll ├── RazorEngine.dll ├── SmartThreadPool.dll ├── System.Net.Http.Formatting.dll └── System.Net.Http.dll └── 物流系统更新日志.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/.gitignore -------------------------------------------------------------------------------- /.nuget/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/.nuget/NuGet.Config -------------------------------------------------------------------------------- /.nuget/NuGet.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/.nuget/NuGet.targets -------------------------------------------------------------------------------- /.tfignore: -------------------------------------------------------------------------------- 1 | \.git -------------------------------------------------------------------------------- /Backup/LMS.PrintLabel/LMS.PrintLabelWeb/CSS/print.css: -------------------------------------------------------------------------------- 1 | #Print_hidden{display:none;} -------------------------------------------------------------------------------- /Backup/LMS.Web.FrontDesk/LMS.Web.FubTrack/Global.asax: -------------------------------------------------------------------------------- 1 | <%@ Application Inherits="LMS.FrontDesk.Framework.Global" Language="C#" %> 2 | -------------------------------------------------------------------------------- /Backup/LMS.Web.FrontDesk/LMS.Web.Track/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/Backup/LMS.Web.FrontDesk/LMS.Web.Track/404.html -------------------------------------------------------------------------------- /Backup/LMS.Web.FrontDesk/LMS.Web.Track/Global.asax: -------------------------------------------------------------------------------- 1 | <%@ Application Inherits="LMS.FrontDesk.Framework.TrackGlobal" Language="C#" %> 2 | 3 | 4 | -------------------------------------------------------------------------------- /Backup/LMS.Web.FrontDesk/LMS.Web.Track/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/Backup/LMS.Web.FrontDesk/LMS.Web.Track/Web.config -------------------------------------------------------------------------------- /Backup/LMS.Web.FrontDesk/LMS.Web.YSD-Express/Global.asax: -------------------------------------------------------------------------------- 1 | <%@ Application Inherits="LMS.FrontDesk.Framework.Global" Language="C#" %> 2 | -------------------------------------------------------------------------------- /Backup/LMS.Web.FrontDesk/LMS.Web.YTWL/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/Backup/LMS.Web.FrontDesk/LMS.Web.YTWL/404.html -------------------------------------------------------------------------------- /Backup/LMS.Web.FrontDesk/LMS.Web.YTWL/Global.asax: -------------------------------------------------------------------------------- 1 | <%@ Application Inherits="LMS.FrontDesk.Framework.Global" Language="C#" %> 2 | -------------------------------------------------------------------------------- /Backup/LMS.Web.FrontDesk/LMS.Web.YTWL/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/Backup/LMS.Web.FrontDesk/LMS.Web.YTWL/Web.config -------------------------------------------------------------------------------- /Backup/LMS.Web.FrontDesk/LMS.Web.YunPost/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/Backup/LMS.Web.FrontDesk/LMS.Web.YunPost/404.html -------------------------------------------------------------------------------- /Backup/LMS.Web.FrontDesk/LMS.Web.YunPost/Global.asax: -------------------------------------------------------------------------------- 1 | <%@ Application Inherits="LMS.FrontDesk.Framework.Global" Language="C#" %> 2 | -------------------------------------------------------------------------------- /Backup/LMS.Web.FrontDesk/LighTake.LMS.Web.FrontDesk/Global.asax: -------------------------------------------------------------------------------- 1 | <%@ Application Inherits="LMS.FrontDesk.Framework.Global" Language="C#" %> 2 | -------------------------------------------------------------------------------- /Backup/LMS.Web.FrontDesk/MXBN.Web/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/Backup/LMS.Web.FrontDesk/MXBN.Web/404.html -------------------------------------------------------------------------------- /Backup/LMS.Web.FrontDesk/MXBN.Web/Global.asax: -------------------------------------------------------------------------------- 1 | <%@ Application Inherits="LMS.FrontDesk.Framework.Global" Language="C#" %> 2 | 3 | -------------------------------------------------------------------------------- /Backup/LMS.Web.FrontDesk/MXBN.Web/MXBN.Web.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/Backup/LMS.Web.FrontDesk/MXBN.Web/MXBN.Web.csproj -------------------------------------------------------------------------------- /Backup/LMS.Web.FrontDesk/MXBN.Web/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/Backup/LMS.Web.FrontDesk/MXBN.Web/Web.config -------------------------------------------------------------------------------- /Backup/LMS.Web.FrontDesk/MXBN.Web/images/345.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/Backup/LMS.Web.FrontDesk/MXBN.Web/images/345.jpg -------------------------------------------------------------------------------- /Backup/LMS.Web.FrontDesk/MXBN.Web/images/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/Backup/LMS.Web.FrontDesk/MXBN.Web/images/grid.png -------------------------------------------------------------------------------- /Backup/LMS.Web.FrontDesk/MXBN.Web/images/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/Backup/LMS.Web.FrontDesk/MXBN.Web/images/logo.jpg -------------------------------------------------------------------------------- /Backup/LMS.Web.FrontDesk/MXBN.Web/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/Backup/LMS.Web.FrontDesk/MXBN.Web/packages.config -------------------------------------------------------------------------------- /Backup/LMS.Web.UserCenter/LMS.UserCenter.Web/Global.asax: -------------------------------------------------------------------------------- 1 | <%@ Application Inherits="LMS.UserCenter.Web.Framework.Global" Language="C#" %> 2 | -------------------------------------------------------------------------------- /Backup/LMS.Web.UserCenter/LMS.UserCenter.Web/css/print.css: -------------------------------------------------------------------------------- 1 | #Print_hidden{display:none;} -------------------------------------------------------------------------------- /Backup/LMS.Web/LighTake.LMS.Web/Css/Faile.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/Backup/LMS.Web/LighTake.LMS.Web/Css/Faile.wav -------------------------------------------------------------------------------- /Backup/LMS.Web/LighTake.LMS.Web/Css/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/Backup/LMS.Web/LighTake.LMS.Web/Css/Site.css -------------------------------------------------------------------------------- /Backup/LMS.Web/LighTake.LMS.Web/Css/Success.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/Backup/LMS.Web/LighTake.LMS.Web/Css/Success.wav -------------------------------------------------------------------------------- /Backup/LMS.Web/LighTake.LMS.Web/Css/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/Backup/LMS.Web/LighTake.LMS.Web/Css/login.css -------------------------------------------------------------------------------- /Backup/LMS.Web/LighTake.LMS.Web/Css/pager.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/Backup/LMS.Web/LighTake.LMS.Web/Css/pager.css -------------------------------------------------------------------------------- /Backup/LMS.Web/LighTake.LMS.Web/Css/print.css: -------------------------------------------------------------------------------- 1 | #Print_hidden{display:none;} -------------------------------------------------------------------------------- /Backup/LMS.Web/LighTake.LMS.Web/Css/public.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/Backup/LMS.Web/LighTake.LMS.Web/Css/public.css -------------------------------------------------------------------------------- /Backup/LMS.Web/LighTake.LMS.Web/Css/publics.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/Backup/LMS.Web/LighTake.LMS.Web/Css/publics.css -------------------------------------------------------------------------------- /Backup/LMS.Web/LighTake.LMS.Web/Global.asax: -------------------------------------------------------------------------------- 1 | <%@ Application Inherits="LighTake.LMS.Web.Framework.Global" Language="C#" %> 2 | -------------------------------------------------------------------------------- /Backup/LMS.Web/LighTake.LMS.Web/Images/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/Backup/LMS.Web/LighTake.LMS.Web/Images/cancel.png -------------------------------------------------------------------------------- /Backup/LMS.Web/LighTake.LMS.Web/Images/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/Backup/LMS.Web/LighTake.LMS.Web/Images/loader.gif -------------------------------------------------------------------------------- /Backup/LMS.Web/LighTake.LMS.Web/Images/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/Backup/LMS.Web/LighTake.LMS.Web/Images/menu.png -------------------------------------------------------------------------------- /Backup/LMS.Web/LighTake.LMS.Web/Images/menu_l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/Backup/LMS.Web/LighTake.LMS.Web/Images/menu_l.png -------------------------------------------------------------------------------- /Backup/LMS.Web/LighTake.LMS.Web/Images/menu_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/Backup/LMS.Web/LighTake.LMS.Web/Images/menu_r.png -------------------------------------------------------------------------------- /Backup/LMS.Web/LighTake.LMS.Web/Images/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/Backup/LMS.Web/LighTake.LMS.Web/Images/minus.png -------------------------------------------------------------------------------- /Backup/LMS.Web/LighTake.LMS.Web/Images/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/Backup/LMS.Web/LighTake.LMS.Web/Images/plus.png -------------------------------------------------------------------------------- /Backup/LMS.Web/LighTake.LMS.Web/Images/tick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/Backup/LMS.Web/LighTake.LMS.Web/Images/tick.png -------------------------------------------------------------------------------- /Backup/LMS.Web/LighTake.LMS.Web/Scripts/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/Backup/LMS.Web/LighTake.LMS.Web/Scripts/common.js -------------------------------------------------------------------------------- /Backup/LMS.Web/LighTake.LMS.Web/Scripts/dis_js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/Backup/LMS.Web/LighTake.LMS.Web/Scripts/dis_js.js -------------------------------------------------------------------------------- /Backup/LMS.Web/LighTake.LMS.Web/Scripts/jq1.4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/Backup/LMS.Web/LighTake.LMS.Web/Scripts/jq1.4.js -------------------------------------------------------------------------------- /Backup/LMS.Web/LighTake.LMS.Web/Scripts/liger/jquery-validation/version.txt: -------------------------------------------------------------------------------- 1 | 1.8.0 2 | -------------------------------------------------------------------------------- /Backup/LMS.Web/LighTake.LMS.Web/Scripts/order.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/Backup/LMS.Web/LighTake.LMS.Web/Scripts/order.js -------------------------------------------------------------------------------- /Backup/LMS.Web/LighTake.LMS.Web/Scripts/tojson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/Backup/LMS.Web/LighTake.LMS.Web/Scripts/tojson.js -------------------------------------------------------------------------------- /Backup/LMS.Web/LighTake.LMS.Web/Scripts/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/Backup/LMS.Web/LighTake.LMS.Web/Scripts/util.js -------------------------------------------------------------------------------- /Backup/LMS.Web/LighTake.LMS.Web/Views/Shared/Header.Menu.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = null; 3 | } 4 | @Html.Action("TopMenu", "Common") 5 | -------------------------------------------------------------------------------- /Backup/LMS.Web/LighTake.LMS.Web/Views/User/Home/Index.cshtml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Backup/LMS.Web/LighTake.LMS.Web/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/Backup/LMS.Web/LighTake.LMS.Web/Views/Web.config -------------------------------------------------------------------------------- /Backup/LMS.Web/LighTake.LMS.Web/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/Backup/LMS.Web/LighTake.LMS.Web/Web.Debug.config -------------------------------------------------------------------------------- /Backup/LMS.Web/LighTake.LMS.Web/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/Backup/LMS.Web/LighTake.LMS.Web/Web.config -------------------------------------------------------------------------------- /Backup/LMS.Web/LighTake.LMS.Web/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/Backup/LMS.Web/LighTake.LMS.Web/packages.config -------------------------------------------------------------------------------- /Backup/LighTake.LMS.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/Backup/LighTake.LMS.sln -------------------------------------------------------------------------------- /Build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/Build.bat -------------------------------------------------------------------------------- /Build/LMS.TrackingAPI_UpgradedOn.last: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/Build/LMS.TrackingAPI_UpgradedOn.last -------------------------------------------------------------------------------- /Build/LMS.Web.Admin_UpgradedOn.last: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/Build/LMS.Web.Admin_UpgradedOn.last -------------------------------------------------------------------------------- /Build/LMS.Web.Track_UpgradedOn.last: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/Build/LMS.Web.Track_UpgradedOn.last -------------------------------------------------------------------------------- /Build/LMS.Web.UserCenter_UpgradedOn.last: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/Build/LMS.Web.UserCenter_UpgradedOn.last -------------------------------------------------------------------------------- /Build/LMS.Web.YSD-Express_UpgradedOn.last: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/Build/LMS.Web.YSD-Express_UpgradedOn.last -------------------------------------------------------------------------------- /Build/LMS.Web.YTWL-Lightake_UpgradedOn.last: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/Build/LMS.Web.YTWL-Lightake_UpgradedOn.last -------------------------------------------------------------------------------- /Build/LMS.Web.YunPost_UpgradedOn.last: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/Build/LMS.Web.YunPost_UpgradedOn.last -------------------------------------------------------------------------------- /Build/LMS.WebAPI.Client_UpgradedOn.last: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/Build/LMS.WebAPI.Client_UpgradedOn.last -------------------------------------------------------------------------------- /Build/LMS.WebAPI_UpgradedOn.last: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/Build/LMS.WebAPI_UpgradedOn.last -------------------------------------------------------------------------------- /Build/_lightake.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/Build/_lightake.proj -------------------------------------------------------------------------------- /Build/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/Build/build.bat -------------------------------------------------------------------------------- /Build/deploy.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/Build/deploy.proj -------------------------------------------------------------------------------- /Build/project.config.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/Build/project.config.targets -------------------------------------------------------------------------------- /Build/version.last: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/Build/version.last -------------------------------------------------------------------------------- /CacheLoadTest/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/CacheLoadTest/App.config -------------------------------------------------------------------------------- /CacheLoadTest/CacheLoadTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/CacheLoadTest/CacheLoadTest.csproj -------------------------------------------------------------------------------- /CacheLoadTest/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/CacheLoadTest/Program.cs -------------------------------------------------------------------------------- /CacheLoadTest/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/CacheLoadTest/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Database.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/Database.bat -------------------------------------------------------------------------------- /Deploy.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/Deploy.bat -------------------------------------------------------------------------------- /LMS.Client.SubmitOrder/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Client.SubmitOrder/App.config -------------------------------------------------------------------------------- /LMS.Client.SubmitOrder/CustomerOrderService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Client.SubmitOrder/CustomerOrderService.cs -------------------------------------------------------------------------------- /LMS.Client.SubmitOrder/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Client.SubmitOrder/Program.cs -------------------------------------------------------------------------------- /LMS.Client.SubmitOrder/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Client.SubmitOrder/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LMS.Client.SubmitOrder/TrackNumberService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Client.SubmitOrder/TrackNumberService.cs -------------------------------------------------------------------------------- /LMS.Client.SubmitOrder/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Client.SubmitOrder/packages.config -------------------------------------------------------------------------------- /LMS.Client/LIS.WebAPI.Client.LMS/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Client/LIS.WebAPI.Client.LMS/App.config -------------------------------------------------------------------------------- /LMS.Client/LIS.WebAPI.Client.LMS/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Client/LIS.WebAPI.Client.LMS/Program.cs -------------------------------------------------------------------------------- /LMS.Client/LIS.WebAPI.Client.LMS/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Client/LIS.WebAPI.Client.LMS/packages.config -------------------------------------------------------------------------------- /LMS.Client/LMS.Client.B2CSubmit/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Client/LMS.Client.B2CSubmit/App.config -------------------------------------------------------------------------------- /LMS.Client/LMS.Client.B2CSubmit/B2CSubmitJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Client/LMS.Client.B2CSubmit/B2CSubmitJob.cs -------------------------------------------------------------------------------- /LMS.Client/LMS.Client.B2CSubmit/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Client/LMS.Client.B2CSubmit/Program.cs -------------------------------------------------------------------------------- /LMS.Client/LMS.Client.B2CTracking/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Client/LMS.Client.B2CTracking/App.config -------------------------------------------------------------------------------- /LMS.Client/LMS.Client.B2CTracking/Model/Parcel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Client/LMS.Client.B2CTracking/Model/Parcel.cs -------------------------------------------------------------------------------- /LMS.Client/LMS.Client.B2CTracking/Model/Status.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Client/LMS.Client.B2CTracking/Model/Status.cs -------------------------------------------------------------------------------- /LMS.Client/LMS.Client.B2CTracking/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Client/LMS.Client.B2CTracking/Program.cs -------------------------------------------------------------------------------- /LMS.Client/LMS.Client.CreateOutBill/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Client/LMS.Client.CreateOutBill/App.config -------------------------------------------------------------------------------- /LMS.Client/LMS.Client.DHL/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Client/LMS.Client.DHL/App.config -------------------------------------------------------------------------------- /LMS.Client/LMS.Client.DHL/DHLForecast/Forecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Client/LMS.Client.DHL/DHLForecast/Forecast.cs -------------------------------------------------------------------------------- /LMS.Client/LMS.Client.DHL/LMS.Client.DHL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Client/LMS.Client.DHL/LMS.Client.DHL.csproj -------------------------------------------------------------------------------- /LMS.Client/LMS.Client.DHL/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Client/LMS.Client.DHL/Program.cs -------------------------------------------------------------------------------- /LMS.Client/LMS.Client.Eub/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Client/LMS.Client.Eub/App.config -------------------------------------------------------------------------------- /LMS.Client/LMS.Client.Eub/Handler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Client/LMS.Client.Eub/Handler.cs -------------------------------------------------------------------------------- /LMS.Client/LMS.Client.Eub/LMS.Client.Eub.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Client/LMS.Client.Eub/LMS.Client.Eub.csproj -------------------------------------------------------------------------------- /LMS.Client/LMS.Client.Eub/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Client/LMS.Client.Eub/Program.cs -------------------------------------------------------------------------------- /LMS.Client/LMS.Client.Eub/Properties/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Client/LMS.Client.Eub/Properties/app.manifest -------------------------------------------------------------------------------- /LMS.Client/LMS.Client.Eub/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Client/LMS.Client.Eub/packages.config -------------------------------------------------------------------------------- /LMS.Client/LMS.Client.FuZhouPostal/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Client/LMS.Client.FuZhouPostal/App.config -------------------------------------------------------------------------------- /LMS.Client/LMS.Client.FuZhouPostal/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Client/LMS.Client.FuZhouPostal/Program.cs -------------------------------------------------------------------------------- /LMS.Client/LMS.Client.InStorage/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Client/LMS.Client.InStorage/App.config -------------------------------------------------------------------------------- /LMS.Client/LMS.Client.InStorage/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Client/LMS.Client.InStorage/Program.cs -------------------------------------------------------------------------------- /LMS.Client/LMS.Client.InStorageFix/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Client/LMS.Client.InStorageFix/App.config -------------------------------------------------------------------------------- /LMS.Client/LMS.Client.InStorageFix/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Client/LMS.Client.InStorageFix/Program.cs -------------------------------------------------------------------------------- /LMS.Client/LMS.Client.SubmitSF/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Client/LMS.Client.SubmitSF/App.config -------------------------------------------------------------------------------- /LMS.Client/LMS.Client.SubmitSF/Model/SebModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Client/LMS.Client.SubmitSF/Model/SebModel.cs -------------------------------------------------------------------------------- /LMS.Client/LMS.Client.SubmitSF/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Client/LMS.Client.SubmitSF/Program.cs -------------------------------------------------------------------------------- /LMS.Client/LMS.Client.SubmitSF/SubmitSFJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Client/LMS.Client.SubmitSF/SubmitSFJob.cs -------------------------------------------------------------------------------- /LMS.Client/LMS.Client.TrackingGenerate/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Client/LMS.Client.TrackingGenerate/App.config -------------------------------------------------------------------------------- /LMS.Client/LMS.Client.TrackingGenerate/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Client/LMS.Client.TrackingGenerate/Program.cs -------------------------------------------------------------------------------- /LMS.Core/LMS.Core/GlobalConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Core/LMS.Core/GlobalConfig.cs -------------------------------------------------------------------------------- /LMS.Core/LMS.Core/IWorkContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Core/LMS.Core/IWorkContext.cs -------------------------------------------------------------------------------- /LMS.Core/LMS.Core/LMS.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Core/LMS.Core/LMS.Core.csproj -------------------------------------------------------------------------------- /LMS.Core/LMS.Core/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Core/LMS.Core/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LMS.Data.Repository.Test/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data.Repository.Test/App.config -------------------------------------------------------------------------------- /LMS.Data.Repository.Test/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data.Repository.Test/packages.config -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Context/App.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Context/App.Config -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Context/Article_Mapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Context/Article_Mapping.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Context/Category_Mapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Context/Category_Mapping.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Context/Country_Mapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Context/Country_Mapping.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Context/Customer_Mapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Context/Customer_Mapping.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Context/DeliveryFee_Mapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Context/DeliveryFee_Mapping.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Context/FeeType_Mapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Context/FeeType_Mapping.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Context/JobErrorLog_Mapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Context/JobErrorLog_Mapping.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Context/LMS.Data.Context.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Context/LMS.Data.Context.csproj -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Context/LMS_DBContext.edmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Context/LMS_DBContext.edmx -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Context/LMS_Db.Context.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Context/LMS_Db.Context.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Context/LMS_Db.Context.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Context/LMS_Db.Context.tt -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Context/LMS_Db.Mapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Context/LMS_Db.Mapping.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Context/LMS_Db.Mapping.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Context/LMS_Db.Mapping.tt -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Context/LanguageInfo_Mapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Context/LanguageInfo_Mapping.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Context/MailHoldLog_Mapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Context/MailHoldLog_Mapping.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Context/MouthCountry_Mapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Context/MouthCountry_Mapping.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Context/PaymentType_Mapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Context/PaymentType_Mapping.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Context/RechargeType_Mapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Context/RechargeType_Mapping.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Context/ReturnGoods_Mapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Context/ReturnGoods_Mapping.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Context/SenderInfo_Mapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Context/SenderInfo_Mapping.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Context/ShippingInfo_Mapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Context/ShippingInfo_Mapping.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Context/Task_Mapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Context/Task_Mapping.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Context/VenderFeeLog_Mapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Context/VenderFeeLog_Mapping.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Context/WayBillInfo_Mapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Context/WayBillInfo_Mapping.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Context/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Context/packages.config -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/AbnormalWayBillLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/AbnormalWayBillLog.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/App.config -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/ApplicationInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/ApplicationInfo.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/Article.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/Article.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/B2CPreAlertLogs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/B2CPreAlertLogs.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/B2CPreAlterEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/B2CPreAlterEnum.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/Category.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/Category.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/CommonCountry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/CommonCountry.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/Country.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/Country.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/CurrencyCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/CurrencyCategory.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/Customer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/Customer.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/CustomerAmountRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/CustomerAmountRecord.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/CustomerBalance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/CustomerBalance.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/CustomerCreditInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/CustomerCreditInfo.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/CustomerEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/CustomerEnum.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/CustomerManagerInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/CustomerManagerInfo.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/CustomerOrderEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/CustomerOrderEnum.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/CustomerOrderInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/CustomerOrderInfo.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/CustomerOrderStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/CustomerOrderStatus.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/CustomerSourceInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/CustomerSourceInfo.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/CustomerUpdatedLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/CustomerUpdatedLog.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/DeliveryDeviation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/DeliveryDeviation.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/DeliveryFee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/DeliveryFee.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/DeliveryFeeInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/DeliveryFeeInfo.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/DictionaryType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/DictionaryType.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/EubAccountInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/EubAccountInfo.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/ExpressAccountInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/ExpressAccountInfo.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/ExpressRespons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/ExpressRespons.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/ExtModel/ArticleExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/ExtModel/ArticleExt.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/ExtModel/CountryExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/ExtModel/CountryExt.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/ExtModel/CustomerExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/ExtModel/CustomerExt.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/ExtModel/CustomerType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/ExtModel/CustomerType.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/ExtModel/EnableStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/ExtModel/EnableStatus.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/ExtModel/InFeeInfoExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/ExtModel/InFeeInfoExt.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/ExtModel/ResultExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/ExtModel/ResultExt.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/ExtModel/TaskModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/ExtModel/TaskModel.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/ExtModel/Vender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/ExtModel/Vender.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/FeeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/FeeType.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/FinancialEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/FinancialEnum.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/FuzhouPostLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/FuzhouPostLog.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/GZPacketAddressInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/GZPacketAddressInfo.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/GoodsTypeInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/GoodsTypeInfo.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/InStorageInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/InStorageInfo.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/InTackingLogInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/InTackingLogInfo.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/InTrackingLogInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/InTrackingLogInfo.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/InsuredCalculation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/InsuredCalculation.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/JobErrorLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/JobErrorLog.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/LMS.Data.Entity.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/LMS.Data.Entity.csproj -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/LMS_Db.Entities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/LMS_Db.Entities.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/LMS_Db.Entities.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/LMS_Db.Entities.tt -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/LMS_Enums.cs: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/LMS_Enums.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/LMS_Enums.tt -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/LMS_Enums.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/LMS_Enums.xml -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/LanguageInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/LanguageInfo.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/LithuaniaInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/LithuaniaInfo.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/MailExchangeBagLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/MailExchangeBagLog.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/MailHoldLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/MailHoldLog.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/MailPostBagInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/MailPostBagInfo.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/MailReturnGoodsLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/MailReturnGoodsLog.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/MailTotalPackageInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/MailTotalPackageInfo.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/MoneyChangeTypeInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/MoneyChangeTypeInfo.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/MouthCountry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/MouthCountry.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/NoForecastAbnormal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/NoForecastAbnormal.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/OperateLogEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/OperateLogEnum.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/OutStorageInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/OutStorageInfo.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/OutTrackingLogInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/OutTrackingLogInfo.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/Param/ArticleParam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/Param/ArticleParam.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/Param/CountryParam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/Param/CountryParam.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/Param/CustomerParam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/Param/CustomerParam.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/Param/EubWayBillParam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/Param/EubWayBillParam.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/Param/FinancialParam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/Param/FinancialParam.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/Param/FubListParam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/Param/FubListParam.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/Param/OrderListParam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/Param/OrderListParam.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/Param/PackageModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/Param/PackageModel.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/PaymentType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/PaymentType.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/ReceivingBill.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/ReceivingBill.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/ReceivingExpens.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/ReceivingExpens.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/ReceivingExpenseInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/ReceivingExpenseInfo.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/RechargeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/RechargeType.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/ReturnGoodEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/ReturnGoodEnum.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/ReturnGoods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/ReturnGoods.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/SenderInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/SenderInfo.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/SensitiveTypeInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/SensitiveTypeInfo.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/SequenceNumber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/SequenceNumber.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/SettlementDetailsInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/SettlementDetailsInfo.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/SettlementEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/SettlementEnum.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/SettlementInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/SettlementInfo.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/ShippingInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/ShippingInfo.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/SystemConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/SystemConfiguration.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/Task.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/Task.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/TotalPackageInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/TotalPackageInfo.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/TotalPackageTraceInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/TotalPackageTraceInfo.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/TrackingNumberInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/TrackingNumberInfo.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/UserModel/Permission.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/UserModel/Permission.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/UserModel/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/UserModel/User.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/VenderFeeLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/VenderFeeLog.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/WayBillChangeLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/WayBillChangeLog.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/WayBillEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/WayBillEnum.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/WayBillEventEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/WayBillEventEnum.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/WayBillEventLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/WayBillEventLog.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/WayBillInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/WayBillInfo.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/WayBillInfoImportTemp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/WayBillInfoImportTemp.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/WayBillPrintLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/WayBillPrintLog.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/WayBillTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/WayBillTemplate.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/WayBillTemplateInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/WayBillTemplateInfo.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/WaybillPackageDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/WaybillPackageDetail.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Entity/WeightAbnormalLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Entity/WeightAbnormalLog.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Enums/CurrencyRateEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Enums/CurrencyRateEnum.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Enums/CustomerEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Enums/CustomerEnum.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Enums/CustomersContactEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Enums/CustomersContactEnum.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Enums/GrouponSiteEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Enums/GrouponSiteEnum.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Enums/LMS.Data.Enums.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Enums/LMS.Data.Enums.csproj -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Enums/LMS_Enums.cs: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Enums/LMS_Enums.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Enums/LMS_Enums.tt -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Enums/LMS_Enums.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Enums/LMS_Enums.xml -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Enums/OrderDetailEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Enums/OrderDetailEnum.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Enums/OrderEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Enums/OrderEnum.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Enums/OrderPaymentEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Enums/OrderPaymentEnum.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Enums/OrderShippingEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Enums/OrderShippingEnum.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Enums/ProductEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Enums/ProductEnum.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Enums/ProductSynchroLogEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Enums/ProductSynchroLogEnum.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Enums/QuotationEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Enums/QuotationEnum.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Express/LMS.Data.Express.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Express/LMS.Data.Express.csproj -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Express/NLPOST/ErrorCode.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Express/NLPOST/ErrorCode.resx -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Repository/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Repository/App.config -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Repository/BaseRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Repository/BaseRepository.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Repository/BulkInsert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Repository/BulkInsert.cs -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Repository/IRepositories.cs: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Repository/IRepositories.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Repository/IRepositories.tt -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Repository/Repositories.cs: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Repository/Repositories.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Repository/Repositories.tt -------------------------------------------------------------------------------- /LMS.Data/LMS.Data.Repository/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Data/LMS.Data.Repository/packages.config -------------------------------------------------------------------------------- /LMS.GetLabelPrint.WebAPI/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.GetLabelPrint.WebAPI/Global.asax -------------------------------------------------------------------------------- /LMS.GetLabelPrint.WebAPI/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.GetLabelPrint.WebAPI/Global.asax.cs -------------------------------------------------------------------------------- /LMS.GetLabelPrint.WebAPI/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.GetLabelPrint.WebAPI/Web.Debug.config -------------------------------------------------------------------------------- /LMS.GetLabelPrint.WebAPI/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.GetLabelPrint.WebAPI/Web.Release.config -------------------------------------------------------------------------------- /LMS.GetLabelPrint.WebAPI/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.GetLabelPrint.WebAPI/Web.config -------------------------------------------------------------------------------- /LMS.GetLabelPrint.WebAPI/WorkContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.GetLabelPrint.WebAPI/WorkContext.cs -------------------------------------------------------------------------------- /LMS.GetLabelPrint.WebAPI/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.GetLabelPrint.WebAPI/favicon.ico -------------------------------------------------------------------------------- /LMS.GetLabelPrint.WebAPI/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.GetLabelPrint.WebAPI/packages.config -------------------------------------------------------------------------------- /LMS.PostalAPI/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.PostalAPI/App.config -------------------------------------------------------------------------------- /LMS.PostalAPI/App_Start/BundleConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.PostalAPI/App_Start/BundleConfig.cs -------------------------------------------------------------------------------- /LMS.PostalAPI/App_Start/FilterConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.PostalAPI/App_Start/FilterConfig.cs -------------------------------------------------------------------------------- /LMS.PostalAPI/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.PostalAPI/App_Start/RouteConfig.cs -------------------------------------------------------------------------------- /LMS.PostalAPI/App_Start/WebApiConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.PostalAPI/App_Start/WebApiConfig.cs -------------------------------------------------------------------------------- /LMS.PostalAPI/Content/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.PostalAPI/Content/Site.css -------------------------------------------------------------------------------- /LMS.PostalAPI/Content/themes/base/jquery-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.PostalAPI/Content/themes/base/jquery-ui.css -------------------------------------------------------------------------------- /LMS.PostalAPI/Controllers/AutoMapperProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.PostalAPI/Controllers/AutoMapperProfile.cs -------------------------------------------------------------------------------- /LMS.PostalAPI/Controllers/PostalController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.PostalAPI/Controllers/PostalController.cs -------------------------------------------------------------------------------- /LMS.PostalAPI/Controllers/TestController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.PostalAPI/Controllers/TestController.cs -------------------------------------------------------------------------------- /LMS.PostalAPI/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.PostalAPI/Global.asax -------------------------------------------------------------------------------- /LMS.PostalAPI/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.PostalAPI/Global.asax.cs -------------------------------------------------------------------------------- /LMS.PostalAPI/IOC/DependencyRegistrar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.PostalAPI/IOC/DependencyRegistrar.cs -------------------------------------------------------------------------------- /LMS.PostalAPI/IOC/WorkContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.PostalAPI/IOC/WorkContext.cs -------------------------------------------------------------------------------- /LMS.PostalAPI/Images/accent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.PostalAPI/Images/accent.png -------------------------------------------------------------------------------- /LMS.PostalAPI/Images/bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.PostalAPI/Images/bullet.png -------------------------------------------------------------------------------- /LMS.PostalAPI/Images/heroAccent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.PostalAPI/Images/heroAccent.png -------------------------------------------------------------------------------- /LMS.PostalAPI/Images/orderedList0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.PostalAPI/Images/orderedList0.png -------------------------------------------------------------------------------- /LMS.PostalAPI/Images/orderedList1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.PostalAPI/Images/orderedList1.png -------------------------------------------------------------------------------- /LMS.PostalAPI/Images/orderedList2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.PostalAPI/Images/orderedList2.png -------------------------------------------------------------------------------- /LMS.PostalAPI/Images/orderedList3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.PostalAPI/Images/orderedList3.png -------------------------------------------------------------------------------- /LMS.PostalAPI/Images/orderedList4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.PostalAPI/Images/orderedList4.png -------------------------------------------------------------------------------- /LMS.PostalAPI/Images/orderedList5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.PostalAPI/Images/orderedList5.png -------------------------------------------------------------------------------- /LMS.PostalAPI/Images/orderedList6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.PostalAPI/Images/orderedList6.png -------------------------------------------------------------------------------- /LMS.PostalAPI/Images/orderedList7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.PostalAPI/Images/orderedList7.png -------------------------------------------------------------------------------- /LMS.PostalAPI/Images/orderedList8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.PostalAPI/Images/orderedList8.png -------------------------------------------------------------------------------- /LMS.PostalAPI/Images/orderedList9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.PostalAPI/Images/orderedList9.png -------------------------------------------------------------------------------- /LMS.PostalAPI/LMS.PostalAPI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.PostalAPI/LMS.PostalAPI.csproj -------------------------------------------------------------------------------- /LMS.PostalAPI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.PostalAPI/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LMS.PostalAPI/Scripts/_references.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.PostalAPI/Scripts/_references.js -------------------------------------------------------------------------------- /LMS.PostalAPI/Scripts/jquery-1.7.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.PostalAPI/Scripts/jquery-1.7.1.js -------------------------------------------------------------------------------- /LMS.PostalAPI/Scripts/jquery-1.7.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.PostalAPI/Scripts/jquery-1.7.1.min.js -------------------------------------------------------------------------------- /LMS.PostalAPI/Scripts/jquery-ui-1.8.20.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.PostalAPI/Scripts/jquery-ui-1.8.20.js -------------------------------------------------------------------------------- /LMS.PostalAPI/Scripts/jquery-ui-1.8.20.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.PostalAPI/Scripts/jquery-ui-1.8.20.min.js -------------------------------------------------------------------------------- /LMS.PostalAPI/Scripts/jquery.unobtrusive-ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.PostalAPI/Scripts/jquery.unobtrusive-ajax.js -------------------------------------------------------------------------------- /LMS.PostalAPI/Scripts/jquery.validate-vsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.PostalAPI/Scripts/jquery.validate-vsdoc.js -------------------------------------------------------------------------------- /LMS.PostalAPI/Scripts/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.PostalAPI/Scripts/jquery.validate.js -------------------------------------------------------------------------------- /LMS.PostalAPI/Scripts/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.PostalAPI/Scripts/jquery.validate.min.js -------------------------------------------------------------------------------- /LMS.PostalAPI/Scripts/knockout-2.1.0.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.PostalAPI/Scripts/knockout-2.1.0.debug.js -------------------------------------------------------------------------------- /LMS.PostalAPI/Scripts/knockout-2.1.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.PostalAPI/Scripts/knockout-2.1.0.js -------------------------------------------------------------------------------- /LMS.PostalAPI/Scripts/modernizr-2.5.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.PostalAPI/Scripts/modernizr-2.5.3.js -------------------------------------------------------------------------------- /LMS.PostalAPI/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.PostalAPI/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /LMS.PostalAPI/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.PostalAPI/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /LMS.PostalAPI/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.PostalAPI/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /LMS.PostalAPI/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.PostalAPI/Views/Web.config -------------------------------------------------------------------------------- /LMS.PostalAPI/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.PostalAPI/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /LMS.PostalAPI/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.PostalAPI/Web.Debug.config -------------------------------------------------------------------------------- /LMS.PostalAPI/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.PostalAPI/Web.Release.config -------------------------------------------------------------------------------- /LMS.PostalAPI/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.PostalAPI/Web.config -------------------------------------------------------------------------------- /LMS.PostalAPI/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.PostalAPI/favicon.ico -------------------------------------------------------------------------------- /LMS.PostalAPI/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.PostalAPI/packages.config -------------------------------------------------------------------------------- /LMS.PrintLabel/LMS.PrintLabelAPI/Content/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.PrintLabel/LMS.PrintLabelAPI/Content/Site.css -------------------------------------------------------------------------------- /LMS.PrintLabel/LMS.PrintLabelAPI/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.PrintLabel/LMS.PrintLabelAPI/Global.asax -------------------------------------------------------------------------------- /LMS.PrintLabel/LMS.PrintLabelAPI/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.PrintLabel/LMS.PrintLabelAPI/Global.asax.cs -------------------------------------------------------------------------------- /LMS.PrintLabel/LMS.PrintLabelAPI/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.PrintLabel/LMS.PrintLabelAPI/Views/Web.config -------------------------------------------------------------------------------- /LMS.PrintLabel/LMS.PrintLabelAPI/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.PrintLabel/LMS.PrintLabelAPI/Web.Debug.config -------------------------------------------------------------------------------- /LMS.PrintLabel/LMS.PrintLabelAPI/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.PrintLabel/LMS.PrintLabelAPI/Web.config -------------------------------------------------------------------------------- /LMS.PrintLabel/LMS.PrintLabelAPI/WorkContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.PrintLabel/LMS.PrintLabelAPI/WorkContext.cs -------------------------------------------------------------------------------- /LMS.PrintLabel/LMS.PrintLabelAPI/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.PrintLabel/LMS.PrintLabelAPI/favicon.ico -------------------------------------------------------------------------------- /LMS.PrintLabel/LMS.PrintLabelAPI/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.PrintLabel/LMS.PrintLabelAPI/packages.config -------------------------------------------------------------------------------- /LMS.PrintLabel/LMS.PrintLabelWeb/CSS/print.css: -------------------------------------------------------------------------------- 1 | #Print_hidden{display:none;} -------------------------------------------------------------------------------- /LMS.PrintLabel/LMS.PrintLabelWeb/Content/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.PrintLabel/LMS.PrintLabelWeb/Content/Site.css -------------------------------------------------------------------------------- /LMS.PrintLabel/LMS.PrintLabelWeb/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.PrintLabel/LMS.PrintLabelWeb/Global.asax -------------------------------------------------------------------------------- /LMS.PrintLabel/LMS.PrintLabelWeb/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.PrintLabel/LMS.PrintLabelWeb/Global.asax.cs -------------------------------------------------------------------------------- /LMS.PrintLabel/LMS.PrintLabelWeb/JS/print.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.PrintLabel/LMS.PrintLabelWeb/JS/print.js -------------------------------------------------------------------------------- /LMS.PrintLabel/LMS.PrintLabelWeb/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.PrintLabel/LMS.PrintLabelWeb/Views/Web.config -------------------------------------------------------------------------------- /LMS.PrintLabel/LMS.PrintLabelWeb/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.PrintLabel/LMS.PrintLabelWeb/Web.Debug.config -------------------------------------------------------------------------------- /LMS.PrintLabel/LMS.PrintLabelWeb/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.PrintLabel/LMS.PrintLabelWeb/Web.config -------------------------------------------------------------------------------- /LMS.PrintLabel/LMS.PrintLabelWeb/WorkContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.PrintLabel/LMS.PrintLabelWeb/WorkContext.cs -------------------------------------------------------------------------------- /LMS.PrintLabel/LMS.PrintLabelWeb/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.PrintLabel/LMS.PrintLabelWeb/packages.config -------------------------------------------------------------------------------- /LMS.Services/LMS.Services.SF/LMSSFCommon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Services/LMS.Services.SF/LMSSFCommon.cs -------------------------------------------------------------------------------- /LMS.Services/LMS.Services.SF/LMSSFService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Services/LMS.Services.SF/LMSSFService.cs -------------------------------------------------------------------------------- /LMS.Services/LMS.Services.SF/Model/ErrorCode.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Services/LMS.Services.SF/Model/ErrorCode.resx -------------------------------------------------------------------------------- /LMS.Services/LMS.Services.SF/Model/OrderModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Services/LMS.Services.SF/Model/OrderModel.cs -------------------------------------------------------------------------------- /LMS.Services/LMS.Services.SF/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Services/LMS.Services.SF/app.config -------------------------------------------------------------------------------- /LMS.Services/LMS.Services.SF/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Services/LMS.Services.SF/packages.config -------------------------------------------------------------------------------- /LMS.Tests/LMS.Tests/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Tests/LMS.Tests/App.config -------------------------------------------------------------------------------- /LMS.Tests/LMS.Tests/LMS.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Tests/LMS.Tests/LMS.Tests.csproj -------------------------------------------------------------------------------- /LMS.Tests/LMS.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Tests/LMS.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LMS.Tests/LMS.Tests/UnitTest1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Tests/LMS.Tests/UnitTest1.cs -------------------------------------------------------------------------------- /LMS.Tests/LMS.Tests/XMLFile1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Tests/LMS.Tests/XMLFile1.xml -------------------------------------------------------------------------------- /LMS.Tests/LMS.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Tests/LMS.Tests/packages.config -------------------------------------------------------------------------------- /LMS.Tests/TestCreateWayBillNumber/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Tests/TestCreateWayBillNumber/App.config -------------------------------------------------------------------------------- /LMS.Tests/TestCreateWayBillNumber/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Tests/TestCreateWayBillNumber/Program.cs -------------------------------------------------------------------------------- /LMS.TrackingAPI/App_Start/BundleConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.TrackingAPI/App_Start/BundleConfig.cs -------------------------------------------------------------------------------- /LMS.TrackingAPI/App_Start/FilterConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.TrackingAPI/App_Start/FilterConfig.cs -------------------------------------------------------------------------------- /LMS.TrackingAPI/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.TrackingAPI/App_Start/RouteConfig.cs -------------------------------------------------------------------------------- /LMS.TrackingAPI/App_Start/WebApiConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.TrackingAPI/App_Start/WebApiConfig.cs -------------------------------------------------------------------------------- /LMS.TrackingAPI/Content/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.TrackingAPI/Content/Site.css -------------------------------------------------------------------------------- /LMS.TrackingAPI/Content/themes/base/jquery-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.TrackingAPI/Content/themes/base/jquery-ui.css -------------------------------------------------------------------------------- /LMS.TrackingAPI/Controllers/Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.TrackingAPI/Controllers/Test.cs -------------------------------------------------------------------------------- /LMS.TrackingAPI/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.TrackingAPI/Global.asax -------------------------------------------------------------------------------- /LMS.TrackingAPI/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.TrackingAPI/Global.asax.cs -------------------------------------------------------------------------------- /LMS.TrackingAPI/Images/accent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.TrackingAPI/Images/accent.png -------------------------------------------------------------------------------- /LMS.TrackingAPI/Images/bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.TrackingAPI/Images/bullet.png -------------------------------------------------------------------------------- /LMS.TrackingAPI/Images/heroAccent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.TrackingAPI/Images/heroAccent.png -------------------------------------------------------------------------------- /LMS.TrackingAPI/Images/orderedList0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.TrackingAPI/Images/orderedList0.png -------------------------------------------------------------------------------- /LMS.TrackingAPI/Images/orderedList1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.TrackingAPI/Images/orderedList1.png -------------------------------------------------------------------------------- /LMS.TrackingAPI/Images/orderedList2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.TrackingAPI/Images/orderedList2.png -------------------------------------------------------------------------------- /LMS.TrackingAPI/Images/orderedList3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.TrackingAPI/Images/orderedList3.png -------------------------------------------------------------------------------- /LMS.TrackingAPI/Images/orderedList4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.TrackingAPI/Images/orderedList4.png -------------------------------------------------------------------------------- /LMS.TrackingAPI/Images/orderedList5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.TrackingAPI/Images/orderedList5.png -------------------------------------------------------------------------------- /LMS.TrackingAPI/Images/orderedList6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.TrackingAPI/Images/orderedList6.png -------------------------------------------------------------------------------- /LMS.TrackingAPI/Images/orderedList7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.TrackingAPI/Images/orderedList7.png -------------------------------------------------------------------------------- /LMS.TrackingAPI/Images/orderedList8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.TrackingAPI/Images/orderedList8.png -------------------------------------------------------------------------------- /LMS.TrackingAPI/Images/orderedList9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.TrackingAPI/Images/orderedList9.png -------------------------------------------------------------------------------- /LMS.TrackingAPI/Infrastructure/WorkContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.TrackingAPI/Infrastructure/WorkContext.cs -------------------------------------------------------------------------------- /LMS.TrackingAPI/LMS.TrackingAPI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.TrackingAPI/LMS.TrackingAPI.csproj -------------------------------------------------------------------------------- /LMS.TrackingAPI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.TrackingAPI/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LMS.TrackingAPI/Scripts/_references.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.TrackingAPI/Scripts/_references.js -------------------------------------------------------------------------------- /LMS.TrackingAPI/Scripts/jquery-1.7.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.TrackingAPI/Scripts/jquery-1.7.1.js -------------------------------------------------------------------------------- /LMS.TrackingAPI/Scripts/jquery-1.7.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.TrackingAPI/Scripts/jquery-1.7.1.min.js -------------------------------------------------------------------------------- /LMS.TrackingAPI/Scripts/jquery-ui-1.8.20.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.TrackingAPI/Scripts/jquery-ui-1.8.20.js -------------------------------------------------------------------------------- /LMS.TrackingAPI/Scripts/jquery-ui-1.8.20.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.TrackingAPI/Scripts/jquery-ui-1.8.20.min.js -------------------------------------------------------------------------------- /LMS.TrackingAPI/Scripts/jquery.validate-vsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.TrackingAPI/Scripts/jquery.validate-vsdoc.js -------------------------------------------------------------------------------- /LMS.TrackingAPI/Scripts/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.TrackingAPI/Scripts/jquery.validate.js -------------------------------------------------------------------------------- /LMS.TrackingAPI/Scripts/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.TrackingAPI/Scripts/jquery.validate.min.js -------------------------------------------------------------------------------- /LMS.TrackingAPI/Scripts/knockout-2.1.0.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.TrackingAPI/Scripts/knockout-2.1.0.debug.js -------------------------------------------------------------------------------- /LMS.TrackingAPI/Scripts/knockout-2.1.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.TrackingAPI/Scripts/knockout-2.1.0.js -------------------------------------------------------------------------------- /LMS.TrackingAPI/Scripts/modernizr-2.5.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.TrackingAPI/Scripts/modernizr-2.5.3.js -------------------------------------------------------------------------------- /LMS.TrackingAPI/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.TrackingAPI/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /LMS.TrackingAPI/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.TrackingAPI/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /LMS.TrackingAPI/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.TrackingAPI/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /LMS.TrackingAPI/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.TrackingAPI/Views/Web.config -------------------------------------------------------------------------------- /LMS.TrackingAPI/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.TrackingAPI/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /LMS.TrackingAPI/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.TrackingAPI/Web.Debug.config -------------------------------------------------------------------------------- /LMS.TrackingAPI/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.TrackingAPI/Web.Release.config -------------------------------------------------------------------------------- /LMS.TrackingAPI/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.TrackingAPI/Web.config -------------------------------------------------------------------------------- /LMS.TrackingAPI/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.TrackingAPI/favicon.ico -------------------------------------------------------------------------------- /LMS.TrackingAPI/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.TrackingAPI/packages.config -------------------------------------------------------------------------------- /LMS.WCF.TrackNumber/0-ReadMe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.WCF.TrackNumber/0-ReadMe.html -------------------------------------------------------------------------------- /LMS.WCF.TrackNumber/Dto/ResutlInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.WCF.TrackNumber/Dto/ResutlInfo.cs -------------------------------------------------------------------------------- /LMS.WCF.TrackNumber/ITrackNumberAssign.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.WCF.TrackNumber/ITrackNumberAssign.cs -------------------------------------------------------------------------------- /LMS.WCF.TrackNumber/LMS.WCF.TrackNumber.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.WCF.TrackNumber/LMS.WCF.TrackNumber.csproj -------------------------------------------------------------------------------- /LMS.WCF.TrackNumber/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.WCF.TrackNumber/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LMS.WCF.TrackNumber/TrackNumberAssign.svc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.WCF.TrackNumber/TrackNumberAssign.svc -------------------------------------------------------------------------------- /LMS.WCF.TrackNumber/TrackNumberAssign.svc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.WCF.TrackNumber/TrackNumberAssign.svc.cs -------------------------------------------------------------------------------- /LMS.WCF.TrackNumber/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.WCF.TrackNumber/Web.Debug.config -------------------------------------------------------------------------------- /LMS.WCF.TrackNumber/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.WCF.TrackNumber/Web.Release.config -------------------------------------------------------------------------------- /LMS.WCF.TrackNumber/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.WCF.TrackNumber/Web.config -------------------------------------------------------------------------------- /LMS.WCF.TrackNumber/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.WCF.TrackNumber/packages.config -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/LMS.Web.FubTrack/Css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/LMS.Web.FubTrack/Css/base.css -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/LMS.Web.FubTrack/Global.asax: -------------------------------------------------------------------------------- 1 | <%@ Application Inherits="LMS.FrontDesk.Framework.Global" Language="C#" %> 2 | -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/LMS.Web.FubTrack/Images/89.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/LMS.Web.FubTrack/Images/89.GIF -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/LMS.Web.FubTrack/Images/n1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/LMS.Web.FubTrack/Images/n1.jpg -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/LMS.Web.FubTrack/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/LMS.Web.FubTrack/Web.config -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/LMS.Web.Track/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/LMS.Web.Track/404.html -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/LMS.Web.Track/Global.asax: -------------------------------------------------------------------------------- 1 | <%@ Application Inherits="LMS.FrontDesk.Framework.TrackGlobal" Language="C#" %> 2 | 3 | 4 | -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/LMS.Web.Track/Scripts/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/LMS.Web.Track/Scripts/client.js -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/LMS.Web.Track/Scripts/jq1.4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/LMS.Web.Track/Scripts/jq1.4.js -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/LMS.Web.Track/Scripts/qq/qq.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/LMS.Web.Track/Scripts/qq/qq.css -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/LMS.Web.Track/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/LMS.Web.Track/Views/Web.config -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/LMS.Web.Track/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/LMS.Web.Track/Web.config -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/LMS.Web.Track/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/LMS.Web.Track/css/base.css -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/LMS.Web.Track/css/public.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/LMS.Web.Track/css/public.css -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/LMS.Web.Track/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/LMS.Web.Track/css/style.css -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/LMS.Web.Track/images/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/LMS.Web.Track/images/bg.jpg -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/LMS.Web.Track/images/bn1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/LMS.Web.Track/images/bn1.jpg -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/LMS.Web.Track/images/mwd_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/LMS.Web.Track/images/mwd_bg.gif -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/LMS.Web.Track/js/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/LMS.Web.Track/js/client.js -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/LMS.Web.Track/js/clipboard.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/LMS.Web.Track/js/clipboard.swf -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/LMS.Web.Track/js/jq1.4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/LMS.Web.Track/js/jq1.4.js -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/LMS.Web.Track/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/LMS.Web.Track/packages.config -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/LMS.Web.YSD-Express/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/LMS.Web.YSD-Express/404.html -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/LMS.Web.YSD-Express/Global.asax: -------------------------------------------------------------------------------- 1 | <%@ Application Inherits="LMS.FrontDesk.Framework.Global" Language="C#" %> 2 | -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/LMS.Web.YSD-Express/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/LMS.Web.YSD-Express/Web.config -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/LMS.Web.YTWL/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/LMS.Web.YTWL/404.html -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/LMS.Web.YTWL/Global.asax: -------------------------------------------------------------------------------- 1 | <%@ Application Inherits="LMS.FrontDesk.Framework.Global" Language="C#" %> 2 | -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/LMS.Web.YTWL/Scripts/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/LMS.Web.YTWL/Scripts/client.js -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/LMS.Web.YTWL/Scripts/qq/brd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/LMS.Web.YTWL/Scripts/qq/brd.gif -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/LMS.Web.YTWL/Scripts/qq/ico.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/LMS.Web.YTWL/Scripts/qq/ico.gif -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/LMS.Web.YTWL/Scripts/qq/qq.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/LMS.Web.YTWL/Scripts/qq/qq.css -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/LMS.Web.YTWL/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/LMS.Web.YTWL/Views/Web.config -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/LMS.Web.YTWL/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/LMS.Web.YTWL/Web.Debug.config -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/LMS.Web.YTWL/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/LMS.Web.YTWL/Web.Release.config -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/LMS.Web.YTWL/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/LMS.Web.YTWL/Web.config -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/LMS.Web.YTWL/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/LMS.Web.YTWL/css/base.css -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/LMS.Web.YTWL/css/logistics.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/LMS.Web.YTWL/css/logistics.css -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/LMS.Web.YTWL/css/skin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/LMS.Web.YTWL/css/skin.css -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/LMS.Web.YTWL/images/345.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/LMS.Web.YTWL/images/345.jpg -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/LMS.Web.YTWL/images/404_03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/LMS.Web.YTWL/images/404_03.jpg -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/LMS.Web.YTWL/images/bd_icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/LMS.Web.YTWL/images/bd_icon.jpg -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/LMS.Web.YTWL/images/clock_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/LMS.Web.YTWL/images/clock_1.jpg -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/LMS.Web.YTWL/images/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/LMS.Web.YTWL/images/delete.png -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/LMS.Web.YTWL/images/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/LMS.Web.YTWL/images/grid.png -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/LMS.Web.YTWL/images/house.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/LMS.Web.YTWL/images/house.jpg -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/LMS.Web.YTWL/images/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/LMS.Web.YTWL/images/logo.jpg -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/LMS.Web.YTWL/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/LMS.Web.YTWL/images/logo.png -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/LMS.Web.YTWL/images/logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/LMS.Web.YTWL/images/logo2.png -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/LMS.Web.YTWL/images/logo_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/LMS.Web.YTWL/images/logo_1.png -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/LMS.Web.YTWL/images/logo_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/LMS.Web.YTWL/images/logo_2.jpg -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/LMS.Web.YTWL/images/menu_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/LMS.Web.YTWL/images/menu_in.png -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/LMS.Web.YTWL/images/more_03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/LMS.Web.YTWL/images/more_03.jpg -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/LMS.Web.YTWL/images/more_07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/LMS.Web.YTWL/images/more_07.jpg -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/LMS.Web.YTWL/images/partner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/LMS.Web.YTWL/images/partner.jpg -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/LMS.Web.YTWL/images/phone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/LMS.Web.YTWL/images/phone.jpg -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/LMS.Web.YTWL/images/quan_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/LMS.Web.YTWL/images/quan_1.png -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/LMS.Web.YTWL/images/quan_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/LMS.Web.YTWL/images/quan_2.png -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/LMS.Web.YTWL/images/rgst_03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/LMS.Web.YTWL/images/rgst_03.jpg -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/LMS.Web.YTWL/images/rgst_07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/LMS.Web.YTWL/images/rgst_07.jpg -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/LMS.Web.YTWL/images/rgst_11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/LMS.Web.YTWL/images/rgst_11.jpg -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/LMS.Web.YTWL/images/small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/LMS.Web.YTWL/images/small.jpg -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/LMS.Web.YTWL/images/u_home.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/LMS.Web.YTWL/images/u_home.jpg -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/LMS.Web.YTWL/images/year.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/LMS.Web.YTWL/images/year.png -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/LMS.Web.YTWL/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/LMS.Web.YTWL/packages.config -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/LMS.Web.YunPost/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/LMS.Web.YunPost/404.html -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/LMS.Web.YunPost/Global.asax: -------------------------------------------------------------------------------- 1 | <%@ Application Inherits="LMS.FrontDesk.Framework.Global" Language="C#" %> 2 | -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/LMS.Web.YunPost/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/LMS.Web.YunPost/Web.config -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/LMS.Web.YunPost/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/LMS.Web.YunPost/css/base.css -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/LMS.Web.YunPost/css/skin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/LMS.Web.YunPost/css/skin.css -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/LMS.Web.YunPost/images/345.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/LMS.Web.YunPost/images/345.jpg -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/LMS.Web.YunPost/images/grid.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/LMS.Web.YunPost/images/grid.jpg -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/LMS.Web.YunPost/images/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/LMS.Web.YunPost/images/grid.png -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/LMS.Web.YunPost/images/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/LMS.Web.YunPost/images/logo.jpg -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/LMS.Web.YunPost/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/LMS.Web.YunPost/images/logo.png -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/LMS.Web.YunPost/images/year.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/LMS.Web.YunPost/images/year.png -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/LMS.Web.YunPost/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/LMS.Web.YunPost/packages.config -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/LighTake.LMS.Web.FrontDesk/Global.asax: -------------------------------------------------------------------------------- 1 | <%@ Application Inherits="LMS.FrontDesk.Framework.Global" Language="C#" %> 2 | -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/MXBN.Web/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/MXBN.Web/404.html -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/MXBN.Web/Global.asax: -------------------------------------------------------------------------------- 1 | <%@ Application Inherits="LMS.FrontDesk.Framework.Global" Language="C#" %> 2 | 3 | -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/MXBN.Web/MXBN.Web.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/MXBN.Web/MXBN.Web.csproj -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/MXBN.Web/Scripts/qq/brd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/MXBN.Web/Scripts/qq/brd.gif -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/MXBN.Web/Scripts/qq/ico.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/MXBN.Web/Scripts/qq/ico.gif -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/MXBN.Web/Scripts/qq/qq.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/MXBN.Web/Scripts/qq/qq.css -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/MXBN.Web/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/MXBN.Web/Views/Web.config -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/MXBN.Web/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/MXBN.Web/Web.Debug.config -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/MXBN.Web/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/MXBN.Web/Web.Release.config -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/MXBN.Web/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/MXBN.Web/Web.config -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/MXBN.Web/css/logistics.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/MXBN.Web/css/logistics.css -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/MXBN.Web/css/skin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/MXBN.Web/css/skin.css -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/MXBN.Web/css/skin.v1.0.0.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/MXBN.Web/css/skin.v1.0.0.css -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/MXBN.Web/images/345.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/MXBN.Web/images/345.jpg -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/MXBN.Web/images/404_03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/MXBN.Web/images/404_03.jpg -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/MXBN.Web/images/546456_03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/MXBN.Web/images/546456_03.jpg -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/MXBN.Web/images/546456_07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/MXBN.Web/images/546456_07.jpg -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/MXBN.Web/images/546456_08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/MXBN.Web/images/546456_08.jpg -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/MXBN.Web/images/certificate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/MXBN.Web/images/certificate.png -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/MXBN.Web/images/circle_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/MXBN.Web/images/circle_1.png -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/MXBN.Web/images/circle_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/MXBN.Web/images/circle_2.png -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/MXBN.Web/images/default2_03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/MXBN.Web/images/default2_03.jpg -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/MXBN.Web/images/default2_07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/MXBN.Web/images/default2_07.jpg -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/MXBN.Web/images/default2_10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/MXBN.Web/images/default2_10.jpg -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/MXBN.Web/images/default_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/MXBN.Web/images/default_01.jpg -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/MXBN.Web/images/default_04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/MXBN.Web/images/default_04.jpg -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/MXBN.Web/images/default_06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/MXBN.Web/images/default_06.jpg -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/MXBN.Web/images/default_20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/MXBN.Web/images/default_20.jpg -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/MXBN.Web/images/default_25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/MXBN.Web/images/default_25.jpg -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/MXBN.Web/images/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/MXBN.Web/images/delete.png -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/MXBN.Web/images/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/MXBN.Web/images/grid.png -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/MXBN.Web/images/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/MXBN.Web/images/logo.jpg -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/MXBN.Web/images/logo_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/MXBN.Web/images/logo_white.png -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/MXBN.Web/images/menu_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/MXBN.Web/images/menu_in.png -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/MXBN.Web/images/menu_in_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/MXBN.Web/images/menu_in_03.png -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/MXBN.Web/images/menu_in_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/MXBN.Web/images/menu_in_05.png -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/MXBN.Web/images/menu_in_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/MXBN.Web/images/menu_in_07.png -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/MXBN.Web/images/menu_in_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/MXBN.Web/images/menu_in_09.png -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/MXBN.Web/images/menu_in_11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/MXBN.Web/images/menu_in_11.jpg -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/MXBN.Web/images/more_03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/MXBN.Web/images/more_03.jpg -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/MXBN.Web/images/more_07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/MXBN.Web/images/more_07.jpg -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/MXBN.Web/images/rgst_03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/MXBN.Web/images/rgst_03.jpg -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/MXBN.Web/images/rgst_07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/MXBN.Web/images/rgst_07.jpg -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/MXBN.Web/images/rgst_11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/MXBN.Web/images/rgst_11.jpg -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/MXBN.Web/images/share_03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/MXBN.Web/images/share_03.jpg -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/MXBN.Web/images/share_05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/MXBN.Web/images/share_05.jpg -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/MXBN.Web/images/share_07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/MXBN.Web/images/share_07.jpg -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/MXBN.Web/images/share_09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/MXBN.Web/images/share_09.jpg -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/MXBN.Web/images/small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/MXBN.Web/images/small.jpg -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/MXBN.Web/images/u_home.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/MXBN.Web/images/u_home.jpg -------------------------------------------------------------------------------- /LMS.Web.FrontDesk/MXBN.Web/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.FrontDesk/MXBN.Web/packages.config -------------------------------------------------------------------------------- /LMS.Web.UserCenter/LMS.UserCenter.Core/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.UserCenter/LMS.UserCenter.Core/Class1.cs -------------------------------------------------------------------------------- /LMS.Web.UserCenter/LMS.UserCenter.Web/Global.asax: -------------------------------------------------------------------------------- 1 | <%@ Application Inherits="LMS.UserCenter.Web.Framework.Global" Language="C#" %> 2 | -------------------------------------------------------------------------------- /LMS.Web.UserCenter/LMS.UserCenter.Web/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.UserCenter/LMS.UserCenter.Web/Web.config -------------------------------------------------------------------------------- /LMS.Web.UserCenter/LMS.UserCenter.Web/css/print.css: -------------------------------------------------------------------------------- 1 | #Print_hidden{display:none;} -------------------------------------------------------------------------------- /LMS.Web.UserCenter/LMS.UserCenter.Web/css/res.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.UserCenter/LMS.UserCenter.Web/css/res.css -------------------------------------------------------------------------------- /LMS.Web.UserCenter/LMS.UserCenter.Web/js/ifm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.UserCenter/LMS.UserCenter.Web/js/ifm.js -------------------------------------------------------------------------------- /LMS.Web.UserCenter/LMS.UserCenter.Web/js/print.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web.UserCenter/LMS.UserCenter.Web/js/print.js -------------------------------------------------------------------------------- /LMS.Web/LMS.Models/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LMS.Models/App.config -------------------------------------------------------------------------------- /LMS.Web/LMS.Models/AutoMapperProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LMS.Models/AutoMapperProfile.cs -------------------------------------------------------------------------------- /LMS.Web/LMS.Models/Category/CategoryModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LMS.Models/Category/CategoryModel.cs -------------------------------------------------------------------------------- /LMS.Web/LMS.Models/Country/CountryModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LMS.Models/Country/CountryModel.cs -------------------------------------------------------------------------------- /LMS.Web/LMS.Models/FeeManage/FeeTypeModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LMS.Models/FeeManage/FeeTypeModel.cs -------------------------------------------------------------------------------- /LMS.Web/LMS.Models/LMS.Models.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LMS.Models/LMS.Models.csproj -------------------------------------------------------------------------------- /LMS.Web/LMS.Models/Menu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LMS.Models/Menu.cs -------------------------------------------------------------------------------- /LMS.Web/LMS.Models/PagedCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LMS.Models/PagedCollection.cs -------------------------------------------------------------------------------- /LMS.Web/LMS.Models/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LMS.Models/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LMS.Web/LMS.Models/SearchFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LMS.Models/SearchFilter.cs -------------------------------------------------------------------------------- /LMS.Web/LMS.Models/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LMS.Models/packages.config -------------------------------------------------------------------------------- /LMS.Web/LMS.Web.Common/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LMS.Web.Common/Class1.cs -------------------------------------------------------------------------------- /LMS.Web/LMS.Web.Common/LMS.Web.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LMS.Web.Common/LMS.Web.Common.csproj -------------------------------------------------------------------------------- /LMS.Web/LMS.Web.Common/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LMS.Web.Common/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web.Framework/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LighTake.LMS.Web.Framework/App.config -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web.Framework/Global.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LighTake.LMS.Web.Framework/Global.cs -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web.Framework/WorkContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LighTake.LMS.Web.Framework/WorkContext.cs -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web/Css/Ajax_loading.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LighTake.LMS.Web/Css/Ajax_loading.css -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web/Css/CheckStand.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LighTake.LMS.Web/Css/CheckStand.css -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web/Css/Dropdownlist.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LighTake.LMS.Web/Css/Dropdownlist.css -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web/Css/Faile.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LighTake.LMS.Web/Css/Faile.wav -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web/Css/ShowBigPic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LighTake.LMS.Web/Css/ShowBigPic.css -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web/Css/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LighTake.LMS.Web/Css/Site.css -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web/Css/Success.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LighTake.LMS.Web/Css/Success.wav -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web/Css/Success2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LighTake.LMS.Web/Css/Success2.wav -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web/Css/buy-sale-base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LighTake.LMS.Web/Css/buy-sale-base.css -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web/Css/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LighTake.LMS.Web/Css/login.css -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web/Css/pager.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LighTake.LMS.Web/Css/pager.css -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web/Css/print.css: -------------------------------------------------------------------------------- 1 | #Print_hidden{display:none;} -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web/Css/public.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LighTake.LMS.Web/Css/public.css -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web/Css/publics.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LighTake.LMS.Web/Css/publics.css -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web/Global.asax: -------------------------------------------------------------------------------- 1 | <%@ Application Inherits="LighTake.LMS.Web.Framework.Global" Language="C#" %> 2 | -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web/HtmlPage1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LighTake.LMS.Web/HtmlPage1.html -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web/Images/Print/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LighTake.LMS.Web/Images/Print/logo.png -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web/Images/SF-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LighTake.LMS.Web/Images/SF-logo.jpg -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web/Images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LighTake.LMS.Web/Images/background.png -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web/Images/backimg1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LighTake.LMS.Web/Images/backimg1.png -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web/Images/backimg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LighTake.LMS.Web/Images/backimg2.png -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web/Images/backimg3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LighTake.LMS.Web/Images/backimg3.png -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web/Images/backimg4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LighTake.LMS.Web/Images/backimg4.png -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web/Images/backimg5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LighTake.LMS.Web/Images/backimg5.png -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web/Images/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LighTake.LMS.Web/Images/cancel.png -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web/Images/datePicker.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LighTake.LMS.Web/Images/datePicker.gif -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web/Images/delete_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LighTake.LMS.Web/Images/delete_2.png -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web/Images/downarrow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LighTake.LMS.Web/Images/downarrow.jpg -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web/Images/edit_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LighTake.LMS.Web/Images/edit_add.png -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web/Images/edit_remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LighTake.LMS.Web/Images/edit_remove.png -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web/Images/exclamation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LighTake.LMS.Web/Images/exclamation.png -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web/Images/filesave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LighTake.LMS.Web/Images/filesave.png -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web/Images/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LighTake.LMS.Web/Images/loader.gif -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web/Images/loader1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LighTake.LMS.Web/Images/loader1.gif -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web/Images/loading.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LighTake.LMS.Web/Images/loading.jpg -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web/Images/login_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LighTake.LMS.Web/Images/login_2.png -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web/Images/login_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LighTake.LMS.Web/Images/login_bg.png -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web/Images/logo_03.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LighTake.LMS.Web/Images/logo_03.gif -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web/Images/logo_07.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LighTake.LMS.Web/Images/logo_07.gif -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web/Images/logo_10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LighTake.LMS.Web/Images/logo_10.gif -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web/Images/logo_17.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LighTake.LMS.Web/Images/logo_17.gif -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web/Images/main_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LighTake.LMS.Web/Images/main_img.png -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web/Images/main_img6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LighTake.LMS.Web/Images/main_img6.png -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web/Images/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LighTake.LMS.Web/Images/menu.png -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web/Images/menu_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LighTake.LMS.Web/Images/menu_arrow.png -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web/Images/menu_l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LighTake.LMS.Web/Images/menu_l.png -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web/Images/menu_minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LighTake.LMS.Web/Images/menu_minus.png -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web/Images/menu_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LighTake.LMS.Web/Images/menu_plus.png -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web/Images/menu_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LighTake.LMS.Web/Images/menu_r.png -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web/Images/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LighTake.LMS.Web/Images/minus.png -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web/Images/noImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LighTake.LMS.Web/Images/noImage.jpg -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web/Images/pencil_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LighTake.LMS.Web/Images/pencil_edit.png -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web/Images/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LighTake.LMS.Web/Images/plus.png -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web/Images/quick_l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LighTake.LMS.Web/Images/quick_l.png -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web/Images/quick_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LighTake.LMS.Web/Images/quick_r.png -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web/Images/tick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LighTake.LMS.Web/Images/tick.png -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web/Images/title_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LighTake.LMS.Web/Images/title_link.png -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web/LighTake.LMS.Web.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LighTake.LMS.Web/LighTake.LMS.Web.csproj -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web/Scripts/Ajax_loading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LighTake.LMS.Web/Scripts/Ajax_loading.js -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web/Scripts/MicrosoftAjax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LighTake.LMS.Web/Scripts/MicrosoftAjax.js -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web/Scripts/QuickPrint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LighTake.LMS.Web/Scripts/QuickPrint.js -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web/Scripts/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LighTake.LMS.Web/Scripts/common.js -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web/Scripts/dis_js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LighTake.LMS.Web/Scripts/dis_js.js -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web/Scripts/dropdownlist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LighTake.LMS.Web/Scripts/dropdownlist.js -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web/Scripts/easyloader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LighTake.LMS.Web/Scripts/easyloader.js -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web/Scripts/easyui-public.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LighTake.LMS.Web/Scripts/easyui-public.js -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web/Scripts/iCarousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LighTake.LMS.Web/Scripts/iCarousel.js -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web/Scripts/jq1.4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LighTake.LMS.Web/Scripts/jq1.4.js -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web/Scripts/jquery-1.7.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LighTake.LMS.Web/Scripts/jquery-1.7.1.js -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web/Scripts/jquery-1.8.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LighTake.LMS.Web/Scripts/jquery-1.8.0.js -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web/Scripts/jquery.extend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LighTake.LMS.Web/Scripts/jquery.extend.js -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web/Scripts/liger/jquery-validation/version.txt: -------------------------------------------------------------------------------- 1 | 1.8.0 2 | -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web/Scripts/liger/json2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LighTake.LMS.Web/Scripts/liger/json2.js -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web/Scripts/order.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LighTake.LMS.Web/Scripts/order.js -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web/Scripts/quotation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LighTake.LMS.Web/Scripts/quotation.js -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web/Scripts/smooth.menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LighTake.LMS.Web/Scripts/smooth.menu.js -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web/Scripts/tojson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LighTake.LMS.Web/Scripts/tojson.js -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web/Scripts/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LighTake.LMS.Web/Scripts/util.js -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web/Views/News/News.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LighTake.LMS.Web/Views/News/News.cshtml -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web/Views/Order/List.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LighTake.LMS.Web/Views/Order/List.cshtml -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web/Views/Shared/Header.Menu.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = null; 3 | } 4 | @Html.Action("TopMenu", "Common") 5 | -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web/Views/User/Home/Index.cshtml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web/Views/User/Login.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LighTake.LMS.Web/Views/User/Login.cshtml -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LighTake.LMS.Web/Views/Web.config -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LighTake.LMS.Web/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LighTake.LMS.Web/Web.Debug.config -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LighTake.LMS.Web/Web.Release.config -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LighTake.LMS.Web/Web.config -------------------------------------------------------------------------------- /LMS.Web/LighTake.LMS.Web/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.Web/LighTake.LMS.Web/packages.config -------------------------------------------------------------------------------- /LMS.WebAPI.API/LMS.WebAPI.Client/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.WebAPI.API/LMS.WebAPI.Client/Global.asax -------------------------------------------------------------------------------- /LMS.WebAPI.API/LMS.WebAPI.Client/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.WebAPI.API/LMS.WebAPI.Client/Global.asax.cs -------------------------------------------------------------------------------- /LMS.WebAPI.API/LMS.WebAPI.Client/Response.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.WebAPI.API/LMS.WebAPI.Client/Response.cs -------------------------------------------------------------------------------- /LMS.WebAPI.API/LMS.WebAPI.Client/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.WebAPI.API/LMS.WebAPI.Client/Web.Debug.config -------------------------------------------------------------------------------- /LMS.WebAPI.API/LMS.WebAPI.Client/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.WebAPI.API/LMS.WebAPI.Client/Web.config -------------------------------------------------------------------------------- /LMS.WebAPI.API/LMS.WebAPI.Client/WorkContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.WebAPI.API/LMS.WebAPI.Client/WorkContext.cs -------------------------------------------------------------------------------- /LMS.WebAPI.API/LMS.WebAPI.Client/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.WebAPI.API/LMS.WebAPI.Client/packages.config -------------------------------------------------------------------------------- /LMS.WebAPI/App_Start/WebApiConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.WebAPI/App_Start/WebApiConfig.cs -------------------------------------------------------------------------------- /LMS.WebAPI/Controllers/ApiController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.WebAPI/Controllers/ApiController.cs -------------------------------------------------------------------------------- /LMS.WebAPI/Controllers/ClientUpdateController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.WebAPI/Controllers/ClientUpdateController.cs -------------------------------------------------------------------------------- /LMS.WebAPI/Controllers/LmsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.WebAPI/Controllers/LmsController.cs -------------------------------------------------------------------------------- /LMS.WebAPI/Controllers/TestController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.WebAPI/Controllers/TestController.cs -------------------------------------------------------------------------------- /LMS.WebAPI/Controllers/WayBillController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.WebAPI/Controllers/WayBillController.cs -------------------------------------------------------------------------------- /LMS.WebAPI/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.WebAPI/Global.asax -------------------------------------------------------------------------------- /LMS.WebAPI/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.WebAPI/Global.asax.cs -------------------------------------------------------------------------------- /LMS.WebAPI/IOC/LMSWebAPIDependencyRegistrar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.WebAPI/IOC/LMSWebAPIDependencyRegistrar.cs -------------------------------------------------------------------------------- /LMS.WebAPI/LMS.WebAPI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.WebAPI/LMS.WebAPI.csproj -------------------------------------------------------------------------------- /LMS.WebAPI/Model/AutoMapperProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.WebAPI/Model/AutoMapperProfile.cs -------------------------------------------------------------------------------- /LMS.WebAPI/Model/CustomerInStorageModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.WebAPI/Model/CustomerInStorageModel.cs -------------------------------------------------------------------------------- /LMS.WebAPI/Model/CustomerModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.WebAPI/Model/CustomerModel.cs -------------------------------------------------------------------------------- /LMS.WebAPI/Model/FeeInfoModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.WebAPI/Model/FeeInfoModel.cs -------------------------------------------------------------------------------- /LMS.WebAPI/Model/InFeeTotalInfoExtModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.WebAPI/Model/InFeeTotalInfoExtModel.cs -------------------------------------------------------------------------------- /LMS.WebAPI/Model/InStorageFormModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.WebAPI/Model/InStorageFormModel.cs -------------------------------------------------------------------------------- /LMS.WebAPI/Model/InStorageInfoModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.WebAPI/Model/InStorageInfoModel.cs -------------------------------------------------------------------------------- /LMS.WebAPI/Model/InStorageModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.WebAPI/Model/InStorageModel.cs -------------------------------------------------------------------------------- /LMS.WebAPI/Model/InStorageSaveModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.WebAPI/Model/InStorageSaveModel.cs -------------------------------------------------------------------------------- /LMS.WebAPI/Model/InStorageWayBillModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.WebAPI/Model/InStorageWayBillModel.cs -------------------------------------------------------------------------------- /LMS.WebAPI/Model/LoginModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.WebAPI/Model/LoginModel.cs -------------------------------------------------------------------------------- /LMS.WebAPI/Model/ResponseResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.WebAPI/Model/ResponseResult.cs -------------------------------------------------------------------------------- /LMS.WebAPI/Model/UserModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.WebAPI/Model/UserModel.cs -------------------------------------------------------------------------------- /LMS.WebAPI/Model/WayBillInfoModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.WebAPI/Model/WayBillInfoModel.cs -------------------------------------------------------------------------------- /LMS.WebAPI/Model/WayBillInfoSaveModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.WebAPI/Model/WayBillInfoSaveModel.cs -------------------------------------------------------------------------------- /LMS.WebAPI/Model/WayBillModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.WebAPI/Model/WayBillModel.cs -------------------------------------------------------------------------------- /LMS.WebAPI/Model/WaybillPackageDetailModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.WebAPI/Model/WaybillPackageDetailModel.cs -------------------------------------------------------------------------------- /LMS.WebAPI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.WebAPI/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LMS.WebAPI/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.WebAPI/Web.Debug.config -------------------------------------------------------------------------------- /LMS.WebAPI/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.WebAPI/Web.Release.config -------------------------------------------------------------------------------- /LMS.WebAPI/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.WebAPI/Web.config -------------------------------------------------------------------------------- /LMS.WebAPI/WorkContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.WebAPI/WorkContext.cs -------------------------------------------------------------------------------- /LMS.WebAPI/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.WebAPI/packages.config -------------------------------------------------------------------------------- /LMS.WebApi.Client.Test/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.WebApi.Client.Test/App.config -------------------------------------------------------------------------------- /LMS.WebApi.Client.Test/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.WebApi.Client.Test/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LMS.WebApi.Client.Test/UnitTest1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.WebApi.Client.Test/UnitTest1.cs -------------------------------------------------------------------------------- /LMS.WebApi.Client.Test/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.WebApi.Client.Test/packages.config -------------------------------------------------------------------------------- /LMS.WinForm.Framework/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.WinForm.Framework/App.config -------------------------------------------------------------------------------- /LMS.WinForm.Framework/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.WinForm.Framework/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LMS.WinForm.Framework/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.WinForm.Framework/packages.config -------------------------------------------------------------------------------- /LMS.WinForm/LMS.Client.QuickPrint/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.WinForm/LMS.Client.QuickPrint/MainForm.cs -------------------------------------------------------------------------------- /LMS.WinForm/LMS.Client.QuickPrint/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.WinForm/LMS.Client.QuickPrint/MainForm.resx -------------------------------------------------------------------------------- /LMS.WinForm/LMS.Client.QuickPrint/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.WinForm/LMS.Client.QuickPrint/Program.cs -------------------------------------------------------------------------------- /LMS.WinForm/LMS.Client.QuickPrint/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.WinForm/LMS.Client.QuickPrint/app.config -------------------------------------------------------------------------------- /LMS.WinForm/LMS.Client.Setup/LMS.Client.Setup.isl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.WinForm/LMS.Client.Setup/LMS.Client.Setup.isl -------------------------------------------------------------------------------- /LMS.WinForm/LMS.Client.WeightHelper/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.WinForm/LMS.Client.WeightHelper/MainForm.cs -------------------------------------------------------------------------------- /LMS.WinForm/LMS.Client.WeightHelper/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.WinForm/LMS.Client.WeightHelper/MainForm.resx -------------------------------------------------------------------------------- /LMS.WinForm/LMS.Client.WeightHelper/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.WinForm/LMS.Client.WeightHelper/Program.cs -------------------------------------------------------------------------------- /LMS.WinForm/LMS.WinForm.Client/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.WinForm/LMS.WinForm.Client/App.config -------------------------------------------------------------------------------- /LMS.WinForm/LMS.WinForm.Client/FileConfig.ini: -------------------------------------------------------------------------------- 1 | [UserInfo] 2 | AccountId=admin 3 | -------------------------------------------------------------------------------- /LMS.WinForm/LMS.WinForm.Client/FrmAbout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.WinForm/LMS.WinForm.Client/FrmAbout.cs -------------------------------------------------------------------------------- /LMS.WinForm/LMS.WinForm.Client/FrmAbout.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.WinForm/LMS.WinForm.Client/FrmAbout.resx -------------------------------------------------------------------------------- /LMS.WinForm/LMS.WinForm.Client/FrmLogin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.WinForm/LMS.WinForm.Client/FrmLogin.cs -------------------------------------------------------------------------------- /LMS.WinForm/LMS.WinForm.Client/FrmLogin.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.WinForm/LMS.WinForm.Client/FrmLogin.resx -------------------------------------------------------------------------------- /LMS.WinForm/LMS.WinForm.Client/FrmMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.WinForm/LMS.WinForm.Client/FrmMain.cs -------------------------------------------------------------------------------- /LMS.WinForm/LMS.WinForm.Client/FrmMain.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.WinForm/LMS.WinForm.Client/FrmMain.resx -------------------------------------------------------------------------------- /LMS.WinForm/LMS.WinForm.Client/FrmPrintSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.WinForm/LMS.WinForm.Client/FrmPrintSetting.cs -------------------------------------------------------------------------------- /LMS.WinForm/LMS.WinForm.Client/FrmScaleSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.WinForm/LMS.WinForm.Client/FrmScaleSetting.cs -------------------------------------------------------------------------------- /LMS.WinForm/LMS.WinForm.Client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.WinForm/LMS.WinForm.Client/Program.cs -------------------------------------------------------------------------------- /LMS.WinForm/LMS.WinForm.Client/Resource/Faile.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.WinForm/LMS.WinForm.Client/Resource/Faile.wav -------------------------------------------------------------------------------- /LMS.WinForm/LMS.WinForm.Client/Resource/logo4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.WinForm/LMS.WinForm.Client/Resource/logo4.png -------------------------------------------------------------------------------- /LMS.WinForm/LMS.WinForm.Client/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.WinForm/LMS.WinForm.Client/favicon.ico -------------------------------------------------------------------------------- /LMS.WinForm/LMS.WinForm.Client/frmLoading.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.WinForm/LMS.WinForm.Client/frmLoading.cs -------------------------------------------------------------------------------- /LMS.WinForm/LMS.WinForm.Client/frmLoading.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.WinForm/LMS.WinForm.Client/frmLoading.resx -------------------------------------------------------------------------------- /LMS.WinForm/LMS.WinForm.Client/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.WinForm/LMS.WinForm.Client/packages.config -------------------------------------------------------------------------------- /LMS.WinForm/WinFormSetup/WinFormSetup.isl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.WinForm/WinFormSetup/WinFormSetup.isl -------------------------------------------------------------------------------- /LMS.WinForm/WinFormSetup/WinFormSetup.isproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS.WinForm/WinFormSetup/WinFormSetup.isproj -------------------------------------------------------------------------------- /LMS系统命名规则.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LMS系统命名规则.txt -------------------------------------------------------------------------------- /LighTake.Infrastructure/.nuget/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LighTake.Infrastructure/.nuget/NuGet.Config -------------------------------------------------------------------------------- /LighTake.Infrastructure/.nuget/NuGet.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LighTake.Infrastructure/.nuget/NuGet.targets -------------------------------------------------------------------------------- /LighTake.LMS.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LighTake.LMS.sln -------------------------------------------------------------------------------- /LighTake.MQS/Libs/HtmlSanitizationLibrary.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LighTake.MQS/Libs/HtmlSanitizationLibrary.dll -------------------------------------------------------------------------------- /LighTake.MQS/Libs/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LighTake.MQS/Libs/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /LighTake.MQS/Libs/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LighTake.MQS/Libs/log4net.dll -------------------------------------------------------------------------------- /LighTake.MQS/Libs/log4net.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LighTake.MQS/Libs/log4net.xml -------------------------------------------------------------------------------- /LighTake.MQS/LighTake.MQS.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LighTake.MQS/LighTake.MQS.sln -------------------------------------------------------------------------------- /LighTake.MQS/LighTake.MQS/Dto/QueueModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LighTake.MQS/LighTake.MQS/Dto/QueueModel.cs -------------------------------------------------------------------------------- /LighTake.MQS/LighTake.MQS/ILtQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LighTake.MQS/LighTake.MQS/ILtQueue.cs -------------------------------------------------------------------------------- /LighTake.MQS/LighTake.MQS/ILtTaskQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LighTake.MQS/LighTake.MQS/ILtTaskQueue.cs -------------------------------------------------------------------------------- /LighTake.MQS/LighTake.MQS/IQueueMini.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LighTake.MQS/LighTake.MQS/IQueueMini.cs -------------------------------------------------------------------------------- /LighTake.MQS/LighTake.MQS/LighTake.MQS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LighTake.MQS/LighTake.MQS/LighTake.MQS.csproj -------------------------------------------------------------------------------- /LighTake.MQS/LighTake.MQS/LtQueue.svc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LighTake.MQS/LighTake.MQS/LtQueue.svc -------------------------------------------------------------------------------- /LighTake.MQS/LighTake.MQS/LtQueue.svc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LighTake.MQS/LighTake.MQS/LtQueue.svc.cs -------------------------------------------------------------------------------- /LighTake.MQS/LighTake.MQS/LtTaskQueue.svc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LighTake.MQS/LighTake.MQS/LtTaskQueue.svc -------------------------------------------------------------------------------- /LighTake.MQS/LighTake.MQS/LtTaskQueue.svc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LighTake.MQS/LighTake.MQS/LtTaskQueue.svc.cs -------------------------------------------------------------------------------- /LighTake.MQS/LighTake.MQS/QueueMini.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LighTake.MQS/LighTake.MQS/QueueMini.cs -------------------------------------------------------------------------------- /LighTake.MQS/LighTake.MQS/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LighTake.MQS/LighTake.MQS/Web.Debug.config -------------------------------------------------------------------------------- /LighTake.MQS/LighTake.MQS/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LighTake.MQS/LighTake.MQS/Web.Release.config -------------------------------------------------------------------------------- /LighTake.MQS/LighTake.MQS/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LighTake.MQS/LighTake.MQS/Web.config -------------------------------------------------------------------------------- /LighTake.MQS/MQS_Data.Context/App.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LighTake.MQS/MQS_Data.Context/App.Config -------------------------------------------------------------------------------- /LighTake.MQS/MQS_Data.Context/MQS_Data.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LighTake.MQS/MQS_Data.Context/MQS_Data.cs -------------------------------------------------------------------------------- /LighTake.MQS/MQS_Data.Context/MQS_Data.edmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LighTake.MQS/MQS_Data.Context/MQS_Data.edmx -------------------------------------------------------------------------------- /LighTake.MQS/MQS_Data.Context/MQS_Data.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LighTake.MQS/MQS_Data.Context/MQS_Data.tt -------------------------------------------------------------------------------- /LighTake.MQS/MQS_Data.Context/TaskQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LighTake.MQS/MQS_Data.Context/TaskQueue.cs -------------------------------------------------------------------------------- /LighTake.MQS/MQS_Data.Context/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LighTake.MQS/MQS_Data.Context/packages.config -------------------------------------------------------------------------------- /LighTake.MQS/MQS_Tests/MQS_Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LighTake.MQS/MQS_Tests/MQS_Tests.csproj -------------------------------------------------------------------------------- /LighTake.MQS/MQS_Tests/UnitTest1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LighTake.MQS/MQS_Tests/UnitTest1.cs -------------------------------------------------------------------------------- /LighTake.MQS/MQS_Tests/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LighTake.MQS/MQS_Tests/app.config -------------------------------------------------------------------------------- /LighTake.MQS/TaskEnqueuer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LighTake.MQS/TaskEnqueuer/Program.cs -------------------------------------------------------------------------------- /LighTake.MQS/TaskEnqueuer/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LighTake.MQS/TaskEnqueuer/app.config -------------------------------------------------------------------------------- /LighTake.MQS/packages/repositories.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/LighTake.MQS/packages/repositories.config -------------------------------------------------------------------------------- /OrderUploadValidatorTest/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/OrderUploadValidatorTest/Program.cs -------------------------------------------------------------------------------- /OrderUploadValidatorTest/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/OrderUploadValidatorTest/app.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # yunExpress 2 | 云途物流后台,客户订单前端,云途官网 3 | -------------------------------------------------------------------------------- /UpgradeLog.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/UpgradeLog.htm -------------------------------------------------------------------------------- /libs/AntiXSSLibrary.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/libs/AntiXSSLibrary.dll -------------------------------------------------------------------------------- /libs/Aspose.BarCode.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/libs/Aspose.BarCode.dll -------------------------------------------------------------------------------- /libs/Aspose.BarCodeRecognition.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/libs/Aspose.BarCodeRecognition.dll -------------------------------------------------------------------------------- /libs/DbHelper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/libs/DbHelper.dll -------------------------------------------------------------------------------- /libs/DevComponents.DotNetBar2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/libs/DevComponents.DotNetBar2.dll -------------------------------------------------------------------------------- /libs/EntityFramework.SqlServer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/libs/EntityFramework.SqlServer.dll -------------------------------------------------------------------------------- /libs/FastReport.Bars.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/libs/FastReport.Bars.dll -------------------------------------------------------------------------------- /libs/FastReport.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/libs/FastReport.dll -------------------------------------------------------------------------------- /libs/HtmlSanitizationLibrary.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/libs/HtmlSanitizationLibrary.dll -------------------------------------------------------------------------------- /libs/ICSharpCode.SharpZipLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/libs/ICSharpCode.SharpZipLib.dll -------------------------------------------------------------------------------- /libs/Interop.Acrobat.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/libs/Interop.Acrobat.dll -------------------------------------------------------------------------------- /libs/Lightake.EUB.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/libs/Lightake.EUB.Common.dll -------------------------------------------------------------------------------- /libs/Lightake.UEB.API.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/libs/Lightake.UEB.API.dll -------------------------------------------------------------------------------- /libs/NPOI.OOXML.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/libs/NPOI.OOXML.dll -------------------------------------------------------------------------------- /libs/NPOI.OpenXml4Net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/libs/NPOI.OpenXml4Net.dll -------------------------------------------------------------------------------- /libs/NPOI.OpenXmlFormats.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/libs/NPOI.OpenXmlFormats.dll -------------------------------------------------------------------------------- /libs/NPOI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/libs/NPOI.dll -------------------------------------------------------------------------------- /libs/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/libs/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /libs/RazorEngine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/libs/RazorEngine.dll -------------------------------------------------------------------------------- /libs/SmartThreadPool.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/libs/SmartThreadPool.dll -------------------------------------------------------------------------------- /libs/System.Net.Http.Formatting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/libs/System.Net.Http.Formatting.dll -------------------------------------------------------------------------------- /libs/System.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/libs/System.Net.Http.dll -------------------------------------------------------------------------------- /物流系统更新日志.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yung-chu/yunExpress/HEAD/物流系统更新日志.txt --------------------------------------------------------------------------------