├── .gitattributes ├── .gitignore ├── DB ├── P_WMS_ProcessInspectBill.sql ├── YUX-新增数据库脚本.sql ├── Zhuqp-新增数据库脚本.sql ├── proc.sql ├── script.sql ├── 数据库表.xlsx └── 新增功能的数据库脚本.sql ├── Doc ├── AccessDatabaseEngine.exe ├── 数据库字仓库典.CHM ├── 数据库表.xlsx ├── 江西新电汽车空调系统有限公司-库存管理系统-需求文档1.0.docx └── 部署文档.docx ├── README.md ├── XDWMS-Ymnets.sln └── src ├── Apps.BLL ├── AccountBLL.cs ├── App.config ├── Apps.BLL.csproj ├── AutoGenerated │ ├── PartialBLL.cs │ ├── PartialBLL.tt │ ├── PartialBLL_修改的内容.txt │ ├── Virtual_Flow_ExternalBLL.cs │ ├── Virtual_Flow_FormAttrBLL.cs │ ├── Virtual_Flow_FormBLL.cs │ ├── Virtual_Flow_FormContentBLL.cs │ ├── Virtual_Flow_FormContentStepCheckBLL.cs │ ├── Virtual_Flow_FormContentStepCheckStateBLL.cs │ ├── Virtual_Flow_SealBLL.cs │ ├── Virtual_Flow_StepBLL.cs │ ├── Virtual_Flow_StepRuleBLL.cs │ ├── Virtual_Flow_TypeBLL.cs │ ├── Virtual_JOB_TASKJOBSBLL.cs │ ├── Virtual_JOB_TASKJOBS_LOGBLL.cs │ ├── Virtual_MIS_ArticleBLL.cs │ ├── Virtual_MIS_Article_AlbumsBLL.cs │ ├── Virtual_MIS_Article_CategoryBLL.cs │ ├── Virtual_MIS_Article_CommentBLL.cs │ ├── Virtual_MIS_WebIM_CommonTalkBLL.cs │ ├── Virtual_MIS_WebIM_MessageBLL.cs │ ├── Virtual_MIS_WebIM_Message_RecBLL.cs │ ├── Virtual_MIS_WebIM_RecentContactBLL.cs │ ├── Virtual_Spl_ContactCompanyBLL.cs │ ├── Virtual_Spl_ContactCompanyCategoryBLL.cs │ ├── Virtual_Spl_EarlyWareingGoodBLL.cs │ ├── Virtual_Spl_InOutCategoryBLL.cs │ ├── Virtual_Spl_PersonBLL.cs │ ├── Virtual_Spl_ProductBLL.cs │ ├── Virtual_Spl_ProductCategoryBLL.cs │ ├── Virtual_Spl_TestClassBLL.cs │ ├── Virtual_Spl_TestStudentsBLL.cs │ ├── Virtual_Spl_WareCategoryBLL.cs │ ├── Virtual_Spl_WareCheckTotalBLL.cs │ ├── Virtual_Spl_WareDetailsBLL.cs │ ├── Virtual_Spl_WareStockPileBLL.cs │ ├── Virtual_Spl_WareUnitConvertBLL.cs │ ├── Virtual_Spl_WarehouseAllocationBLL.cs │ ├── Virtual_Spl_WarehouseAllocationDetailsBLL.cs │ ├── Virtual_Spl_WarehouseBLL.cs │ ├── Virtual_Spl_WarehouseCategoryBLL.cs │ ├── Virtual_Spl_WarehouseWarrantBLL.cs │ ├── Virtual_Spl_WarehouseWarrantDetailsBLL.cs │ ├── Virtual_Spl_WarehouseWarrantDetailsOUTBLL.cs │ ├── Virtual_Spl_WarehouseWarrantOUTBLL.cs │ ├── Virtual_SysAreasBLL.cs │ ├── Virtual_SysCalendarPlanBLL.cs │ ├── Virtual_SysExceptionBLL.cs │ ├── Virtual_SysImportExcelLogBLL.cs │ ├── Virtual_SysLogBLL.cs │ ├── Virtual_SysModuleBLL.cs │ ├── Virtual_SysModuleDataFilterBLL.cs │ ├── Virtual_SysModuleOperateBLL.cs │ ├── Virtual_SysParamBLL.cs │ ├── Virtual_SysPositionBLL.cs │ ├── Virtual_SysRightBLL.cs │ ├── Virtual_SysRightDataFilterBLL.cs │ ├── Virtual_SysRightOperateBLL.cs │ ├── Virtual_SysRoleBLL.cs │ ├── Virtual_SysSampleBLL.cs │ ├── Virtual_SysSettingsBLL.cs │ ├── Virtual_SysStructBLL.cs │ ├── Virtual_SysUserBLL.cs │ ├── Virtual_SysUserConfigBLL.cs │ ├── Virtual_WC_GroupBLL.cs │ ├── Virtual_WC_MessageResponseBLL.cs │ ├── Virtual_WC_OfficalAccountsBLL.cs │ ├── Virtual_WC_ResponseLogBLL.cs │ ├── Virtual_WC_UserBLL.cs │ ├── Virtual_WMS_AIBLL.cs │ ├── Virtual_WMS_CustomerBLL.cs │ ├── Virtual_WMS_Feed_ListBLL.cs │ ├── Virtual_WMS_HeaderBLL.cs │ ├── Virtual_WMS_InvBLL.cs │ ├── Virtual_WMS_InvInfoBLL.cs │ ├── Virtual_WMS_InvRecordBLL.cs │ ├── Virtual_WMS_Inv_AdjustBLL.cs │ ├── Virtual_WMS_Inv_History_DBLL.cs │ ├── Virtual_WMS_Inv_History_HBLL.cs │ ├── Virtual_WMS_Inventory_DBLL.cs │ ├── Virtual_WMS_Inventory_HBLL.cs │ ├── Virtual_WMS_LineBLL.cs │ ├── Virtual_WMS_POBLL.cs │ ├── Virtual_WMS_PartBLL.cs │ ├── Virtual_WMS_Product_EntryBLL.cs │ ├── Virtual_WMS_ReInspectBLL.cs │ ├── Virtual_WMS_ReportBLL.cs │ ├── Virtual_WMS_ReportParamBLL.cs │ ├── Virtual_WMS_ReturnInspectionBLL.cs │ ├── Virtual_WMS_ReturnOrderBLL.cs │ ├── Virtual_WMS_ReturnOrder_DBLL.cs │ ├── Virtual_WMS_Sale_OrderBLL.cs │ ├── Virtual_WMS_SubInvInfoBLL.cs │ └── Virtual_WMS_SupplierBLL.cs ├── Core │ ├── BaseBLL.cs │ └── ExceptionHandler.cs ├── Flow │ ├── FlowHelper.cs │ ├── Flow_ExternalBLL.cs │ ├── Flow_FormAttrBLL.cs │ ├── Flow_FormBLL.cs │ ├── Flow_FormContentBLL.cs │ ├── Flow_FormContentStepCheckBLL.cs │ ├── Flow_FormContentStepCheckStateBLL.cs │ ├── Flow_StepBLL.cs │ ├── Flow_StepRuleBLL.cs │ └── Flow_TypeBLL.cs ├── HomeBLL.cs ├── MIS │ ├── MIS_ArticleBLL.cs │ ├── MIS_Article_AlbumsBLL.cs │ ├── MIS_Article_CategoryBLL.cs │ ├── MIS_Article_CommentBLL.cs │ ├── MIS_WebIM_CommonTalkBLL.cs │ ├── MIS_WebIM_MessageBLL.cs │ └── MIS_WebIM_RecentContactBLL.cs ├── Properties │ └── AssemblyInfo.cs ├── Spl │ ├── Spl_ContactCompanyBLL.cs │ ├── Spl_ContactCompanyCategoryBLL.cs │ ├── Spl_EarlyWareingGoodBLL.cs │ ├── Spl_InOutCategoryBLL.cs │ ├── Spl_PersonBLL.cs │ ├── Spl_ProductBLL.cs │ ├── Spl_WareCategoryBLL.cs │ ├── Spl_WareCheckTotalBLL.cs │ ├── Spl_WareDetailsBLL.cs │ ├── Spl_WareStockPileBLL.cs │ ├── Spl_WarehouseAllocationBLL.cs │ ├── Spl_WarehouseAllocationDetailsBLL.cs │ ├── Spl_WarehouseBLL.cs │ ├── Spl_WarehouseCategoryBLL.cs │ ├── Spl_WarehouseOutBLL.cs │ ├── Spl_WarehouseWarrantBLL.cs │ ├── Spl_WarehouseWarrantDetailsBLL.cs │ ├── Spl_WarehouseWarrantDetailsOUTBLL.cs │ └── Spl_WarehouseWarrantOUTBLL.cs ├── Sys │ ├── JOB_TASKJOBSBLL.cs │ ├── JOB_TASKJOBS_LOGBLL.cs │ ├── SysAreasBLL.cs │ ├── SysCalendarPlanBLL.cs │ ├── SysConfigBLL.cs │ ├── SysExceptionBLL.cs │ ├── SysImportExcelLogBLL.cs │ ├── SysLogBLL.cs │ ├── SysModuleBLL.cs │ ├── SysModuleDataFilterBLL.cs │ ├── SysModuleOperateBLL.cs │ ├── SysParamBLL.cs │ ├── SysPositionBLL.cs │ ├── SysRightBLL.cs │ ├── SysRightGetModuleRightBLL.cs │ ├── SysRightGetRoleRightBLL.cs │ ├── SysRightGetUserRightBLL.cs │ ├── SysRightOperateBLL.cs │ ├── SysRoleBLL.cs │ ├── SysSampleBLL.cs │ ├── SysSettingsBLL.cs │ ├── SysStructBLL.cs │ ├── SysUserBLL.cs │ └── SysUserConfigBLL.cs ├── WC │ ├── WC_GroupBLL.cs │ ├── WC_MessageResponseBLL.cs │ ├── WC_OfficalAccountsBLL.cs │ └── WC_UserBLL.cs ├── WMS │ ├── WMS_AIBLL.cs │ ├── WMS_AIBLL_1.cs │ ├── WMS_CustomerBLL.cs │ ├── WMS_Feed_ListBLL.cs │ ├── WMS_HeaderBLL.cs │ ├── WMS_InvBLL.cs │ ├── WMS_InvInfoBLL.cs │ ├── WMS_InvRecordBLL.cs │ ├── WMS_Inv_AdjustBLL.cs │ ├── WMS_Inv_History_DBLL.cs │ ├── WMS_Inventory_DBLL.cs │ ├── WMS_Inventory_HBLL.cs │ ├── WMS_LineBLL.cs │ ├── WMS_POBLL.cs │ ├── WMS_PartBLL.cs │ ├── WMS_Product_EntryBLL.cs │ ├── WMS_ReInspectBLL.cs │ ├── WMS_ReportBLL.cs │ ├── WMS_ReportBLL_1.cs │ ├── WMS_ReportParamBLL.cs │ ├── WMS_ReturnInspectionBLL.cs │ ├── WMS_ReturnOrderBLL.cs │ ├── WMS_ReturnOrder_DBLL.cs │ ├── WMS_Sale_OrderBLL.cs │ ├── WMS_SubInvInfoBLL.cs │ └── WMS_SupplierBLL.cs ├── WebpartBLL.cs └── packages.config ├── Apps.CodeHelper ├── App.config ├── Apps.CodeHelper.csproj ├── BLL │ ├── BLL.cs │ └── BLLPartial.cs ├── CodeFrom.Designer.cs ├── CodeFrom.cs ├── CodeFrom.resx ├── Config.xml ├── Controller │ ├── Controller.cs │ └── ControllerByTree.cs ├── IBLL │ └── IBLL.cs ├── Model │ ├── Model.cs │ └── ModelPartial.cs ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── SqlHelper.cs ├── View │ ├── Create.cs │ ├── CreateParent.cs │ ├── Edit.cs │ ├── EditParent.cs │ ├── Index.cs │ └── IndexByTree.cs └── XmlHelper.cs ├── Apps.Common ├── Apps.Common.csproj ├── CacheHelper.cs ├── ConfigPara.cs ├── ContextKeys.cs ├── ContextRequest.cs ├── CookieHelper.cs ├── DateTimeHelper.cs ├── EmailHelper.cs ├── Encrypt │ ├── AESEncryptHelper.cs │ └── DESEncrypt.cs ├── ExcelHelper │ └── ImportDataHelper.cs ├── JsonHandler.cs ├── LinqHelper │ ├── DataFilterModel.cs │ ├── DataFliterOperatorTypeEnum.cs │ ├── GridPager.cs │ └── LinqHelper.cs ├── PredicateBuilder.cs ├── Properties │ └── AssemblyInfo.cs ├── ResultHelper.cs ├── SendMesage.cs ├── SequenceType.cs ├── SerializationHelper.cs ├── SysConfig.cs ├── Thumbnail.cs ├── ToJsonResult.cs ├── Utils.cs ├── ValidationErrorHelper.cs ├── ValueConvert.cs ├── WaterMark.cs └── packages.config ├── Apps.Core ├── App_Start │ └── UnityConfig.cs ├── Apps.Core.csproj ├── DependencyRegisterType.cs ├── DependencyRegisterTypeAuto.cs ├── DependencyRegisterTypeAuto.tt ├── LoginUserManage.cs ├── OnlineUser │ ├── Cmd │ │ ├── OnlineUserCmdBase.cs │ │ ├── OnlineUserDeleteCmd.cs │ │ └── OnlineUserInsertCmd.cs │ ├── OnlineUser.cs │ ├── OnlineUserDB.cs │ ├── OnlineUserRecorder.cs │ └── OnlineUserRecorderFactory.cs ├── PageControl │ ├── BaseList.cs │ ├── IPagedList.cs │ ├── PageLinqExtensions.cs │ ├── PagedList.cs │ ├── PagerBuilder.cs │ ├── PagerHelper.cs │ ├── PagerItem.cs │ └── PagerOptions.cs ├── Properties │ └── AssemblyInfo.cs ├── UnityDependencyResolver.cs ├── UpLoad.cs ├── UsingUnityContainer.cs ├── app.config └── packages.config ├── Apps.DAL ├── AccountRepository.cs ├── App.config ├── Apps.DAL.csproj ├── AutoGenerated │ ├── BaseRepository.cs │ ├── CommonRepository.cs │ ├── CommonRepository.tt │ ├── Flow_ExternalRepository.cs │ ├── Flow_FormAttrRepository.cs │ ├── Flow_FormContentRepository.cs │ ├── Flow_FormContentStepCheckRepository.cs │ ├── Flow_FormContentStepCheckStateRepository.cs │ ├── Flow_FormRepository.cs │ ├── Flow_SealRepository.cs │ ├── Flow_StepRepository.cs │ ├── Flow_StepRuleRepository.cs │ ├── Flow_TypeRepository.cs │ ├── JOB_TASKJOBSRepository.cs │ ├── JOB_TASKJOBS_LOGRepository.cs │ ├── MIS_ArticleRepository.cs │ ├── MIS_Article_AlbumsRepository.cs │ ├── MIS_Article_CategoryRepository.cs │ ├── MIS_Article_CommentRepository.cs │ ├── MIS_WebIM_CommonTalkRepository.cs │ ├── MIS_WebIM_MessageRepository.cs │ ├── MIS_WebIM_Message_RecRepository.cs │ ├── MIS_WebIM_RecentContactRepository.cs │ ├── Spl_ContactCompanyCategoryRepository.cs │ ├── Spl_ContactCompanyRepository.cs │ ├── Spl_EarlyWareingGoodRepository.cs │ ├── Spl_InOutCategoryRepository.cs │ ├── Spl_PersonRepository.cs │ ├── Spl_ProductCategoryRepository.cs │ ├── Spl_ProductRepository.cs │ ├── Spl_TestClassRepository.cs │ ├── Spl_TestStudentsRepository.cs │ ├── Spl_WareCategoryRepository.cs │ ├── Spl_WareCheckTotalRepository.cs │ ├── Spl_WareDetailsRepository.cs │ ├── Spl_WareStockPileRepository.cs │ ├── Spl_WareUnitConvertRepository.cs │ ├── Spl_WarehouseAllocationDetailsRepository.cs │ ├── Spl_WarehouseAllocationRepository.cs │ ├── Spl_WarehouseCategoryRepository.cs │ ├── Spl_WarehouseRepository.cs │ ├── Spl_WarehouseWarrantDetailsOUTRepository.cs │ ├── Spl_WarehouseWarrantDetailsRepository.cs │ ├── Spl_WarehouseWarrantOUTRepository.cs │ ├── Spl_WarehouseWarrantRepository.cs │ ├── SysAreasRepository.cs │ ├── SysCalendarPlanRepository.cs │ ├── SysExceptionRepository.cs │ ├── SysImportExcelLogRepository.cs │ ├── SysLogRepository.cs │ ├── SysModuleDataFilterRepository.cs │ ├── SysModuleOperateRepository.cs │ ├── SysModuleRepository.cs │ ├── SysParamRepository.cs │ ├── SysPositionRepository.cs │ ├── SysRightDataFilterRepository.cs │ ├── SysRightOperateRepository.cs │ ├── SysRightRepository.cs │ ├── SysRoleRepository.cs │ ├── SysSampleRepository.cs │ ├── SysSettingsRepository.cs │ ├── SysStructRepository.cs │ ├── SysUserConfigRepository.cs │ ├── SysUserRepository.cs │ ├── WC_GroupRepository.cs │ ├── WC_MessageResponseRepository.cs │ ├── WC_OfficalAccountsRepository.cs │ ├── WC_ResponseLogRepository.cs │ ├── WC_UserRepository.cs │ ├── WMS_AIRepository.cs │ ├── WMS_CustomerRepository.cs │ ├── WMS_Feed_ListRepository.cs │ ├── WMS_HeaderRepository.cs │ ├── WMS_InvInfoRepository.cs │ ├── WMS_InvRecordRepository.cs │ ├── WMS_InvRepository.cs │ ├── WMS_Inv_AdjustRepository.cs │ ├── WMS_Inv_History_DRepository.cs │ ├── WMS_Inv_History_HRepository.cs │ ├── WMS_Inventory_DRepository.cs │ ├── WMS_Inventory_HRepository.cs │ ├── WMS_LineRepository.cs │ ├── WMS_PORepository.cs │ ├── WMS_PartRepository.cs │ ├── WMS_Product_EntryRepository.cs │ ├── WMS_ReInspectRepository.cs │ ├── WMS_ReportParamRepository.cs │ ├── WMS_ReportRepository.cs │ ├── WMS_ReturnInspectionRepository.cs │ ├── WMS_ReturnOrderRepository.cs │ ├── WMS_ReturnOrder_DRepository.cs │ ├── WMS_Sale_OrderRepository.cs │ ├── WMS_SubInvInfoRepository.cs │ └── WMS_SupplierRepository.cs ├── Flow │ ├── Flow_FormAttrRepository.cs │ ├── Flow_FormContentRepository.cs │ ├── Flow_FormContentStepCheckRepository.cs │ ├── Flow_FormContentStepCheckStateRepository.cs │ ├── Flow_FormRepository.cs │ ├── Flow_StepRepository.cs │ ├── Flow_StepRuleRepository.cs │ └── Flow_TypeRepository.cs ├── HomeRepository.cs ├── MIS │ ├── MIS_ArticleRepository.cs │ ├── MIS_Article_AlbumsRepository.cs │ ├── MIS_Article_CategoryRepository.cs │ ├── MIS_Article_CommentRepository.cs │ ├── MIS_WebIM_CommonTalkRepository.cs │ ├── MIS_WebIM_MessageRepository.cs │ └── MIS_WebIM_RecentContactRepository.cs ├── Properties │ └── AssemblyInfo.cs ├── Spl │ ├── Spl_WareCheckTotalRepository.cs │ ├── Spl_WareDetailsRepository.cs │ ├── Spl_WareStockPileRepository.cs │ ├── Spl_WarehouseAllocationRepository.cs │ ├── Spl_WarehouseRepository.cs │ ├── Spl_WarehouseWarrantOUTRepository.cs │ └── Spl_WarehouseWarrantRepository.cs ├── Sys │ ├── JOB_TASKJOBSRepository.cs │ ├── JOB_TASKJOBS_LOGRepository.cs │ ├── SysAreasRepository.cs │ ├── SysConfigRepository.cs │ ├── SysExceptionRepository.cs │ ├── SysLogRepository.cs │ ├── SysModuleOperateRepository.cs │ ├── SysModuleRepository.cs │ ├── SysPositionRepository.cs │ ├── SysRightGetModuleRightRepository.cs │ ├── SysRightGetRoleRightRepository.cs │ ├── SysRightGetUserRightRepository.cs │ ├── SysRightRepository.cs │ ├── SysRoleRepository.cs │ ├── SysSampleRepository.cs │ ├── SysStructRepository.cs │ ├── SysUserConfigRepository.cs │ └── SysUserRepository.cs ├── WC │ ├── WC_GroupRepository.cs │ ├── WC_MessageResponseRepository.cs │ └── WC_OfficalAccountsRepository.cs ├── WMS │ ├── WMS_AIRepository.cs │ ├── WMS_FeedListRepository.cs │ ├── WMS_InvHistoryRepository.cs │ ├── WMS_Inv_AdjustRepository.cs │ ├── WMS_InventoryDRepository.cs │ ├── WMS_InventoryHRepository.cs │ ├── WMS_PORepository.cs │ ├── WMS_PartRepository.cs │ ├── WMS_ReInspectRepository.cs │ ├── WMS_ReportRepository.cs │ ├── WMS_ReturnInspectionRepository.cs │ ├── WMS_ReturnOrderDRepository.cs │ ├── WMS_ReturnOrderRepository.cs │ └── WMS_SaleOrderRepository.cs ├── WebpartRepository.cs └── packages.config ├── Apps.EncryptHelper ├── App.config ├── Apps.EncryptHelper.csproj ├── Encrypt.Designer.cs ├── Encrypt.cs ├── Encrypt.resx ├── Program.cs └── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Apps.IBLL ├── Apps.IBLL.csproj ├── AutoGenerated │ ├── IBaseBLL.cs │ ├── ICommonBLL.cs │ ├── ICommonBLL.tt │ ├── IFlow_ExternalBLL.cs │ ├── IFlow_FormAttrBLL.cs │ ├── IFlow_FormBLL.cs │ ├── IFlow_FormContentBLL.cs │ ├── IFlow_FormContentStepCheckBLL.cs │ ├── IFlow_FormContentStepCheckStateBLL.cs │ ├── IFlow_SealBLL.cs │ ├── IFlow_StepBLL.cs │ ├── IFlow_StepRuleBLL.cs │ ├── IFlow_TypeBLL.cs │ ├── IJOB_TASKJOBSBLL.cs │ ├── IJOB_TASKJOBS_LOGBLL.cs │ ├── IMIS_ArticleBLL.cs │ ├── IMIS_Article_AlbumsBLL.cs │ ├── IMIS_Article_CategoryBLL.cs │ ├── IMIS_Article_CommentBLL.cs │ ├── IMIS_WebIM_CommonTalkBLL.cs │ ├── IMIS_WebIM_MessageBLL.cs │ ├── IMIS_WebIM_Message_RecBLL.cs │ ├── IMIS_WebIM_RecentContactBLL.cs │ ├── ISpl_ContactCompanyBLL.cs │ ├── ISpl_ContactCompanyCategoryBLL.cs │ ├── ISpl_EarlyWareingGoodBLL.cs │ ├── ISpl_InOutCategoryBLL.cs │ ├── ISpl_PersonBLL.cs │ ├── ISpl_ProductBLL.cs │ ├── ISpl_ProductCategoryBLL.cs │ ├── ISpl_TestClassBLL.cs │ ├── ISpl_TestStudentsBLL.cs │ ├── ISpl_WareCategoryBLL.cs │ ├── ISpl_WareCheckTotalBLL.cs │ ├── ISpl_WareDetailsBLL.cs │ ├── ISpl_WareStockPileBLL.cs │ ├── ISpl_WareUnitConvertBLL.cs │ ├── ISpl_WarehouseAllocationBLL.cs │ ├── ISpl_WarehouseAllocationDetailsBLL.cs │ ├── ISpl_WarehouseBLL.cs │ ├── ISpl_WarehouseCategoryBLL.cs │ ├── ISpl_WarehouseWarrantBLL.cs │ ├── ISpl_WarehouseWarrantDetailsBLL.cs │ ├── ISpl_WarehouseWarrantDetailsOUTBLL.cs │ ├── ISpl_WarehouseWarrantOUTBLL.cs │ ├── ISysAreasBLL.cs │ ├── ISysCalendarPlanBLL.cs │ ├── ISysExceptionBLL.cs │ ├── ISysImportExcelLogBLL.cs │ ├── ISysLogBLL.cs │ ├── ISysModuleBLL.cs │ ├── ISysModuleDataFilterBLL.cs │ ├── ISysModuleOperateBLL.cs │ ├── ISysParamBLL.cs │ ├── ISysPositionBLL.cs │ ├── ISysRightBLL.cs │ ├── ISysRightDataFilterBLL.cs │ ├── ISysRightOperateBLL.cs │ ├── ISysRoleBLL.cs │ ├── ISysSampleBLL.cs │ ├── ISysSettingsBLL.cs │ ├── ISysStructBLL.cs │ ├── ISysUserBLL.cs │ ├── ISysUserConfigBLL.cs │ ├── IWC_GroupBLL.cs │ ├── IWC_MessageResponseBLL.cs │ ├── IWC_OfficalAccountsBLL.cs │ ├── IWC_ResponseLogBLL.cs │ ├── IWC_UserBLL.cs │ ├── IWMS_AIBLL.cs │ ├── IWMS_CustomerBLL.cs │ ├── IWMS_Feed_ListBLL.cs │ ├── IWMS_HeaderBLL.cs │ ├── IWMS_InvBLL.cs │ ├── IWMS_InvInfoBLL.cs │ ├── IWMS_InvRecordBLL.cs │ ├── IWMS_Inv_AdjustBLL.cs │ ├── IWMS_Inv_History_DBLL.cs │ ├── IWMS_Inv_History_HBLL.cs │ ├── IWMS_Inventory_DBLL.cs │ ├── IWMS_Inventory_HBLL.cs │ ├── IWMS_LineBLL.cs │ ├── IWMS_POBLL.cs │ ├── IWMS_PartBLL.cs │ ├── IWMS_Product_EntryBLL.cs │ ├── IWMS_ReInspectBLL.cs │ ├── IWMS_ReportBLL.cs │ ├── IWMS_ReportParamBLL.cs │ ├── IWMS_ReturnInspectionBLL.cs │ ├── IWMS_ReturnOrderBLL.cs │ ├── IWMS_ReturnOrder_DBLL.cs │ ├── IWMS_Sale_OrderBLL.cs │ ├── IWMS_SubInvInfoBLL.cs │ └── IWMS_SupplierBLL.cs ├── Flow │ ├── IFlow_FormAttrBLL.cs │ ├── IFlow_FormBLL.cs │ ├── IFlow_FormContentBLL.cs │ ├── IFlow_FormContentStepCheckBLL.cs │ ├── IFlow_FormContentStepCheckStateBLL.cs │ ├── IFlow_StepBLL.cs │ ├── IFlow_StepRuleBLL.cs │ └── IFlow_TypeBLL.cs ├── IAccountBLL.cs ├── IHomeBLL.cs ├── IWebpartBLL.cs ├── MIS │ ├── IMIS_ArticleBLL.cs │ ├── IMIS_Article_AlbumsBLL.cs │ ├── IMIS_Article_CategoryBLL.cs │ ├── IMIS_Article_CommentBLL.cs │ ├── IMIS_WebIM_CommonTalkBLL.cs │ ├── IMIS_WebIM_MessageBLL.cs │ └── IMIS_WebIM_RecentContactBLL.cs ├── Properties │ └── AssemblyInfo.cs ├── Spl │ ├── ISpl_PersonBLL.cs │ ├── ISpl_ProductBLL.cs │ ├── ISpl_WareCategoryBLL.cs │ ├── ISpl_WareCheckTotalBLL.cs │ ├── ISpl_WareDetailsBLL.cs │ ├── ISpl_WareStockPileBLL.cs │ ├── ISpl_WarehouseAllocationBLL.cs │ ├── ISpl_WarehouseAllocationDetailsBLL.cs │ ├── ISpl_WarehouseBLL.cs │ ├── ISpl_WarehouseWarrantBLL.cs │ ├── ISpl_WarehouseWarrantDetailsBLL.cs │ ├── ISpl_WarehouseWarrantDetailsOUTBLL.cs │ └── ISpl_WarehouseWarrantOUTBLL.cs ├── Sys │ ├── IJOB_TASKJOBSBLL.cs │ ├── IJOB_TASKJOBS_LOGBLL.cs │ ├── ISysAreasBLL.cs │ ├── ISysCalendarPlanBLL.cs │ ├── ISysExceptionBLL.cs │ ├── ISysLogBLL.cs │ ├── ISysModuleBLL.cs │ ├── ISysModuleOperateBLL.cs │ ├── ISysParamBLL.cs │ ├── ISysPositionBLL.cs │ ├── ISysRightBLL.cs │ ├── ISysRightGetModuleRightBLL.cs │ ├── ISysRightGetRoleRightBLL.cs │ ├── ISysRightGetUserRightBLL.cs │ ├── ISysRoleBLL.cs │ ├── ISysSampleBLL.cs │ ├── ISysStructBLL.cs │ ├── ISysUserBLL.cs │ └── ISysUserConfigBLL.cs ├── WC │ ├── IWC_GroupBLL.cs │ ├── IWC_MessageResponseBLL.cs │ ├── IWC_OfficalAccountsBLL.cs │ └── IWC_UserBLL.cs └── WMS │ ├── IWMS_AIBLL.cs │ ├── IWMS_AIBLL_1.cs │ ├── IWMS_CustomerBLL.cs │ ├── IWMS_Feed_ListBLL.cs │ ├── IWMS_InvBLL.cs │ ├── IWMS_InvInfoBLL.cs │ ├── IWMS_InvRecordBLL.cs │ ├── IWMS_Inv_AdjustBLL.cs │ ├── IWMS_Inv_History_DBLL.cs │ ├── IWMS_Inventory_DBLL.cs │ ├── IWMS_Inventory_HBLL.cs │ ├── IWMS_POBLL.cs │ ├── IWMS_PartBLL.cs │ ├── IWMS_Product_EntryBLL.cs │ ├── IWMS_ReInspectBLL.cs │ ├── IWMS_ReportBLL.cs │ ├── IWMS_ReportBLL_1.cs │ ├── IWMS_ReportParamBLL.cs │ ├── IWMS_ReturnInspectionBLL.cs │ ├── IWMS_ReturnOrderBLL.cs │ ├── IWMS_ReturnOrder_DBLL.cs │ ├── IWMS_Sale_OrderBLL.cs │ ├── IWMS_SubInvInfoBLL.cs │ └── IWMS_SupplierBLL.cs ├── Apps.IDAL ├── App.config ├── Apps.IDAL.csproj ├── AutoGenerated │ ├── IBaseRepository.cs │ ├── ICommonRepository.cs │ ├── ICommonRepository.tt │ ├── IFlow_ExternalRepository.cs │ ├── IFlow_FormAttrRepository.cs │ ├── IFlow_FormContentRepository.cs │ ├── IFlow_FormContentStepCheckRepository.cs │ ├── IFlow_FormContentStepCheckStateRepository.cs │ ├── IFlow_FormRepository.cs │ ├── IFlow_SealRepository.cs │ ├── IFlow_StepRepository.cs │ ├── IFlow_StepRuleRepository.cs │ ├── IFlow_TypeRepository.cs │ ├── IJOB_TASKJOBSRepository.cs │ ├── IJOB_TASKJOBS_LOGRepository.cs │ ├── IMIS_ArticleRepository.cs │ ├── IMIS_Article_AlbumsRepository.cs │ ├── IMIS_Article_CategoryRepository.cs │ ├── IMIS_Article_CommentRepository.cs │ ├── IMIS_WebIM_CommonTalkRepository.cs │ ├── IMIS_WebIM_MessageRepository.cs │ ├── IMIS_WebIM_Message_RecRepository.cs │ ├── IMIS_WebIM_RecentContactRepository.cs │ ├── ISpl_ContactCompanyCategoryRepository.cs │ ├── ISpl_ContactCompanyRepository.cs │ ├── ISpl_EarlyWareingGoodRepository.cs │ ├── ISpl_InOutCategoryRepository.cs │ ├── ISpl_PersonRepository.cs │ ├── ISpl_ProductCategoryRepository.cs │ ├── ISpl_ProductRepository.cs │ ├── ISpl_TestClassRepository.cs │ ├── ISpl_TestStudentsRepository.cs │ ├── ISpl_WareCategoryRepository.cs │ ├── ISpl_WareCheckTotalRepository.cs │ ├── ISpl_WareDetailsRepository.cs │ ├── ISpl_WareStockPileRepository.cs │ ├── ISpl_WareUnitConvertRepository.cs │ ├── ISpl_WarehouseAllocationDetailsRepository.cs │ ├── ISpl_WarehouseAllocationRepository.cs │ ├── ISpl_WarehouseCategoryRepository.cs │ ├── ISpl_WarehouseRepository.cs │ ├── ISpl_WarehouseWarrantDetailsOUTRepository.cs │ ├── ISpl_WarehouseWarrantDetailsRepository.cs │ ├── ISpl_WarehouseWarrantOUTRepository.cs │ ├── ISpl_WarehouseWarrantRepository.cs │ ├── ISysAreasRepository.cs │ ├── ISysCalendarPlanRepository.cs │ ├── ISysExceptionRepository.cs │ ├── ISysImportExcelLogRepository.cs │ ├── ISysLogRepository.cs │ ├── ISysModuleDataFilterRepository.cs │ ├── ISysModuleOperateRepository.cs │ ├── ISysModuleRepository.cs │ ├── ISysParamRepository.cs │ ├── ISysPositionRepository.cs │ ├── ISysRightDataFilterRepository.cs │ ├── ISysRightOperateRepository.cs │ ├── ISysRightRepository.cs │ ├── ISysRoleRepository.cs │ ├── ISysSampleRepository.cs │ ├── ISysSettingsRepository.cs │ ├── ISysStructRepository.cs │ ├── ISysUserConfigRepository.cs │ ├── ISysUserRepository.cs │ ├── IWC_GroupRepository.cs │ ├── IWC_MessageResponseRepository.cs │ ├── IWC_OfficalAccountsRepository.cs │ ├── IWC_ResponseLogRepository.cs │ ├── IWC_UserRepository.cs │ ├── IWMS_AIRepository.cs │ ├── IWMS_CustomerRepository.cs │ ├── IWMS_Feed_ListRepository.cs │ ├── IWMS_HeaderRepository.cs │ ├── IWMS_InvInfoRepository.cs │ ├── IWMS_InvRecordRepository.cs │ ├── IWMS_InvRepository.cs │ ├── IWMS_Inv_AdjustRepository.cs │ ├── IWMS_Inv_History_DRepository.cs │ ├── IWMS_Inv_History_HRepository.cs │ ├── IWMS_Inventory_DRepository.cs │ ├── IWMS_Inventory_HRepository.cs │ ├── IWMS_LineRepository.cs │ ├── IWMS_PORepository.cs │ ├── IWMS_PartRepository.cs │ ├── IWMS_Product_EntryRepository.cs │ ├── IWMS_ReInspectRepository.cs │ ├── IWMS_ReportParamRepository.cs │ ├── IWMS_ReportRepository.cs │ ├── IWMS_ReturnInspectionRepository.cs │ ├── IWMS_ReturnOrderRepository.cs │ ├── IWMS_ReturnOrder_DRepository.cs │ ├── IWMS_Sale_OrderRepository.cs │ ├── IWMS_SubInvInfoRepository.cs │ └── IWMS_SupplierRepository.cs ├── Flow │ ├── IFlow_FormAttrRepository.cs │ ├── IFlow_FormContentRepository.cs │ ├── IFlow_FormContentStepCheckRepository.cs │ ├── IFlow_FormContentStepCheckStateRepository.cs │ ├── IFlow_FormRepository.cs │ ├── IFlow_StepRepository.cs │ ├── IFlow_StepRuleRepository.cs │ └── IFlow_TypeRepository.cs ├── IAccountRepository.cs ├── IHomeRepository.cs ├── IWebpartRepository.cs ├── MIS │ ├── IMIS_ArticleRepository.cs │ ├── IMIS_Article_AlbumsRepository.cs │ ├── IMIS_Article_CategoryRepository.cs │ ├── IMIS_Article_CommentRepository.cs │ ├── IMIS_WebIM_CommonTalkRepository.cs │ ├── IMIS_WebIM_MessageRepository.cs │ └── IMIS_WebIM_RecentContactRepository.cs ├── Properties │ └── AssemblyInfo.cs ├── Spl │ ├── ISpl_WareCheckTotalRepository.cs │ ├── ISpl_WareDetailsRepository.cs │ ├── ISpl_WareStockPileRepository.cs │ ├── ISpl_WareTotalTotalRepository.cs │ ├── ISpl_WarehouseAllocationRepository.cs │ ├── ISpl_WarehouseRepository.cs │ ├── ISpl_WarehouseWarrantOUTRepository.cs │ └── ISpl_WarehouseWarrantRepository.cs ├── Sys │ ├── IJOB_TASKJOBSRepository.cs │ ├── IJOB_TASKJOBS_LOGRepository.cs │ ├── ISysAreasRepository.cs │ ├── ISysExceptionRepository.cs │ ├── ISysLogRepository.cs │ ├── ISysModuleOperateRepository.cs │ ├── ISysModuleRepository.cs │ ├── ISysPositionRepository.cs │ ├── ISysRightGetModuleRightRepository.cs │ ├── ISysRightGetRoleRightRepository.cs │ ├── ISysRightGetUserRightRepository.cs │ ├── ISysRightRepository.cs │ ├── ISysRoleRepository.cs │ ├── ISysSampleRepository.cs │ ├── ISysStructRepository.cs │ ├── ISysUserConfigRepository.cs │ └── ISysUserRepository.cs ├── WC │ ├── IWC_GroupRepository.cs │ ├── IWC_MessageResponseRepository.cs │ └── IWC_OfficalAccountsRepository.cs ├── WMS │ ├── IWMS_AIRepository.cs │ ├── IWMS_FeedListRepository.cs │ ├── IWMS_InvHistoryRepository.cs │ ├── IWMS_Inv_AdjustRepository.cs │ ├── IWMS_InventoryDRepository.cs │ ├── IWMS_InventoryHRepository.cs │ ├── IWMS_PartRepository.cs │ ├── IWMS_ReInspectRepository.cs │ ├── IWMS_ReportRepository.cs │ ├── IWMS_ReturnInspectionRepository.cs │ ├── IWMS_ReturnOrderDRepository.cs │ ├── IWMS_ReturnOrderRepository.cs │ └── IWMS_SaleOrderRepository.cs └── packages.config ├── Apps.Jobs ├── App.config ├── Apps.Jobs.csproj ├── BaseRun.cs ├── CutstomProcedureJob.cs ├── IBaseRun.cs ├── IJobPlan.cs ├── ITaskJob.cs ├── ITaskRun.cs ├── JobsTools.cs ├── Log.cs ├── MIS │ └── DiscussPostNewTopicsJob.cs ├── Properties │ └── AssemblyInfo.cs ├── TaskJob.cs ├── TaskRun.cs ├── WC │ └── WeChatGetTokenJob.cs ├── job_scheduling_data_2_0.xsd └── packages.config ├── Apps.Locale ├── Apps.Locale.csproj ├── Properties │ └── AssemblyInfo.cs ├── Resource.Designer.cs ├── Resource.en-US.Designer.cs ├── Resource.en-US.resx └── Resource.resx ├── Apps.Models ├── Apps.Models.csproj ├── AutoGenerated │ ├── BaseModel.cs │ ├── BaseModel.tt │ ├── DEF_CaseTypeModel.cs │ ├── DEF_DefectModel.cs │ ├── DEF_TestCaseModel.cs │ ├── DEF_TestCaseRelationModel.cs │ ├── DEF_TestCaseStepsModel.cs │ ├── DEF_TestJobsDetailItemModel.cs │ ├── DEF_TestJobsDetailModel.cs │ ├── DEF_TestJobsDetailRelationModel.cs │ ├── DEF_TestJobsDetailStepsModel.cs │ ├── DEF_TestJobsModel.cs │ ├── Flow_FormAttrModel.cs │ ├── Flow_FormContentModel.cs │ ├── Flow_FormContentStepCheckModel.cs │ ├── Flow_FormContentStepCheckStateModel.cs │ ├── Flow_FormModel.cs │ ├── Flow_SealModel.cs │ ├── Flow_StepModel.cs │ ├── Flow_StepRuleModel.cs │ ├── Flow_TypeModel.cs │ ├── JOB_TASKJOBSModel.cs │ ├── JOB_TASKJOBS_LOGModel.cs │ ├── MIS_ArticleModel.cs │ ├── MIS_Article_AlbumsModel.cs │ ├── MIS_Article_CategoryModel.cs │ ├── MIS_Article_CommentModel.cs │ ├── MIS_WebIM_CommonTalkModel.cs │ ├── MIS_WebIM_MessageModel.cs │ ├── MIS_WebIM_Message_RecModel.cs │ ├── MIS_WebIM_RecentContactModel.cs │ ├── PartialModel.cs │ ├── PartialModel.tt │ ├── Spl_PersonModel.cs │ ├── Spl_ProductCategoryModel.cs │ ├── Spl_ProductModel.cs │ ├── SysAreasModel.cs │ ├── SysExceptionModel.cs │ ├── SysLogModel.cs │ ├── SysModuleModel.cs │ ├── SysModuleOperateModel.cs │ ├── SysPositionModel.cs │ ├── SysRightModel.cs │ ├── SysRightOperateModel.cs │ ├── SysRoleModel.cs │ ├── SysSampleModel.cs │ ├── SysSettingsModel.cs │ ├── SysStructModel.cs │ ├── SysUserConfigModel.cs │ ├── SysUserModel.cs │ ├── V_DEF_DefectModel.cs │ ├── V_DEF_RPT_DefectReportModel.cs │ ├── VirtualModel.tt │ ├── VirtualModel1.cs │ ├── Virtual_Flow_ExternalModel.cs │ ├── Virtual_Flow_FormAttrModel.cs │ ├── Virtual_Flow_FormContentModel.cs │ ├── Virtual_Flow_FormContentStepCheckModel.cs │ ├── Virtual_Flow_FormContentStepCheckStateModel.cs │ ├── Virtual_Flow_FormModel.cs │ ├── Virtual_Flow_SealModel.cs │ ├── Virtual_Flow_StepModel.cs │ ├── Virtual_Flow_StepRuleModel.cs │ ├── Virtual_Flow_TypeModel.cs │ ├── Virtual_JOB_TASKJOBSModel.cs │ ├── Virtual_JOB_TASKJOBS_LOGModel.cs │ ├── Virtual_MIS_ArticleModel.cs │ ├── Virtual_MIS_Article_AlbumsModel.cs │ ├── Virtual_MIS_Article_CategoryModel.cs │ ├── Virtual_MIS_Article_CommentModel.cs │ ├── Virtual_MIS_WebIM_CommonTalkModel.cs │ ├── Virtual_MIS_WebIM_MessageModel.cs │ ├── Virtual_MIS_WebIM_Message_RecModel.cs │ ├── Virtual_MIS_WebIM_RecentContactModel.cs │ ├── Virtual_Spl_ContactCompanyCategoryModel.cs │ ├── Virtual_Spl_ContactCompanyModel.cs │ ├── Virtual_Spl_EarlyWareingGoodModel.cs │ ├── Virtual_Spl_InOutCategoryModel.cs │ ├── Virtual_Spl_PersonModel.cs │ ├── Virtual_Spl_ProductCategoryModel.cs │ ├── Virtual_Spl_ProductModel.cs │ ├── Virtual_Spl_TestClassModel.cs │ ├── Virtual_Spl_TestStudentsModel.cs │ ├── Virtual_Spl_WareCategoryModel.cs │ ├── Virtual_Spl_WareCheckTotalModel.cs │ ├── Virtual_Spl_WareDetailsModel.cs │ ├── Virtual_Spl_WareStockPileModel.cs │ ├── Virtual_Spl_WareUnitConvertModel.cs │ ├── Virtual_Spl_WarehouseAllocationDetailsModel.cs │ ├── Virtual_Spl_WarehouseAllocationModel.cs │ ├── Virtual_Spl_WarehouseCategoryModel.cs │ ├── Virtual_Spl_WarehouseModel.cs │ ├── Virtual_Spl_WarehouseWarrantDetailsModel.cs │ ├── Virtual_Spl_WarehouseWarrantDetailsOUTModel.cs │ ├── Virtual_Spl_WarehouseWarrantModel.cs │ ├── Virtual_Spl_WarehouseWarrantOUTModel.cs │ ├── Virtual_SysAreasModel.cs │ ├── Virtual_SysCalendarPlanModel.cs │ ├── Virtual_SysExceptionModel.cs │ ├── Virtual_SysImportExcelLogModel.cs │ ├── Virtual_SysLogModel.cs │ ├── Virtual_SysModuleDataFilterModel.cs │ ├── Virtual_SysModuleModel.cs │ ├── Virtual_SysModuleOperateModel.cs │ ├── Virtual_SysParamModel.cs │ ├── Virtual_SysPositionModel.cs │ ├── Virtual_SysRightDataFilterModel.cs │ ├── Virtual_SysRightModel.cs │ ├── Virtual_SysRightOperateModel.cs │ ├── Virtual_SysRoleModel.cs │ ├── Virtual_SysSampleModel.cs │ ├── Virtual_SysSettingsModel.cs │ ├── Virtual_SysStructModel.cs │ ├── Virtual_SysUserConfigModel.cs │ ├── Virtual_SysUserModel.cs │ ├── Virtual_V_WMS_InvHistoryAvgModel.cs │ ├── Virtual_WC_GroupModel.cs │ ├── Virtual_WC_MessageResponseModel.cs │ ├── Virtual_WC_OfficalAccountsModel.cs │ ├── Virtual_WC_ResponseLogModel.cs │ ├── Virtual_WC_UserModel.cs │ ├── Virtual_WMS_AIModel.cs │ ├── Virtual_WMS_CustomerModel.cs │ ├── Virtual_WMS_Feed_ListModel.cs │ ├── Virtual_WMS_HeaderModel.cs │ ├── Virtual_WMS_InvInfoModel.cs │ ├── Virtual_WMS_InvModel.cs │ ├── Virtual_WMS_InvRecordModel.cs │ ├── Virtual_WMS_Inv_AdjustModel.cs │ ├── Virtual_WMS_Inv_History_DModel.cs │ ├── Virtual_WMS_Inv_History_HModel.cs │ ├── Virtual_WMS_Inventory_DModel.cs │ ├── Virtual_WMS_Inventory_HModel.cs │ ├── Virtual_WMS_LineModel.cs │ ├── Virtual_WMS_POModel.cs │ ├── Virtual_WMS_PartModel.cs │ ├── Virtual_WMS_Product_EntryModel.cs │ ├── Virtual_WMS_ReInspectModel.cs │ ├── Virtual_WMS_ReportModel.cs │ ├── Virtual_WMS_ReportParamModel.cs │ ├── Virtual_WMS_ReturnInspectionModel.cs │ ├── Virtual_WMS_ReturnOrderModel.cs │ ├── Virtual_WMS_ReturnOrder_DModel.cs │ ├── Virtual_WMS_Sale_OrderModel.cs │ ├── Virtual_WMS_SubInvInfoModel.cs │ ├── Virtual_WMS_SupplierModel.cs │ ├── Virtual_tbForecastModel.cs │ ├── Virtual_tbForecastTermModel.cs │ ├── Virtual_tbWindTermModel.cs │ ├── WC_GroupModel.cs │ ├── WC_MessageResponseModel.cs │ ├── WC_OfficalAccountsModel.cs │ ├── WC_ResponseLogModel.cs │ └── WC_UserModel.cs ├── Common.ttinclude ├── Common │ └── ChartsModel.cs ├── DB.Context.cs ├── DB.Context.tt ├── DB.Designer.cs ├── DB.cs ├── DB.edmx ├── DB.edmx.diagram ├── DB.tt ├── Enum │ ├── FlowEnum.cs │ └── WeChatEnum.cs ├── Flow │ ├── Flow_CommonModel.cs │ ├── Flow_FormAttrModel.cs │ ├── Flow_FormContentModel.cs │ ├── Flow_FormContentStepCheckModel.cs │ ├── Flow_FormContentStepCheckStateModel.cs │ ├── Flow_FormModel.cs │ ├── Flow_StepModel.cs │ ├── Flow_StepRuleModel.cs │ └── Flow_TypeModel.cs ├── Flow_External.cs ├── Flow_Form.cs ├── Flow_FormAttr.cs ├── Flow_FormContent.cs ├── Flow_FormContentStepCheck.cs ├── Flow_FormContentStepCheckState.cs ├── Flow_Seal.cs ├── Flow_Step.cs ├── Flow_StepRule.cs ├── Flow_Type.cs ├── ICommon.cs ├── JOB │ ├── JOB_TASKJOBSModel.cs │ ├── JOB_TASKJOBS_LOGModel.cs │ └── JobModel.cs ├── JOB_TASKJOBS.cs ├── JOB_TASKJOBS_LOG.cs ├── MIS │ ├── MIS_ArticleModel.cs │ ├── MIS_Article_AlbumsModel.cs │ ├── MIS_Article_CategoryModel.cs │ ├── MIS_Article_CommentModel.cs │ ├── MIS_WebIM_CommonTalkModel.cs │ ├── MIS_WebIM_GroupModel.cs │ ├── MIS_WebIM_MessageModel.cs │ └── MIS_WebIM_RecentContactModel.cs ├── MIS_Article.cs ├── MIS_Article_Albums.cs ├── MIS_Article_Category.cs ├── MIS_Article_Comment.cs ├── MIS_WebIM_CommonTalk.cs ├── MIS_WebIM_Message.cs ├── MIS_WebIM_Message_Rec.cs ├── MIS_WebIM_RecentContact.cs ├── P_DEF_CreateTestType_Result.cs ├── P_DEF_QueryDefectReport_Result.cs ├── P_DEF_REP_DefectReport_Result.cs ├── P_JOB_GetUnTrackTask_Result.cs ├── P_MIS_GetInfo_Result.cs ├── P_MIS_GetSenderByReceiver_Result.cs ├── P_QRTZ_GetJobExecuteTime_Result.cs ├── P_Sys_GetAllUsers_Result.cs ├── P_Sys_GetModule_RoleRight_Result.cs ├── P_Sys_GetModule_UserRight_Result.cs ├── P_Sys_GetRightByRoleAndModule_Result.cs ├── P_Sys_GetRightByRole_Result.cs ├── P_Sys_GetRightByUser_Result.cs ├── P_Sys_GetRightDataByRoleAndModule_Result.cs ├── P_Sys_GetRightOperate_Result.cs ├── P_Sys_GetRoleByUserId_Result.cs ├── P_Sys_GetUserByDepId_Result.cs ├── P_Sys_GetUserByRoleId_Result.cs ├── P_Sys_WebPart_Result.cs ├── P_WC_GetResponseContent_Result.cs ├── Properties │ └── AssemblyInfo.cs ├── Spl │ ├── ProductPillarModel.cs │ ├── Spl_ContactCompanyCategoryModel.cs │ ├── Spl_ContactCompanyModel.cs │ ├── Spl_EarlyWareingGoodModel.cs │ ├── Spl_InOutCategoryModel.cs │ ├── Spl_PersonModel.cs │ ├── Spl_ProductModel.cs │ ├── Spl_WareCategoryModel.cs │ ├── Spl_WareCheckTotalModel.cs │ ├── Spl_WareDetailsModel.cs │ ├── Spl_WareStockPileModel.cs │ ├── Spl_WareTotalINModel.cs │ ├── Spl_WareTotalOUTModel.cs │ ├── Spl_WareTotalTotalModel.cs │ ├── Spl_WarehouseAllocationDetailsModel.cs │ ├── Spl_WarehouseAllocationModel.cs │ ├── Spl_WarehouseCategoryModel.cs │ ├── Spl_WarehouseModel.cs │ ├── Spl_WarehouseWarrantDetailsModel.cs │ ├── Spl_WarehouseWarrantDetailsOUTModel.cs │ ├── Spl_WarehouseWarrantModel.cs │ └── Spl_WarehouseWarrantOUTModel.cs ├── Spl_ContactCompany.cs ├── Spl_ContactCompanyCategory.cs ├── Spl_EarlyWareingGood.cs ├── Spl_InOutCategory.cs ├── Spl_Person.cs ├── Spl_Product.cs ├── Spl_ProductCategory.cs ├── Spl_TestClass.cs ├── Spl_TestStudents.cs ├── Spl_WareCategory.cs ├── Spl_WareCheckTotal.cs ├── Spl_WareDetails.cs ├── Spl_WareStockPile.cs ├── Spl_WareUnitConvert.cs ├── Spl_Warehouse.cs ├── Spl_WarehouseAllocation.cs ├── Spl_WarehouseAllocationDetails.cs ├── Spl_WarehouseCategory.cs ├── Spl_WarehouseWarrant.cs ├── Spl_WarehouseWarrantDetails.cs ├── Spl_WarehouseWarrantDetailsOUT.cs ├── Spl_WarehouseWarrantOUT.cs ├── Sys │ ├── AccountModel.cs │ ├── SysApiInterfaceModel.cs │ ├── SysAppOauth.cs │ ├── SysAreasModel.cs │ ├── SysCalendarPlanModel.cs │ ├── SysConfigModel.cs │ ├── SysExceptionModel.cs │ ├── SysImportExcelLogModel.cs │ ├── SysLogModel.cs │ ├── SysModuleDataFilterModel.cs │ ├── SysModuleModel.cs │ ├── SysModuleOperateModel.cs │ ├── SysParamModel.cs │ ├── SysPositionModel.cs │ ├── SysResultModel.cs │ ├── SysRight.cs │ ├── SysRightDataFilterModel.cs │ ├── SysRightDataModelByRoleAndModule.cs │ ├── SysRightModelByRoleAndModule.cs │ ├── SysRightOperateModel.cs │ ├── SysRoleModel.cs │ ├── SysSampleModel.cs │ ├── SysSequenceModel.cs │ ├── SysSettingsModel.cs │ ├── SysStructModel.cs │ ├── SysStructUserModel.cs │ ├── SysTreeModel.cs │ ├── SysUserConfigModel.cs │ ├── SysUserModel.cs │ └── permModel.cs ├── SysAreas.cs ├── SysCalendarPlan.cs ├── SysException.cs ├── SysImportExcelLog.cs ├── SysLog.cs ├── SysModule.cs ├── SysModuleDataFilter.cs ├── SysModuleOperate.cs ├── SysParam.cs ├── SysPosition.cs ├── SysRight.cs ├── SysRightDataFilter.cs ├── SysRightOperate.cs ├── SysRole.cs ├── SysSample.cs ├── SysSettings.cs ├── SysStruct.cs ├── SysUser.cs ├── SysUserConfig.cs ├── V_WMS_InvHistoryAvg.cs ├── ValidateAttribute.cs ├── WC │ └── WC_OfficalAccountsModel.cs ├── WC_Group.cs ├── WC_MessageResponse.cs ├── WC_OfficalAccounts.cs ├── WC_ResponseLog.cs ├── WC_User.cs ├── WMS │ ├── WMS_AIModel.cs │ ├── WMS_CustomerModel.cs │ ├── WMS_Feed_ListModel.cs │ ├── WMS_HeaderModel.cs │ ├── WMS_InvHistoryAvg.cs │ ├── WMS_InvInfoModel.cs │ ├── WMS_InvModel.cs │ ├── WMS_InvRecordModel.cs │ ├── WMS_Inv_AdjustModel.cs │ ├── WMS_Inv_History_DModel.cs │ ├── WMS_Inv_History_HModel.cs │ ├── WMS_Inventory_DModel.cs │ ├── WMS_Inventory_HModel.cs │ ├── WMS_LineModel.cs │ ├── WMS_POForAIModel.cs │ ├── WMS_POModel.cs │ ├── WMS_PartModel.cs │ ├── WMS_Product_EntryModel.cs │ ├── WMS_ReInspectModel.cs │ ├── WMS_ReportModel.cs │ ├── WMS_ReportParamModel.cs │ ├── WMS_ReturnInspectionModel.cs │ ├── WMS_ReturnOrderModel.cs │ ├── WMS_ReturnOrder_DModel.cs │ ├── WMS_Sale_OrderModel.cs │ ├── WMS_SubInvInfoModel.cs │ └── WMS_SupplierModel.cs ├── WMS_AI.cs ├── WMS_Customer.cs ├── WMS_Feed_List.cs ├── WMS_Header.cs ├── WMS_Inv.cs ├── WMS_InvInfo.cs ├── WMS_InvRecord.cs ├── WMS_Inv_Adjust.cs ├── WMS_Inv_History_D.cs ├── WMS_Inv_History_H.cs ├── WMS_Inventory_D.cs ├── WMS_Inventory_H.cs ├── WMS_Line.cs ├── WMS_PO.cs ├── WMS_Part.cs ├── WMS_Product_Entry.cs ├── WMS_ReInspect.cs ├── WMS_Report.cs ├── WMS_ReportParam.cs ├── WMS_ReturnInspection.cs ├── WMS_ReturnOrder.cs ├── WMS_ReturnOrder_D.cs ├── WMS_Sale_Order.cs ├── WMS_SubInvInfo.cs ├── WMS_Supplier.cs ├── packages.config ├── tbForecast.cs ├── tbForecastTerm.cs └── tbWindTerm.cs ├── Apps.Web ├── App_Start │ ├── BundleConfig.cs │ ├── FilterConfig.cs │ └── RouteConfig.cs ├── Apps.Web.csproj ├── Areas │ ├── Demo │ │ ├── Controllers │ │ │ └── BaseDemoController.cs │ │ ├── DemoAreaRegistration.cs │ │ └── Views │ │ │ ├── BaseDemo │ │ │ └── Index.cshtml │ │ │ └── web.config │ ├── Flow │ │ ├── Controllers │ │ │ ├── ApplyController.cs │ │ │ ├── DrafController.cs │ │ │ ├── ExamineController.cs │ │ │ ├── ExternalController.cs │ │ │ ├── FlowTrackController.cs │ │ │ ├── FlowTypeController.cs │ │ │ ├── FormAttrController.cs │ │ │ ├── FormController.cs │ │ │ └── UploadController.cs │ │ ├── FlowAreaRegistration.cs │ │ └── Views │ │ │ ├── Apply │ │ │ ├── Details.cshtml │ │ │ ├── Edit.cshtml │ │ │ ├── EditExternal.cshtml │ │ │ └── Index.cshtml │ │ │ ├── Draf │ │ │ ├── Create.cshtml │ │ │ ├── CreateExternal.cshtml │ │ │ └── Index.cshtml │ │ │ ├── Examine │ │ │ ├── Details.cshtml │ │ │ ├── Edit.cshtml │ │ │ ├── EditExternal.cshtml │ │ │ └── Index.cshtml │ │ │ ├── External │ │ │ ├── Create.cshtml │ │ │ ├── Details.cshtml │ │ │ ├── Edit.cshtml │ │ │ └── Index.cshtml │ │ │ ├── FlowTrack │ │ │ ├── Details.cshtml │ │ │ ├── Edit.cshtml │ │ │ └── Index.cshtml │ │ │ ├── FlowType │ │ │ ├── Create.cshtml │ │ │ ├── Edit.cshtml │ │ │ └── Index.cshtml │ │ │ ├── Form │ │ │ ├── Create.cshtml │ │ │ ├── Details.cshtml │ │ │ ├── Edit.cshtml │ │ │ ├── EditStep.cshtml │ │ │ ├── FormLayout.cshtml │ │ │ ├── Index.cshtml │ │ │ ├── StepList.cshtml │ │ │ └── StepRuleList.cshtml │ │ │ ├── FormAttr │ │ │ ├── Create.cshtml │ │ │ ├── Edit.cshtml │ │ │ └── Index.cshtml │ │ │ └── Web.config │ ├── JOBS │ │ ├── Controllers │ │ │ └── JobsController.cs │ │ ├── JobsAreaRegistration.cs │ │ └── Views │ │ │ ├── Jobs │ │ │ ├── CustomAssemblyJob.cshtml │ │ │ ├── CustomProcedureJob.cshtml │ │ │ ├── Index.cshtml │ │ │ └── Scheduler.cshtml │ │ │ └── Web.config │ ├── MIS │ │ ├── Controllers │ │ │ ├── ArticleController.cs │ │ │ ├── CategoryController.cs │ │ │ ├── ManageArticleController.cs │ │ │ ├── MyArticleController.cs │ │ │ ├── WebIMController.cs │ │ │ └── WebIM_CommonTalkController.cs │ │ ├── MISAreaRegistration.cs │ │ └── Views │ │ │ ├── Article │ │ │ ├── Details.cshtml │ │ │ └── Index.cshtml │ │ │ ├── Category │ │ │ ├── Create.cshtml │ │ │ ├── Edit.cshtml │ │ │ └── Index.cshtml │ │ │ ├── MailBox │ │ │ ├── Create.cshtml │ │ │ ├── Edit.cshtml │ │ │ └── Index.cshtml │ │ │ ├── ManageArticle │ │ │ ├── Create.cshtml │ │ │ ├── Edit.cshtml │ │ │ └── Index.cshtml │ │ │ ├── MyArticle │ │ │ ├── Create.cshtml │ │ │ ├── Edit.cshtml │ │ │ └── Index.cshtml │ │ │ ├── Web.config │ │ │ ├── WebIM │ │ │ ├── CeleritySend.cshtml │ │ │ ├── ChatLog.cshtml │ │ │ ├── Index.cshtml │ │ │ └── SelMember.cshtml │ │ │ └── WebIM_CommonTalk │ │ │ ├── Create.cshtml │ │ │ ├── Edit.cshtml │ │ │ └── Index.cshtml │ ├── Report │ │ ├── Controllers │ │ │ ├── ReportManagerController.cs │ │ │ └── ReportParamController.cs │ │ ├── ReportAreaRegistration.cs │ │ └── Views │ │ │ ├── ReportManager │ │ │ ├── Create.cshtml │ │ │ ├── Designer.cshtml │ │ │ ├── Edit.cshtml │ │ │ ├── Index.cshtml │ │ │ └── ShowBill.cshtml │ │ │ └── ReportParam │ │ │ ├── Create.cshtml │ │ │ ├── Edit.cshtml │ │ │ └── Index.cshtml │ ├── Spl │ │ ├── Controllers │ │ │ ├── ContactCompanyCategoryController.cs │ │ │ ├── ContactCompanyController.cs │ │ │ ├── EarlyWareingGoodController.cs │ │ │ ├── ExtEasyUIController.cs │ │ │ ├── InOutCategoryController.cs │ │ │ ├── PersonController.cs │ │ │ ├── ProductCategoryController.cs │ │ │ ├── ProductController.cs │ │ │ ├── WareCategoryController.cs │ │ │ ├── WareCheckTotalController.cs │ │ │ ├── WareDetailsController.cs │ │ │ ├── WareInReportController.cs │ │ │ ├── WareOutReportController.cs │ │ │ ├── WareStockPileController.cs │ │ │ ├── WareStockReportController.cs │ │ │ ├── WareUnitConvertController.cs │ │ │ ├── WarehouseAllocationController.cs │ │ │ ├── WarehouseCategoryController.cs │ │ │ ├── WarehouseController.cs │ │ │ ├── WarehouseWarrantController.cs │ │ │ ├── WarehouseWarrantDetailsOUTController.cs │ │ │ └── WarehouseWarrantOUTController.cs │ │ ├── SplAreaRegistration.cs │ │ └── Views │ │ │ ├── ContactCompany │ │ │ ├── Create.cshtml │ │ │ ├── Edit.cshtml │ │ │ └── Index.cshtml │ │ │ ├── ContactCompanyCategory │ │ │ ├── Create.cshtml │ │ │ ├── Edit.cshtml │ │ │ └── Index.cshtml │ │ │ ├── ExtEasyUI │ │ │ └── ComboTree.cshtml │ │ │ ├── InoutCategory │ │ │ ├── Create.cshtml │ │ │ ├── Edit.cshtml │ │ │ └── Index.cshtml │ │ │ ├── Person │ │ │ ├── Create.cshtml │ │ │ ├── Details.cshtml │ │ │ ├── Edit.cshtml │ │ │ └── Index.cshtml │ │ │ ├── Product │ │ │ ├── Create.cshtml │ │ │ ├── Details.cshtml │ │ │ ├── Edit.cshtml │ │ │ ├── Index.cshtml │ │ │ └── Index2.cshtml │ │ │ ├── ProductCategory │ │ │ ├── Create.cshtml │ │ │ ├── Details.cshtml │ │ │ ├── Edit.cshtml │ │ │ └── Index.cshtml │ │ │ ├── Shared │ │ │ └── _Layout.cshtml │ │ │ ├── WareCategory │ │ │ ├── Create.cshtml │ │ │ ├── Edit.cshtml │ │ │ └── Index.cshtml │ │ │ ├── WareCheckTotal │ │ │ ├── Create.cshtml │ │ │ ├── Edit.cshtml │ │ │ ├── Index.cshtml │ │ │ └── WareDetails.cshtml │ │ │ ├── WareDetails │ │ │ ├── Create.cshtml │ │ │ ├── Edit.cshtml │ │ │ └── Index.cshtml │ │ │ ├── WareHouse │ │ │ ├── Create.cshtml │ │ │ ├── Edit.cshtml │ │ │ ├── GetRoleByUser.cshtml │ │ │ └── Index.cshtml │ │ │ ├── WareHouseAllocation │ │ │ ├── Create.cshtml │ │ │ ├── Edit.cshtml │ │ │ ├── Index.cshtml │ │ │ ├── Print.cshtml │ │ │ └── WareDetails.cshtml │ │ │ ├── WareHouseCategory │ │ │ ├── Create.cshtml │ │ │ ├── Edit.cshtml │ │ │ └── Index.cshtml │ │ │ ├── WareHouseWarrant │ │ │ ├── Create.cshtml │ │ │ ├── Details.cshtml │ │ │ ├── Edit.cshtml │ │ │ ├── Index.cshtml │ │ │ ├── Print.cshtml │ │ │ └── WareDetails.cshtml │ │ │ ├── WareInReport │ │ │ └── Index.cshtml │ │ │ ├── WareOutReport │ │ │ └── Index.cshtml │ │ │ ├── WareStockPile │ │ │ ├── Create.cshtml │ │ │ ├── Edit.cshtml │ │ │ ├── Index.cshtml │ │ │ └── Watch.cshtml │ │ │ ├── WareStockReport │ │ │ └── Index.cshtml │ │ │ ├── WareUnitConvert │ │ │ ├── Create.cshtml │ │ │ ├── Edit.cshtml │ │ │ └── Index.cshtml │ │ │ ├── WarehouseWarrantDetailsOUT │ │ │ ├── Create.cshtml │ │ │ ├── Edit.cshtml │ │ │ └── Index.cshtml │ │ │ ├── WarehouseWarrantOUT │ │ │ ├── Create.cshtml │ │ │ ├── Edit.cshtml │ │ │ ├── Index.cshtml │ │ │ ├── Print.cshtml │ │ │ └── WareDetails.cshtml │ │ │ ├── _ViewStart.cshtml │ │ │ └── web.config │ ├── WC │ │ ├── Controllers │ │ │ ├── GroupController.cs │ │ │ ├── MenuSettingController.cs │ │ │ ├── MessageResponseController.cs │ │ │ ├── OAuth2Controller.cs │ │ │ ├── OfficalAccountsController.cs │ │ │ ├── ResponseLogController.cs │ │ │ ├── TenPayV3Controller.cs │ │ │ ├── UserController.cs │ │ │ ├── WeChatController.cs │ │ │ └── WeChatQYController.cs │ │ ├── Core │ │ │ ├── CustomMessageContext.cs │ │ │ ├── CustomMessageHandler.cs │ │ │ ├── CustomMessageHandler_Events.cs │ │ │ ├── LocationService.cs │ │ │ ├── OpenUserInfo.cs │ │ │ ├── QyCustomMessageContext.cs │ │ │ ├── QyCustomMessageHandler.cs │ │ │ ├── Server.cs │ │ │ └── WeChatHelper.cs │ │ ├── Views │ │ │ ├── Group │ │ │ │ ├── Create.cshtml │ │ │ │ ├── Edit.cshtml │ │ │ │ └── Index.cshtml │ │ │ ├── MenuSetting │ │ │ │ └── Index.cshtml │ │ │ ├── MessageResponse │ │ │ │ ├── Create.cshtml │ │ │ │ ├── Details.cshtml │ │ │ │ ├── Edit.cshtml │ │ │ │ └── Index.cshtml │ │ │ ├── OAuth2 │ │ │ │ ├── Index.cshtml │ │ │ │ └── UserInfoCallback.cshtml │ │ │ ├── OfficalAccounts │ │ │ │ ├── Create.cshtml │ │ │ │ ├── Details.cshtml │ │ │ │ ├── Edit.cshtml │ │ │ │ └── Index.cshtml │ │ │ ├── ResponseLog │ │ │ │ ├── Create.cshtml │ │ │ │ ├── Details.cshtml │ │ │ │ ├── Edit.cshtml │ │ │ │ └── Index.cshtml │ │ │ ├── TenPayV3 │ │ │ │ ├── Index.cshtml │ │ │ │ ├── JsApi.cshtml │ │ │ │ ├── PayNotifyUrl.cshtml │ │ │ │ ├── ProductItem.cshtml │ │ │ │ └── ProductList.cshtml │ │ │ ├── User │ │ │ │ ├── Edit.cshtml │ │ │ │ ├── Index.cshtml │ │ │ │ └── MoveUser.cshtml │ │ │ ├── WeChat │ │ │ │ └── Index.cshtml │ │ │ └── web.config │ │ └── WCAreaRegistration.cs │ └── WMS │ │ ├── Controllers │ │ ├── AIController.cs │ │ ├── CustomerController.cs │ │ ├── FeedListController.cs │ │ ├── HeaderController.cs │ │ ├── InStoreController.cs │ │ ├── InspectController.cs │ │ ├── InvAdjustController.cs │ │ ├── InvController.cs │ │ ├── InvHistoryController.cs │ │ ├── InvInfoController.cs │ │ ├── InvRecordController.cs │ │ ├── InventoryDController.cs │ │ ├── InventoryHController.cs │ │ ├── LineController.cs │ │ ├── POController.cs │ │ ├── PartController.cs │ │ ├── ProductEntryController.cs │ │ ├── ReInspectController.cs │ │ ├── ReportController.cs │ │ ├── ReturnGoodsController.cs │ │ ├── ReturnInspectionController.cs │ │ ├── ReturnOrderController.cs │ │ ├── ReturnOrderDController.cs │ │ ├── SaleOrderController.cs │ │ ├── SubInvInfoController.cs │ │ └── SupplierController.cs │ │ ├── Views │ │ ├── AI │ │ │ ├── ArrivalBillLookUp.cshtml │ │ │ ├── Create.cshtml │ │ │ ├── Edit.cshtml │ │ │ └── Index.cshtml │ │ ├── Customer │ │ │ ├── Create.cshtml │ │ │ ├── CustomerLookUp.cshtml │ │ │ ├── Edit.cshtml │ │ │ └── Index.cshtml │ │ ├── FeedList │ │ │ ├── Confirm.cshtml │ │ │ ├── Create.cshtml │ │ │ ├── Edit.cshtml │ │ │ ├── FeedListLookUp.cshtml │ │ │ ├── Index.cshtml │ │ │ └── Print.cshtml │ │ ├── Header │ │ │ ├── Create.cshtml │ │ │ ├── Edit.cshtml │ │ │ └── Index.cshtml │ │ ├── InStore │ │ │ ├── Create.cshtml │ │ │ ├── Edit.cshtml │ │ │ ├── Index.cshtml │ │ │ └── Index1.cshtml │ │ ├── Inspect │ │ │ ├── Create.cshtml │ │ │ ├── Edit.cshtml │ │ │ ├── Index.cshtml │ │ │ └── InspectBillLookUp.cshtml │ │ ├── Inv │ │ │ ├── Create.cshtml │ │ │ ├── Edit.cshtml │ │ │ └── Index.cshtml │ │ ├── InvAdjust │ │ │ ├── Create.cshtml │ │ │ ├── Edit.cshtml │ │ │ └── Index.cshtml │ │ ├── InvHistory │ │ │ ├── Create.cshtml │ │ │ ├── Edit.cshtml │ │ │ ├── Index.cshtml │ │ │ └── ListAvg.cshtml │ │ ├── InvInfo │ │ │ ├── Create.cshtml │ │ │ ├── Edit.cshtml │ │ │ └── Index.cshtml │ │ ├── InvRecord │ │ │ ├── Create.cshtml │ │ │ ├── Edit.cshtml │ │ │ └── Index.cshtml │ │ ├── InventoryD │ │ │ ├── Create.cshtml │ │ │ ├── Edit.cshtml │ │ │ └── Index.cshtml │ │ ├── InventoryH │ │ │ ├── Create.cshtml │ │ │ ├── Edit.cshtml │ │ │ └── Index.cshtml │ │ ├── Line │ │ │ ├── Create.cshtml │ │ │ ├── Edit.cshtml │ │ │ └── Index.cshtml │ │ ├── PO │ │ │ ├── Create.cshtml │ │ │ ├── Edit.cshtml │ │ │ ├── Index.cshtml │ │ │ └── POLookUp.cshtml │ │ ├── Part │ │ │ ├── Create.cshtml │ │ │ ├── Edit.cshtml │ │ │ ├── Index.cshtml │ │ │ ├── Index1.cshtml │ │ │ ├── PartLookUp.cshtml │ │ │ └── UpdateStoreMan.cshtml │ │ ├── ProductEntry │ │ │ ├── Create.cshtml │ │ │ ├── Edit.cshtml │ │ │ └── Index.cshtml │ │ ├── ReInspect │ │ │ ├── Create.cshtml │ │ │ ├── Edit.cshtml │ │ │ └── Index.cshtml │ │ ├── Report │ │ │ ├── FeedList.cshtml │ │ │ ├── InvAmount.cshtml │ │ │ ├── ReturnRate.cshtml │ │ │ └── SupplierDelivery.cshtml │ │ ├── ReturnInspection │ │ │ ├── Check.cshtml │ │ │ ├── Create.cshtml │ │ │ ├── Edit.cshtml │ │ │ ├── Index.cshtml │ │ │ └── ReturnInspectionBillLookUp.cshtml │ │ ├── ReturnOrder │ │ │ ├── Confirm.cshtml │ │ │ ├── Create.cshtml │ │ │ ├── Edit.cshtml │ │ │ ├── Index.cshtml │ │ │ ├── Print.cshtml │ │ │ ├── RetunOrderForPrintedLookUp.cshtml │ │ │ └── SupplierLookUp.cshtml │ │ ├── ReturnOrderD │ │ │ ├── Confirm.cshtml │ │ │ ├── CreateParent.cshtml │ │ │ ├── CreateParentForDataGrid.cshtml │ │ │ ├── EditParent.cshtml │ │ │ ├── Index.cshtml │ │ │ ├── Print.cshtml │ │ │ ├── RetunOrderForPrintedLookUp.cshtml │ │ │ └── SupplierLookUp.cshtml │ │ ├── SaleOrder │ │ │ ├── Confirm.cshtml │ │ │ ├── Create.cshtml │ │ │ ├── Edit.cshtml │ │ │ ├── Index.cshtml │ │ │ ├── Print.cshtml │ │ │ └── SaleOrderLookUp.cshtml │ │ ├── SubInvInfo │ │ │ ├── Create.cshtml │ │ │ ├── Edit.cshtml │ │ │ └── Index.cshtml │ │ └── Supplier │ │ │ ├── Create.cshtml │ │ │ ├── Edit.cshtml │ │ │ ├── Index.cshtml │ │ │ └── SupplierLookUp.cshtml │ │ └── WMSAreaRegistration.cs ├── Content │ ├── AdminLTE │ │ └── AdminLTE.min.css │ ├── Images │ │ ├── Article │ │ │ ├── icon_arrow_blue.gif │ │ │ └── sprite.gif │ │ ├── NotPic.jpg │ │ ├── arrow.gif │ │ ├── bg.png │ │ ├── bg_bk.png │ │ ├── btn_bg.gif │ │ ├── check.png │ │ ├── loading.gif │ │ ├── loading2.gif │ │ ├── logo - 副本.png │ │ ├── logo.png │ │ ├── nopic-t.gif │ │ ├── nopic.gif │ │ ├── skin │ │ │ ├── skin-blue.png │ │ │ ├── skin-bluelight.png │ │ │ ├── skin-coolblack.png │ │ │ ├── skin-coolblacklight.png │ │ │ ├── skin-green.png │ │ │ ├── skin-greenlight.png │ │ │ ├── skin-purple.png │ │ │ ├── skin-purplelight.png │ │ │ ├── skin-red.png │ │ │ ├── skin-redlight.png │ │ │ ├── skin-yellow.png │ │ │ └── skin-yellowlight.png │ │ ├── status.gif │ │ ├── tools.png │ │ ├── tools_bg.gif │ │ ├── upbtn_bg.gif │ │ ├── upbtn_bg.png │ │ ├── upfile_bg.gif │ │ └── void.png │ ├── Site.css │ ├── Templete │ │ ├── Person.xlsx │ │ └── PersonBatch.xlsx │ ├── bootstrap.css │ ├── bootstrap.min.css │ ├── fontawesome │ │ ├── css │ │ │ └── font-awesome.min.css │ │ └── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ ├── icons │ │ ├── back.png │ │ ├── blank.gif │ │ ├── cancel.png │ │ ├── clear.png │ │ ├── cut.png │ │ ├── edit_add.png │ │ ├── edit_remove.png │ │ ├── filesave.png │ │ ├── filter.png │ │ ├── help.png │ │ ├── large_chart.png │ │ ├── large_clipart.png │ │ ├── large_picture.png │ │ ├── large_shapes.png │ │ ├── large_smartart.png │ │ ├── lock.png │ │ ├── man.png │ │ ├── mini_add.png │ │ ├── mini_edit.png │ │ ├── mini_refresh.png │ │ ├── more.png │ │ ├── no.png │ │ ├── ok.png │ │ ├── pencil.png │ │ ├── print.png │ │ ├── redo.png │ │ ├── reload.png │ │ ├── search.png │ │ ├── sum.png │ │ ├── tip.png │ │ └── undo.png │ ├── mobile.css │ └── themes │ │ ├── base │ │ ├── easyui.css │ │ └── images │ │ │ ├── accordion_arrows.png │ │ │ ├── accordion_arrows2.png │ │ │ ├── accordion_arrows3.png │ │ │ ├── blank.gif │ │ │ ├── calendar_arrows.png │ │ │ ├── combo_arrow.png │ │ │ ├── datagrid_icons.png │ │ │ ├── datebox_arrow.png │ │ │ ├── layout_arrows.png │ │ │ ├── linkbutton_bg.png │ │ │ ├── loading.gif │ │ │ ├── menu_arrows.png │ │ │ ├── messager_icons.png │ │ │ ├── pagination_icons.png │ │ │ ├── panel_tools.png │ │ │ ├── searchbox_button.png │ │ │ ├── slider_handle.png │ │ │ ├── spinner_arrows.png │ │ │ ├── tabs_icons.png │ │ │ ├── tree_icons.png │ │ │ └── validatebox_warning.png │ │ ├── skin-blue.css │ │ ├── skin-bluelight.css │ │ ├── skin-brownlight.css │ │ ├── skin-coolblack.css │ │ ├── skin-coolblack_bak.css │ │ ├── skin-coolblacklight.css │ │ ├── skin-coolblacklight_bak.css │ │ ├── skin-green.css │ │ ├── skin-greenlight.css │ │ ├── skin-purple.css │ │ ├── skin-purplelight.css │ │ ├── skin-red.css │ │ ├── skin-redlight.css │ │ ├── skin-yellow.css │ │ └── skin-yellowlight.css ├── Controllers │ ├── AccountController.cs │ ├── HomeController.cs │ ├── IMController.cs │ ├── SysAreasController.cs │ ├── SysCalendarPlanController.cs │ ├── SysConfigController.cs │ ├── SysExceptionController.cs │ ├── SysHelperController.cs │ ├── SysImportExcelLogController.cs │ ├── SysLogController.cs │ ├── SysModuleController.cs │ ├── SysParamController.cs │ ├── SysPositionController.cs │ ├── SysRightController.cs │ ├── SysRightGetModuleRightController.cs │ ├── SysRightGetRoleRightController.cs │ ├── SysRightGetUserRightController.cs │ ├── SysRoleController.cs │ ├── SysSampleByUpLoadController.cs │ ├── SysSampleController.cs │ ├── SysStructController.cs │ └── SysUserController.cs ├── Core │ ├── BaseController.cs │ ├── CommonHelper.cs │ ├── CultureAwareHttpModule.cs │ ├── ExportExcelResult.cs │ ├── ExtendMvcHtml.cs │ ├── HandleError.cs │ ├── LogHandler.cs │ ├── OnlineHttpModule.cs │ ├── Signalr │ │ ├── OnlineUsersManage.cs │ │ ├── StartupSignalr.cs │ │ └── WebIM.cs │ ├── SupportFilter.cs │ ├── Upload │ │ ├── Config.cs │ │ ├── ConfigHandler.cs │ │ ├── CrawlerHandler.cs │ │ ├── Handler.cs │ │ ├── ListFileHandler.cs │ │ ├── NotSupportedHandler.cs │ │ ├── PathFormater.cs │ │ └── UploadHandler.cs │ ├── WebConfigPara.cs │ ├── controller.ashx │ ├── site.config │ ├── upload_ajax.ashx │ ├── upload_ajax.ashx.cs │ ├── verify_code.ashx │ └── verify_code.ashx.cs ├── Global.asax ├── Global.asax.cs ├── Images │ └── Photo.jpg ├── LogFile │ ├── 201612 │ │ └── 20161203.txt │ ├── 201706 │ │ └── 20170627.txt │ ├── 201801 │ │ └── 20180116.txt │ └── 201803 │ │ └── 20180302.txt ├── Project_Readme.html ├── Properties │ ├── AssemblyInfo.cs │ └── PublishProfiles │ │ └── 11.pubxml ├── ReportFiles │ ├── Temp │ │ ├── Report.frx │ │ ├── fr0e81cbabbf404ad3846b8bdcfdbdaa7a.frx │ │ ├── fr2bbdb86c6e194a5389d8d7f2a1e5404d.frx │ │ ├── fr368f02e0422e4e95a0c3c86188d8f5bf.frx │ │ ├── fr3d031cbcf77e4bf9b419f11c089419f2.frx │ │ ├── fr4db79ca42ee6457eb2a16fe82f2eda75.frx │ │ ├── fr60a7dd23907c4e2abe3bbcdc00b1a576.frx │ │ ├── fr74126eba95044690ab9d82ea6daf55eb.frx │ │ ├── fr79e571ce90d44a739da61cfcbe8d9304.frx │ │ ├── fr7ad150d1ee65456bbc381bfcc6c67463.frx │ │ ├── fr8472c929790f405aaa09fd623a031f98.frx │ │ ├── fr9915f87ef55646d3931d61b793a1b04a.frx │ │ ├── fr9d1cee8eccdf4965b7e7bbaec54c5431.frx │ │ ├── fra8f45018dc28463ca484d8eef285f9ee.frx │ │ ├── frafb8b13b83d1405eb6e39d471db4c308.frx │ │ ├── frb171feb53da8483493bbe57e7b842bfa.frx │ │ ├── frb9864d5fa6104e54b3a91d4b1bdccedf.frx │ │ ├── frec032f08d6834097a6c14897326983d4.frx │ │ └── frf7c07a6be1b640d4bdf0380c656c2915.frx │ ├── Template │ │ ├── 入库单打印模板.frx │ │ └── 检验单打印模板.frx │ ├── bk │ │ ├── 1122 │ │ │ ├── 库存退货单打印模板.frx │ │ │ ├── 投料单打印模板.frx │ │ │ ├── 检验单打印模板.frx │ │ │ ├── 自制件入库单打印模板.frx │ │ │ ├── 退货单打印模板.frx │ │ │ ├── 退货送检单打印模板.frx │ │ │ └── 销售订单打印模板.frx │ │ ├── 20191206 │ │ │ ├── 库存退货单打印模板.frx │ │ │ ├── 投料单打印模板.frx │ │ │ ├── 检验单打印模板.frx │ │ │ ├── 自制件入库单打印模板.frx │ │ │ ├── 退货单打印模板.frx │ │ │ ├── 退货送检单打印模板.frx │ │ │ └── 销售订单打印模板.frx │ │ ├── 库存退货单打印模板.frx │ │ ├── 投料单打印模板.frx │ │ ├── 检验单打印模板.frx │ │ ├── 自制件入库单打印模板.frx │ │ ├── 退货单打印模板.frx │ │ ├── 退货送检单打印模板.frx │ │ └── 销售订单打印模板.frx │ ├── 库存退货单打印模板.frx │ ├── 投料单打印模板.frx │ ├── 检验单打印模板.frx │ ├── 自制件入库单打印模板.frx │ ├── 退货单打印模板.frx │ ├── 退货送检单打印模板.frx │ └── 销售订单打印模板.frx ├── Scripts │ ├── Account.js │ ├── ChinesePY.js │ ├── ExeclHelper.js │ ├── My97DatePicker │ │ ├── WdatePicker.js │ │ ├── calendar.js │ │ ├── lang │ │ │ ├── en.js │ │ │ ├── zh-cn.js │ │ │ └── zh-tw.js │ │ ├── skin │ │ │ ├── WdatePicker.css │ │ │ ├── datePicker.gif │ │ │ ├── default │ │ │ │ ├── datepicker.css │ │ │ │ └── img.gif │ │ │ ├── twoer │ │ │ │ ├── datepicker-dev.css │ │ │ │ ├── datepicker.css │ │ │ │ ├── img.gif │ │ │ │ └── img.png │ │ │ └── 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 │ ├── WeChat │ │ └── senparc.menu.js │ ├── WebIM.js │ ├── WebIM2.js │ ├── WebIM3.js │ ├── _references.js │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── common.js │ ├── datagrid-export.js │ ├── def_tools.js │ ├── easyloader.js │ ├── easyui.combobox.py.js │ ├── easyui │ │ ├── datagrid-filter.js │ │ ├── easyui-lang-en-US.js │ │ ├── easyui-lang-zh-CN.js │ │ ├── easyui-lang-zh-TW.js │ │ ├── filter.png │ │ ├── jquery.easyui.min.js │ │ ├── jquery.easyui.mobile.js │ │ └── jquery.easyui.plus.js │ ├── echarts.min.js │ ├── echarts.theme.shine.js │ ├── editor │ │ ├── config.json │ │ ├── dialogs │ │ │ ├── anchor │ │ │ │ └── anchor.html │ │ │ ├── attachment │ │ │ │ ├── attachment.css │ │ │ │ ├── attachment.html │ │ │ │ ├── attachment.js │ │ │ │ ├── fileTypeImages │ │ │ │ │ ├── icon_chm.gif │ │ │ │ │ ├── icon_default.png │ │ │ │ │ ├── icon_doc.gif │ │ │ │ │ ├── icon_exe.gif │ │ │ │ │ ├── icon_jpg.gif │ │ │ │ │ ├── icon_mp3.gif │ │ │ │ │ ├── icon_mv.gif │ │ │ │ │ ├── icon_pdf.gif │ │ │ │ │ ├── icon_ppt.gif │ │ │ │ │ ├── icon_psd.gif │ │ │ │ │ ├── icon_rar.gif │ │ │ │ │ ├── icon_txt.gif │ │ │ │ │ └── icon_xls.gif │ │ │ │ └── images │ │ │ │ │ ├── alignicon.gif │ │ │ │ │ ├── alignicon.png │ │ │ │ │ ├── bg.png │ │ │ │ │ ├── file-icons.gif │ │ │ │ │ ├── file-icons.png │ │ │ │ │ ├── icons.gif │ │ │ │ │ ├── icons.png │ │ │ │ │ ├── image.png │ │ │ │ │ ├── progress.png │ │ │ │ │ ├── success.gif │ │ │ │ │ └── success.png │ │ │ ├── background │ │ │ │ ├── background.css │ │ │ │ ├── background.html │ │ │ │ ├── background.js │ │ │ │ └── images │ │ │ │ │ ├── bg.png │ │ │ │ │ └── success.png │ │ │ ├── charts │ │ │ │ ├── chart.config.js │ │ │ │ ├── charts.css │ │ │ │ ├── charts.html │ │ │ │ ├── charts.js │ │ │ │ └── images │ │ │ │ │ ├── charts0.png │ │ │ │ │ ├── charts1.png │ │ │ │ │ ├── charts2.png │ │ │ │ │ ├── charts3.png │ │ │ │ │ ├── charts4.png │ │ │ │ │ └── charts5.png │ │ │ ├── emotion │ │ │ │ ├── emotion.css │ │ │ │ ├── emotion.html │ │ │ │ ├── emotion.js │ │ │ │ └── images │ │ │ │ │ ├── 0.gif │ │ │ │ │ ├── bface.gif │ │ │ │ │ ├── cface.gif │ │ │ │ │ ├── fface.gif │ │ │ │ │ ├── jxface2.gif │ │ │ │ │ ├── neweditor-tab-bg.png │ │ │ │ │ ├── tface.gif │ │ │ │ │ ├── wface.gif │ │ │ │ │ └── yface.gif │ │ │ ├── gmap │ │ │ │ └── gmap.html │ │ │ ├── help │ │ │ │ ├── help.css │ │ │ │ ├── help.html │ │ │ │ └── help.js │ │ │ ├── image │ │ │ │ ├── image.css │ │ │ │ ├── image.html │ │ │ │ ├── image.js │ │ │ │ └── images │ │ │ │ │ ├── alignicon.jpg │ │ │ │ │ ├── bg.png │ │ │ │ │ ├── icons.gif │ │ │ │ │ ├── icons.png │ │ │ │ │ ├── image.png │ │ │ │ │ ├── progress.png │ │ │ │ │ ├── success.gif │ │ │ │ │ └── success.png │ │ │ ├── insertframe │ │ │ │ └── insertframe.html │ │ │ ├── internal.js │ │ │ ├── link │ │ │ │ └── link.html │ │ │ ├── map │ │ │ │ ├── map.html │ │ │ │ └── show.html │ │ │ ├── music │ │ │ │ ├── music.css │ │ │ │ ├── music.html │ │ │ │ └── music.js │ │ │ ├── preview │ │ │ │ └── preview.html │ │ │ ├── scrawl │ │ │ │ ├── images │ │ │ │ │ ├── addimg.png │ │ │ │ │ ├── brush.png │ │ │ │ │ ├── delimg.png │ │ │ │ │ ├── delimgH.png │ │ │ │ │ ├── empty.png │ │ │ │ │ ├── emptyH.png │ │ │ │ │ ├── eraser.png │ │ │ │ │ ├── redo.png │ │ │ │ │ ├── redoH.png │ │ │ │ │ ├── scale.png │ │ │ │ │ ├── scaleH.png │ │ │ │ │ ├── size.png │ │ │ │ │ ├── undo.png │ │ │ │ │ └── undoH.png │ │ │ │ ├── scrawl.css │ │ │ │ ├── scrawl.html │ │ │ │ └── scrawl.js │ │ │ ├── searchreplace │ │ │ │ ├── searchreplace.html │ │ │ │ └── searchreplace.js │ │ │ ├── snapscreen │ │ │ │ └── snapscreen.html │ │ │ ├── spechars │ │ │ │ ├── spechars.html │ │ │ │ └── spechars.js │ │ │ ├── table │ │ │ │ ├── dragicon.png │ │ │ │ ├── edittable.css │ │ │ │ ├── edittable.html │ │ │ │ ├── edittable.js │ │ │ │ ├── edittd.html │ │ │ │ └── edittip.html │ │ │ ├── template │ │ │ │ ├── config.js │ │ │ │ ├── images │ │ │ │ │ ├── bg.gif │ │ │ │ │ ├── pre0.png │ │ │ │ │ ├── pre1.png │ │ │ │ │ ├── pre2.png │ │ │ │ │ ├── pre3.png │ │ │ │ │ └── pre4.png │ │ │ │ ├── template.css │ │ │ │ ├── template.html │ │ │ │ └── template.js │ │ │ ├── video │ │ │ │ ├── images │ │ │ │ │ ├── bg.png │ │ │ │ │ ├── center_focus.jpg │ │ │ │ │ ├── file-icons.gif │ │ │ │ │ ├── file-icons.png │ │ │ │ │ ├── icons.gif │ │ │ │ │ ├── icons.png │ │ │ │ │ ├── image.png │ │ │ │ │ ├── left_focus.jpg │ │ │ │ │ ├── none_focus.jpg │ │ │ │ │ ├── progress.png │ │ │ │ │ ├── right_focus.jpg │ │ │ │ │ ├── success.gif │ │ │ │ │ └── success.png │ │ │ │ ├── video.css │ │ │ │ ├── video.html │ │ │ │ └── video.js │ │ │ ├── webapp │ │ │ │ └── webapp.html │ │ │ └── wordimage │ │ │ │ ├── fClipboard_ueditor.swf │ │ │ │ ├── imageUploader.swf │ │ │ │ ├── tangram.js │ │ │ │ ├── wordimage.html │ │ │ │ └── wordimage.js │ │ ├── index.html │ │ ├── lang │ │ │ ├── en │ │ │ │ ├── en.js │ │ │ │ └── images │ │ │ │ │ ├── addimage.png │ │ │ │ │ ├── alldeletebtnhoverskin.png │ │ │ │ │ ├── alldeletebtnupskin.png │ │ │ │ │ ├── background.png │ │ │ │ │ ├── button.png │ │ │ │ │ ├── copy.png │ │ │ │ │ ├── deletedisable.png │ │ │ │ │ ├── deleteenable.png │ │ │ │ │ ├── listbackground.png │ │ │ │ │ ├── localimage.png │ │ │ │ │ ├── music.png │ │ │ │ │ ├── rotateleftdisable.png │ │ │ │ │ ├── rotateleftenable.png │ │ │ │ │ ├── rotaterightdisable.png │ │ │ │ │ ├── rotaterightenable.png │ │ │ │ │ └── upload.png │ │ │ └── zh-cn │ │ │ │ ├── images │ │ │ │ ├── copy.png │ │ │ │ ├── localimage.png │ │ │ │ ├── music.png │ │ │ │ └── upload.png │ │ │ │ └── zh-cn.js │ │ ├── themes │ │ │ ├── default │ │ │ │ ├── css │ │ │ │ │ ├── ueditor.css │ │ │ │ │ └── ueditor.min.css │ │ │ │ ├── dialogbase.css │ │ │ │ └── images │ │ │ │ │ ├── anchor.gif │ │ │ │ │ ├── arrow.png │ │ │ │ │ ├── arrow_down.png │ │ │ │ │ ├── arrow_up.png │ │ │ │ │ ├── button-bg.gif │ │ │ │ │ ├── cancelbutton.gif │ │ │ │ │ ├── charts.png │ │ │ │ │ ├── cursor_h.gif │ │ │ │ │ ├── cursor_h.png │ │ │ │ │ ├── cursor_v.gif │ │ │ │ │ ├── cursor_v.png │ │ │ │ │ ├── dialog-title-bg.png │ │ │ │ │ ├── filescan.png │ │ │ │ │ ├── highlighted.gif │ │ │ │ │ ├── icons-all.gif │ │ │ │ │ ├── icons.gif │ │ │ │ │ ├── icons.png │ │ │ │ │ ├── loaderror.png │ │ │ │ │ ├── loading.gif │ │ │ │ │ ├── lock.gif │ │ │ │ │ ├── neweditor-tab-bg.png │ │ │ │ │ ├── pagebreak.gif │ │ │ │ │ ├── scale.png │ │ │ │ │ ├── sortable.png │ │ │ │ │ ├── spacer.gif │ │ │ │ │ ├── sparator_v.png │ │ │ │ │ ├── table-cell-align.png │ │ │ │ │ ├── tangram-colorpicker.png │ │ │ │ │ ├── toolbar_bg.png │ │ │ │ │ ├── unhighlighted.gif │ │ │ │ │ ├── upload.png │ │ │ │ │ ├── videologo.gif │ │ │ │ │ ├── word.gif │ │ │ │ │ └── wordpaste.png │ │ │ └── iframe.css │ │ ├── third-party │ │ │ ├── SyntaxHighlighter │ │ │ │ ├── shCore.js │ │ │ │ └── shCoreDefault.css │ │ │ ├── codemirror │ │ │ │ ├── codemirror.css │ │ │ │ └── codemirror.js │ │ │ ├── highcharts │ │ │ │ ├── adapters │ │ │ │ │ ├── mootools-adapter.js │ │ │ │ │ ├── mootools-adapter.src.js │ │ │ │ │ ├── prototype-adapter.js │ │ │ │ │ ├── prototype-adapter.src.js │ │ │ │ │ ├── standalone-framework.js │ │ │ │ │ └── standalone-framework.src.js │ │ │ │ ├── highcharts-more.js │ │ │ │ ├── highcharts-more.src.js │ │ │ │ ├── highcharts.js │ │ │ │ ├── highcharts.src.js │ │ │ │ ├── modules │ │ │ │ │ ├── annotations.js │ │ │ │ │ ├── annotations.src.js │ │ │ │ │ ├── canvas-tools.js │ │ │ │ │ ├── canvas-tools.src.js │ │ │ │ │ ├── data.js │ │ │ │ │ ├── data.src.js │ │ │ │ │ ├── drilldown.js │ │ │ │ │ ├── drilldown.src.js │ │ │ │ │ ├── exporting.js │ │ │ │ │ ├── exporting.src.js │ │ │ │ │ ├── funnel.js │ │ │ │ │ ├── funnel.src.js │ │ │ │ │ ├── heatmap.js │ │ │ │ │ ├── heatmap.src.js │ │ │ │ │ ├── map.js │ │ │ │ │ ├── map.src.js │ │ │ │ │ ├── no-data-to-display.js │ │ │ │ │ └── no-data-to-display.src.js │ │ │ │ └── themes │ │ │ │ │ ├── dark-blue.js │ │ │ │ │ ├── dark-green.js │ │ │ │ │ ├── gray.js │ │ │ │ │ ├── grid.js │ │ │ │ │ └── skies.js │ │ │ ├── jquery-1.10.2.js │ │ │ ├── jquery-1.10.2.min.js │ │ │ ├── jquery-1.10.2.min.map │ │ │ ├── snapscreen │ │ │ │ └── UEditorSnapscreen.exe │ │ │ ├── video-js │ │ │ │ ├── font │ │ │ │ │ ├── vjs.eot │ │ │ │ │ ├── vjs.svg │ │ │ │ │ ├── vjs.ttf │ │ │ │ │ └── vjs.woff │ │ │ │ ├── video-js.css │ │ │ │ ├── video-js.min.css │ │ │ │ ├── video-js.swf │ │ │ │ ├── video.dev.js │ │ │ │ └── video.js │ │ │ ├── webuploader │ │ │ │ ├── Uploader.swf │ │ │ │ ├── webuploader.css │ │ │ │ ├── webuploader.custom.js │ │ │ │ ├── webuploader.custom.min.js │ │ │ │ ├── webuploader.flashonly.js │ │ │ │ ├── webuploader.flashonly.min.js │ │ │ │ ├── webuploader.html5only.js │ │ │ │ ├── webuploader.html5only.min.js │ │ │ │ ├── webuploader.js │ │ │ │ ├── webuploader.min.js │ │ │ │ ├── webuploader.withoutimage.js │ │ │ │ └── webuploader.withoutimage.min.js │ │ │ └── zeroclipboard │ │ │ │ ├── ZeroClipboard.js │ │ │ │ ├── ZeroClipboard.min.js │ │ │ │ └── ZeroClipboard.swf │ │ ├── ueditor.all.js │ │ ├── ueditor.all.min.js │ │ ├── ueditor.config.js │ │ ├── ueditor.parse.js │ │ └── ueditor.parse.min.js │ ├── fancybox │ │ ├── blank.gif │ │ ├── fancy_close.png │ │ ├── fancy_loading.png │ │ ├── fancy_nav_left.png │ │ ├── fancy_nav_right.png │ │ ├── fancy_shadow_e.png │ │ ├── fancy_shadow_n.png │ │ ├── fancy_shadow_ne.png │ │ ├── fancy_shadow_nw.png │ │ ├── fancy_shadow_s.png │ │ ├── fancy_shadow_se.png │ │ ├── fancy_shadow_sw.png │ │ ├── fancy_shadow_w.png │ │ ├── fancy_title_left.png │ │ ├── fancy_title_main.png │ │ ├── fancy_title_over.png │ │ ├── fancy_title_right.png │ │ ├── fancybox-x.png │ │ ├── fancybox-y.png │ │ ├── fancybox.png │ │ ├── jquery.easing-1.3.pack.js │ │ ├── jquery.fancybox-1.3.4.css │ │ ├── jquery.fancybox-1.3.4.js │ │ ├── jquery.fancybox.min.js │ │ └── jquery.mousewheel-3.0.4.pack.js │ ├── fullcalendar │ │ ├── fullcalendar.css │ │ ├── fullcalendar.min.css │ │ ├── fullcalendar.min.js │ │ ├── fullcalendar.print.min.css │ │ ├── gcal.min.js │ │ ├── locale-all.js │ │ ├── moment.min.js │ │ └── zh-cn.js │ ├── home.js │ ├── jquery.form.js │ ├── jquery.jqprint-0.3.js │ ├── jquery.min.js │ ├── jquery.signalR-2.2.0.js │ ├── jquery.signalR-2.2.0.min.js │ ├── jquery.validate-vsdoc.js │ ├── jquery.validate.js │ ├── jquery.validate.min.js │ ├── jquery.validate.unobtrusive.js │ ├── jquery.validate.unobtrusive.min.js │ ├── jquery.validate.unobtrusive.plus.js │ ├── modernizr-2.6.2.js │ ├── respond.js │ ├── respond.min.js │ ├── swfupload │ │ ├── swfupload.handlers.js │ │ ├── swfupload.js │ │ ├── swfupload.queue.js │ │ └── swfupload.swf │ └── uploadify │ │ ├── jquery.uploadify.js │ │ ├── jquery.uploadify.min.js │ │ ├── uploadify-cancel.png │ │ ├── uploadify.css │ │ └── uploadify.swf ├── Views │ ├── Account │ │ ├── Index.cshtml │ │ └── ValidateCode.cshtml │ ├── Home │ │ ├── Desktop.cshtml │ │ ├── Index.cshtml │ │ ├── Info.cshtml │ │ ├── Main.cshtml │ │ └── TopInfo.cshtml │ ├── IM │ │ └── Index.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ ├── _DEF_ComboGrid.cshtml │ │ ├── _Default_PersonSidebar.cshtml │ │ ├── _Default_Web.cshtml │ │ ├── _IconList.cshtml │ │ ├── _Index_Layout.cshtml │ │ ├── _Index_LayoutEdit.cshtml │ │ ├── _Layout.cshtml │ │ ├── _LoginPartial.cshtml │ │ └── _Partial_AutoGrid.cshtml │ ├── SysAreas │ │ ├── Create.cshtml │ │ ├── Edit.cshtml │ │ └── Index.cshtml │ ├── SysCalendarPlan.7z │ ├── SysCalendarPlan │ │ ├── Create.cshtml │ │ ├── Edit.cshtml │ │ └── Index.cshtml │ ├── SysConfig │ │ └── Index.cshtml │ ├── SysException │ │ ├── Details.cshtml │ │ ├── Error.cshtml │ │ └── Index.cshtml │ ├── SysHelper │ │ ├── DepLookUp.cshtml │ │ ├── DepMulLookUp.cshtml │ │ ├── PosLookUp.cshtml │ │ ├── PosMulLookUp.cshtml │ │ ├── Query.cshtml │ │ ├── ReportControl.cshtml │ │ ├── UpLoadImg.cshtml │ │ ├── UserLookUp.cshtml │ │ └── UserSingleLookUp.cshtml │ ├── SysImportExcelLog │ │ └── Index.cshtml │ ├── SysLog │ │ ├── Details.cshtml │ │ ├── Index.cshtml │ │ └── MyLog.cshtml │ ├── SysModule │ │ ├── Create.cshtml │ │ ├── CreateDataFilter.cshtml │ │ ├── CreateOpt.cshtml │ │ ├── Edit.cshtml │ │ ├── IconList.cshtml │ │ └── Index.cshtml │ ├── SysParam │ │ ├── Create.cshtml │ │ ├── Edit.cshtml │ │ └── Index.cshtml │ ├── SysPosition │ │ ├── Create.cshtml │ │ ├── Edit.cshtml │ │ └── Index.cshtml │ ├── SysRight │ │ └── Index.cshtml │ ├── SysRightGetModuleRight │ │ └── Index.cshtml │ ├── SysRightGetRoleRight │ │ └── Index.cshtml │ ├── SysRightGetUserRight │ │ └── Index.cshtml │ ├── SysRole │ │ ├── Create.cshtml │ │ ├── Details.cshtml │ │ ├── Edit.cshtml │ │ ├── GetUserByRole.cshtml │ │ └── Index.cshtml │ ├── SysSample │ │ ├── Create.cshtml │ │ ├── Details.cshtml │ │ ├── Edit.cshtml │ │ └── Index.cshtml │ ├── SysSampleByUpLoad │ │ └── Index.cshtml │ ├── SysSequence │ │ ├── Create.cshtml │ │ ├── Edit.cshtml │ │ └── Index.cshtml │ ├── SysStruct │ │ ├── Create.cshtml │ │ ├── Edit.cshtml │ │ └── Index.cshtml │ ├── SysUser │ │ ├── Create.cshtml │ │ ├── Details.cshtml │ │ ├── Edit.cshtml │ │ ├── GetRoleByUser.cshtml │ │ ├── Index.cshtml │ │ └── LookUp.cshtml │ ├── Web.config │ └── _ViewStart.cshtml ├── WebReportDesigner │ ├── images │ │ ├── barcode-sprite.png │ │ ├── i.gif │ │ └── icons.png │ ├── index.html │ ├── locales │ │ ├── en.js │ │ ├── ru.js │ │ └── zh.js │ ├── offline.appcache │ ├── readme.txt │ ├── scripts │ │ ├── config-data.js │ │ ├── main.js │ │ └── vendors.js │ └── styles │ │ └── main.css ├── exceptionLog.txt ├── favicon.ico ├── job_scheduling_data_2_0.xsd ├── packages.config ├── upload │ ├── 201602 │ │ └── 17 │ │ │ ├── 201602171710398148.jpg │ │ │ ├── 201602171712585444.jpg │ │ │ ├── 201602171713583047.jpg │ │ │ ├── 201602171714408479.jpg │ │ │ ├── 201602171719348839.jpg │ │ │ ├── 201602171720342176.jpg │ │ │ ├── 201602171721270673.jpg │ │ │ ├── 201602171722310201.jpg │ │ │ ├── 201602171724149877.jpg │ │ │ ├── 201602171724492152.jpg │ │ │ ├── 201602171807261174.jpg │ │ │ ├── 201602171808127069.jpg │ │ │ ├── 201602171809062531.jpg │ │ │ ├── 201602171809528419.jpg │ │ │ ├── small_201602171710398148.jpg │ │ │ ├── small_201602171712585444.jpg │ │ │ ├── small_201602171713583047.jpg │ │ │ ├── small_201602171714408479.jpg │ │ │ ├── small_201602171719348839.jpg │ │ │ ├── small_201602171720342176.jpg │ │ │ ├── small_201602171721270673.jpg │ │ │ ├── small_201602171722310201.jpg │ │ │ ├── small_201602171724149877.jpg │ │ │ ├── small_201602171724492152.jpg │ │ │ ├── small_201602171807261174.jpg │ │ │ ├── small_201602171808127069.jpg │ │ │ ├── small_201602171809062531.jpg │ │ │ └── small_201602171809528419.jpg │ ├── 201610 │ │ └── 29 │ │ │ ├── 201610291113424526.jpg │ │ │ ├── 201610291118226316.jpg │ │ │ ├── 201610291119209856.jpg │ │ │ ├── 201610291120232876.jpg │ │ │ ├── 201610291121441566.jpg │ │ │ ├── 201610291122080396.jpg │ │ │ ├── 201610291136503066.jpg │ │ │ ├── 201610291457364556.png │ │ │ ├── small_201610291113424526.jpg │ │ │ ├── small_201610291118226316.jpg │ │ │ ├── small_201610291119209856.jpg │ │ │ ├── small_201610291120232876.jpg │ │ │ ├── small_201610291121441566.jpg │ │ │ ├── small_201610291122080396.jpg │ │ │ ├── small_201610291136503066.jpg │ │ │ └── small_201610291457364556.png │ ├── 201611 │ │ ├── 19 │ │ │ └── 201611191645371320.xlsx │ │ ├── 23 │ │ │ ├── 201611230937356560.xlsx │ │ │ ├── 201611230942576500.xlsx │ │ │ └── 201611231001018940.xlsx │ │ ├── 02 │ │ │ ├── 201611021654145053.jpg │ │ │ └── small_201611021654145053.jpg │ │ └── 07 │ │ │ ├── 201611071305050728.jpg │ │ │ └── small_201611071305050728.jpg │ ├── 201703 │ │ └── 15 │ │ │ └── 201703151739288870.xlsx │ ├── 201801 │ │ └── 24 │ │ │ ├── 201801241051236720.docx │ │ │ └── 201801241204222630.docx │ ├── 201802 │ │ ├── 26 │ │ │ ├── 201802261145065990.txt │ │ │ ├── 201802261145145420.txt │ │ │ ├── 201802261211017950.jpg │ │ │ └── small_201802261211017950.jpg │ │ └── 27 │ │ │ ├── 201802271112393180.jpg │ │ │ ├── 201802271112482920.jpg │ │ │ ├── 201802271112486040.jpg │ │ │ ├── 201802271113111870.jpg │ │ │ ├── 201802271128420280.jpg │ │ │ ├── 201802271135264060.jpg │ │ │ ├── 201802271137311220.png │ │ │ ├── small_201802271112482920.jpg │ │ │ ├── small_201802271112486040.jpg │ │ │ ├── small_201802271128420280.jpg │ │ │ └── small_201802271135264060.jpg │ ├── 201805 │ │ ├── 18 │ │ │ ├── 201805180838056234.xlsx │ │ │ ├── 201805180838167244.xlsx │ │ │ └── 201805180843161094.xlsx │ │ ├── 26 │ │ │ ├── 201805261625017080.xlsx │ │ │ ├── 201805261625327540.xlsx │ │ │ └── 201805261626341470.xlsx │ │ └── 01 │ │ │ ├── 201805011455522555.jpg │ │ │ ├── 201805011456301465.png │ │ │ ├── 201805011456325675.png │ │ │ ├── 201805011457294575.png │ │ │ ├── small_201805011456301465.png │ │ │ ├── small_201805011456325675.png │ │ │ └── small_201805011457294575.png │ ├── 201806 │ │ └── 15 │ │ │ ├── 201806151400567542.png │ │ │ ├── 201806151400589563.png │ │ │ └── small_201806151400589563.png │ ├── 201808 │ │ └── 21 │ │ │ ├── 201808211202541767.jpg │ │ │ └── small_201808211202541767.jpg │ └── image │ │ └── 20180227 │ │ ├── 6365532791368800006459785.png │ │ ├── 6365532819181800004342643.png │ │ └── 6365532819493700004045466.png ├── 库存退货单打印模板.frx ├── 自制件入库单打印模板.frx └── 退货送检单打印模板.frx ├── Apps.WebApi ├── App_Start │ ├── BundleConfig.cs │ ├── FilterConfig.cs │ ├── RouteConfig.cs │ └── WebApiConfig.cs ├── Apps.WebApi.csproj ├── 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 │ ├── bootstrap.css │ └── bootstrap.min.css ├── Controllers │ ├── AccountController.cs │ ├── ErrorController.cs │ ├── HomeController.cs │ └── ValuesController.cs ├── Core │ ├── BaseApiController.cs │ ├── JsonCallbackAttribute.cs │ └── SupportFilter.cs ├── Global.asax ├── Global.asax.cs ├── Project_Readme.html ├── Properties │ └── AssemblyInfo.cs ├── Scripts │ ├── _references.js │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── jquery-1.10.2.intellisense.js │ ├── jquery-1.10.2.js │ ├── jquery-1.10.2.min.js │ ├── jquery-1.10.2.min.map │ ├── modernizr-2.6.2.js │ ├── respond.js │ └── respond.min.js ├── Views │ ├── Error │ │ └── Index.cshtml │ ├── Home │ │ └── Index.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ └── _Layout.cshtml │ ├── Web.config │ └── _ViewStart.cshtml ├── Web.Debug.config ├── Web.Release.config ├── Web.config ├── favicon.ico ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff └── packages.config └── Lib ├── FastReport.Web.dll └── FastReport.dll /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/.gitignore -------------------------------------------------------------------------------- /DB/P_WMS_ProcessInspectBill.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/DB/P_WMS_ProcessInspectBill.sql -------------------------------------------------------------------------------- /DB/YUX-新增数据库脚本.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/DB/YUX-新增数据库脚本.sql -------------------------------------------------------------------------------- /DB/Zhuqp-新增数据库脚本.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/DB/Zhuqp-新增数据库脚本.sql -------------------------------------------------------------------------------- /DB/proc.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/DB/proc.sql -------------------------------------------------------------------------------- /DB/script.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/DB/script.sql -------------------------------------------------------------------------------- /DB/数据库表.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/DB/数据库表.xlsx -------------------------------------------------------------------------------- /DB/新增功能的数据库脚本.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/DB/新增功能的数据库脚本.sql -------------------------------------------------------------------------------- /Doc/AccessDatabaseEngine.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/Doc/AccessDatabaseEngine.exe -------------------------------------------------------------------------------- /Doc/数据库字仓库典.CHM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/Doc/数据库字仓库典.CHM -------------------------------------------------------------------------------- /Doc/数据库表.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/Doc/数据库表.xlsx -------------------------------------------------------------------------------- /Doc/江西新电汽车空调系统有限公司-库存管理系统-需求文档1.0.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/Doc/江西新电汽车空调系统有限公司-库存管理系统-需求文档1.0.docx -------------------------------------------------------------------------------- /Doc/部署文档.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/Doc/部署文档.docx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/README.md -------------------------------------------------------------------------------- /XDWMS-Ymnets.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/XDWMS-Ymnets.sln -------------------------------------------------------------------------------- /src/Apps.BLL/AccountBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.BLL/AccountBLL.cs -------------------------------------------------------------------------------- /src/Apps.BLL/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.BLL/App.config -------------------------------------------------------------------------------- /src/Apps.BLL/Apps.BLL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.BLL/Apps.BLL.csproj -------------------------------------------------------------------------------- /src/Apps.BLL/AutoGenerated/PartialBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.BLL/AutoGenerated/PartialBLL.cs -------------------------------------------------------------------------------- /src/Apps.BLL/AutoGenerated/PartialBLL.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.BLL/AutoGenerated/PartialBLL.tt -------------------------------------------------------------------------------- /src/Apps.BLL/Core/BaseBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.BLL/Core/BaseBLL.cs -------------------------------------------------------------------------------- /src/Apps.BLL/Core/ExceptionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.BLL/Core/ExceptionHandler.cs -------------------------------------------------------------------------------- /src/Apps.BLL/Flow/FlowHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.BLL/Flow/FlowHelper.cs -------------------------------------------------------------------------------- /src/Apps.BLL/Flow/Flow_ExternalBLL.cs: -------------------------------------------------------------------------------- 1 | //只有当启用父表时BLL类才会生成 2 | -------------------------------------------------------------------------------- /src/Apps.BLL/Flow/Flow_FormAttrBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.BLL/Flow/Flow_FormAttrBLL.cs -------------------------------------------------------------------------------- /src/Apps.BLL/Flow/Flow_FormBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.BLL/Flow/Flow_FormBLL.cs -------------------------------------------------------------------------------- /src/Apps.BLL/Flow/Flow_FormContentBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.BLL/Flow/Flow_FormContentBLL.cs -------------------------------------------------------------------------------- /src/Apps.BLL/Flow/Flow_StepBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.BLL/Flow/Flow_StepBLL.cs -------------------------------------------------------------------------------- /src/Apps.BLL/Flow/Flow_StepRuleBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.BLL/Flow/Flow_StepRuleBLL.cs -------------------------------------------------------------------------------- /src/Apps.BLL/Flow/Flow_TypeBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.BLL/Flow/Flow_TypeBLL.cs -------------------------------------------------------------------------------- /src/Apps.BLL/HomeBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.BLL/HomeBLL.cs -------------------------------------------------------------------------------- /src/Apps.BLL/MIS/MIS_ArticleBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.BLL/MIS/MIS_ArticleBLL.cs -------------------------------------------------------------------------------- /src/Apps.BLL/MIS/MIS_Article_AlbumsBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.BLL/MIS/MIS_Article_AlbumsBLL.cs -------------------------------------------------------------------------------- /src/Apps.BLL/MIS/MIS_Article_CategoryBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.BLL/MIS/MIS_Article_CategoryBLL.cs -------------------------------------------------------------------------------- /src/Apps.BLL/MIS/MIS_Article_CommentBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.BLL/MIS/MIS_Article_CommentBLL.cs -------------------------------------------------------------------------------- /src/Apps.BLL/MIS/MIS_WebIM_CommonTalkBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.BLL/MIS/MIS_WebIM_CommonTalkBLL.cs -------------------------------------------------------------------------------- /src/Apps.BLL/MIS/MIS_WebIM_MessageBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.BLL/MIS/MIS_WebIM_MessageBLL.cs -------------------------------------------------------------------------------- /src/Apps.BLL/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.BLL/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Apps.BLL/Spl/Spl_ContactCompanyBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.BLL/Spl/Spl_ContactCompanyBLL.cs -------------------------------------------------------------------------------- /src/Apps.BLL/Spl/Spl_ContactCompanyCategoryBLL.cs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/Apps.BLL/Spl/Spl_EarlyWareingGoodBLL.cs: -------------------------------------------------------------------------------- 1 | //只有当启用父表时BLL类才会生成 2 | -------------------------------------------------------------------------------- /src/Apps.BLL/Spl/Spl_InOutCategoryBLL.cs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/Apps.BLL/Spl/Spl_PersonBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.BLL/Spl/Spl_PersonBLL.cs -------------------------------------------------------------------------------- /src/Apps.BLL/Spl/Spl_ProductBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.BLL/Spl/Spl_ProductBLL.cs -------------------------------------------------------------------------------- /src/Apps.BLL/Spl/Spl_WareCategoryBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.BLL/Spl/Spl_WareCategoryBLL.cs -------------------------------------------------------------------------------- /src/Apps.BLL/Spl/Spl_WareCheckTotalBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.BLL/Spl/Spl_WareCheckTotalBLL.cs -------------------------------------------------------------------------------- /src/Apps.BLL/Spl/Spl_WareDetailsBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.BLL/Spl/Spl_WareDetailsBLL.cs -------------------------------------------------------------------------------- /src/Apps.BLL/Spl/Spl_WareStockPileBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.BLL/Spl/Spl_WareStockPileBLL.cs -------------------------------------------------------------------------------- /src/Apps.BLL/Spl/Spl_WarehouseBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.BLL/Spl/Spl_WarehouseBLL.cs -------------------------------------------------------------------------------- /src/Apps.BLL/Spl/Spl_WarehouseCategoryBLL.cs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/Apps.BLL/Spl/Spl_WarehouseOutBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.BLL/Spl/Spl_WarehouseOutBLL.cs -------------------------------------------------------------------------------- /src/Apps.BLL/Spl/Spl_WarehouseWarrantBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.BLL/Spl/Spl_WarehouseWarrantBLL.cs -------------------------------------------------------------------------------- /src/Apps.BLL/Sys/JOB_TASKJOBSBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.BLL/Sys/JOB_TASKJOBSBLL.cs -------------------------------------------------------------------------------- /src/Apps.BLL/Sys/JOB_TASKJOBS_LOGBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.BLL/Sys/JOB_TASKJOBS_LOGBLL.cs -------------------------------------------------------------------------------- /src/Apps.BLL/Sys/SysAreasBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.BLL/Sys/SysAreasBLL.cs -------------------------------------------------------------------------------- /src/Apps.BLL/Sys/SysCalendarPlanBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.BLL/Sys/SysCalendarPlanBLL.cs -------------------------------------------------------------------------------- /src/Apps.BLL/Sys/SysConfigBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.BLL/Sys/SysConfigBLL.cs -------------------------------------------------------------------------------- /src/Apps.BLL/Sys/SysExceptionBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.BLL/Sys/SysExceptionBLL.cs -------------------------------------------------------------------------------- /src/Apps.BLL/Sys/SysImportExcelLogBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.BLL/Sys/SysImportExcelLogBLL.cs -------------------------------------------------------------------------------- /src/Apps.BLL/Sys/SysLogBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.BLL/Sys/SysLogBLL.cs -------------------------------------------------------------------------------- /src/Apps.BLL/Sys/SysModuleBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.BLL/Sys/SysModuleBLL.cs -------------------------------------------------------------------------------- /src/Apps.BLL/Sys/SysModuleDataFilterBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.BLL/Sys/SysModuleDataFilterBLL.cs -------------------------------------------------------------------------------- /src/Apps.BLL/Sys/SysModuleOperateBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.BLL/Sys/SysModuleOperateBLL.cs -------------------------------------------------------------------------------- /src/Apps.BLL/Sys/SysParamBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.BLL/Sys/SysParamBLL.cs -------------------------------------------------------------------------------- /src/Apps.BLL/Sys/SysPositionBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.BLL/Sys/SysPositionBLL.cs -------------------------------------------------------------------------------- /src/Apps.BLL/Sys/SysRightBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.BLL/Sys/SysRightBLL.cs -------------------------------------------------------------------------------- /src/Apps.BLL/Sys/SysRightGetRoleRightBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.BLL/Sys/SysRightGetRoleRightBLL.cs -------------------------------------------------------------------------------- /src/Apps.BLL/Sys/SysRightGetUserRightBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.BLL/Sys/SysRightGetUserRightBLL.cs -------------------------------------------------------------------------------- /src/Apps.BLL/Sys/SysRightOperateBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.BLL/Sys/SysRightOperateBLL.cs -------------------------------------------------------------------------------- /src/Apps.BLL/Sys/SysRoleBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.BLL/Sys/SysRoleBLL.cs -------------------------------------------------------------------------------- /src/Apps.BLL/Sys/SysSampleBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.BLL/Sys/SysSampleBLL.cs -------------------------------------------------------------------------------- /src/Apps.BLL/Sys/SysSettingsBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.BLL/Sys/SysSettingsBLL.cs -------------------------------------------------------------------------------- /src/Apps.BLL/Sys/SysStructBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.BLL/Sys/SysStructBLL.cs -------------------------------------------------------------------------------- /src/Apps.BLL/Sys/SysUserBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.BLL/Sys/SysUserBLL.cs -------------------------------------------------------------------------------- /src/Apps.BLL/Sys/SysUserConfigBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.BLL/Sys/SysUserConfigBLL.cs -------------------------------------------------------------------------------- /src/Apps.BLL/WC/WC_GroupBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.BLL/WC/WC_GroupBLL.cs -------------------------------------------------------------------------------- /src/Apps.BLL/WC/WC_MessageResponseBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.BLL/WC/WC_MessageResponseBLL.cs -------------------------------------------------------------------------------- /src/Apps.BLL/WC/WC_OfficalAccountsBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.BLL/WC/WC_OfficalAccountsBLL.cs -------------------------------------------------------------------------------- /src/Apps.BLL/WC/WC_UserBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.BLL/WC/WC_UserBLL.cs -------------------------------------------------------------------------------- /src/Apps.BLL/WMS/WMS_AIBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.BLL/WMS/WMS_AIBLL.cs -------------------------------------------------------------------------------- /src/Apps.BLL/WMS/WMS_AIBLL_1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.BLL/WMS/WMS_AIBLL_1.cs -------------------------------------------------------------------------------- /src/Apps.BLL/WMS/WMS_CustomerBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.BLL/WMS/WMS_CustomerBLL.cs -------------------------------------------------------------------------------- /src/Apps.BLL/WMS/WMS_Feed_ListBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.BLL/WMS/WMS_Feed_ListBLL.cs -------------------------------------------------------------------------------- /src/Apps.BLL/WMS/WMS_HeaderBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.BLL/WMS/WMS_HeaderBLL.cs -------------------------------------------------------------------------------- /src/Apps.BLL/WMS/WMS_InvBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.BLL/WMS/WMS_InvBLL.cs -------------------------------------------------------------------------------- /src/Apps.BLL/WMS/WMS_InvInfoBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.BLL/WMS/WMS_InvInfoBLL.cs -------------------------------------------------------------------------------- /src/Apps.BLL/WMS/WMS_InvRecordBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.BLL/WMS/WMS_InvRecordBLL.cs -------------------------------------------------------------------------------- /src/Apps.BLL/WMS/WMS_Inv_AdjustBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.BLL/WMS/WMS_Inv_AdjustBLL.cs -------------------------------------------------------------------------------- /src/Apps.BLL/WMS/WMS_Inv_History_DBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.BLL/WMS/WMS_Inv_History_DBLL.cs -------------------------------------------------------------------------------- /src/Apps.BLL/WMS/WMS_Inventory_DBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.BLL/WMS/WMS_Inventory_DBLL.cs -------------------------------------------------------------------------------- /src/Apps.BLL/WMS/WMS_Inventory_HBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.BLL/WMS/WMS_Inventory_HBLL.cs -------------------------------------------------------------------------------- /src/Apps.BLL/WMS/WMS_LineBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.BLL/WMS/WMS_LineBLL.cs -------------------------------------------------------------------------------- /src/Apps.BLL/WMS/WMS_POBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.BLL/WMS/WMS_POBLL.cs -------------------------------------------------------------------------------- /src/Apps.BLL/WMS/WMS_PartBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.BLL/WMS/WMS_PartBLL.cs -------------------------------------------------------------------------------- /src/Apps.BLL/WMS/WMS_Product_EntryBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.BLL/WMS/WMS_Product_EntryBLL.cs -------------------------------------------------------------------------------- /src/Apps.BLL/WMS/WMS_ReInspectBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.BLL/WMS/WMS_ReInspectBLL.cs -------------------------------------------------------------------------------- /src/Apps.BLL/WMS/WMS_ReportBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.BLL/WMS/WMS_ReportBLL.cs -------------------------------------------------------------------------------- /src/Apps.BLL/WMS/WMS_ReportBLL_1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.BLL/WMS/WMS_ReportBLL_1.cs -------------------------------------------------------------------------------- /src/Apps.BLL/WMS/WMS_ReportParamBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.BLL/WMS/WMS_ReportParamBLL.cs -------------------------------------------------------------------------------- /src/Apps.BLL/WMS/WMS_ReturnInspectionBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.BLL/WMS/WMS_ReturnInspectionBLL.cs -------------------------------------------------------------------------------- /src/Apps.BLL/WMS/WMS_ReturnOrderBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.BLL/WMS/WMS_ReturnOrderBLL.cs -------------------------------------------------------------------------------- /src/Apps.BLL/WMS/WMS_ReturnOrder_DBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.BLL/WMS/WMS_ReturnOrder_DBLL.cs -------------------------------------------------------------------------------- /src/Apps.BLL/WMS/WMS_Sale_OrderBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.BLL/WMS/WMS_Sale_OrderBLL.cs -------------------------------------------------------------------------------- /src/Apps.BLL/WMS/WMS_SubInvInfoBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.BLL/WMS/WMS_SubInvInfoBLL.cs -------------------------------------------------------------------------------- /src/Apps.BLL/WMS/WMS_SupplierBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.BLL/WMS/WMS_SupplierBLL.cs -------------------------------------------------------------------------------- /src/Apps.BLL/WebpartBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.BLL/WebpartBLL.cs -------------------------------------------------------------------------------- /src/Apps.BLL/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.BLL/packages.config -------------------------------------------------------------------------------- /src/Apps.CodeHelper/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.CodeHelper/App.config -------------------------------------------------------------------------------- /src/Apps.CodeHelper/Apps.CodeHelper.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.CodeHelper/Apps.CodeHelper.csproj -------------------------------------------------------------------------------- /src/Apps.CodeHelper/BLL/BLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.CodeHelper/BLL/BLL.cs -------------------------------------------------------------------------------- /src/Apps.CodeHelper/BLL/BLLPartial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.CodeHelper/BLL/BLLPartial.cs -------------------------------------------------------------------------------- /src/Apps.CodeHelper/CodeFrom.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.CodeHelper/CodeFrom.Designer.cs -------------------------------------------------------------------------------- /src/Apps.CodeHelper/CodeFrom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.CodeHelper/CodeFrom.cs -------------------------------------------------------------------------------- /src/Apps.CodeHelper/CodeFrom.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.CodeHelper/CodeFrom.resx -------------------------------------------------------------------------------- /src/Apps.CodeHelper/Config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.CodeHelper/Config.xml -------------------------------------------------------------------------------- /src/Apps.CodeHelper/Controller/Controller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.CodeHelper/Controller/Controller.cs -------------------------------------------------------------------------------- /src/Apps.CodeHelper/IBLL/IBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.CodeHelper/IBLL/IBLL.cs -------------------------------------------------------------------------------- /src/Apps.CodeHelper/Model/Model.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.CodeHelper/Model/Model.cs -------------------------------------------------------------------------------- /src/Apps.CodeHelper/Model/ModelPartial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.CodeHelper/Model/ModelPartial.cs -------------------------------------------------------------------------------- /src/Apps.CodeHelper/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.CodeHelper/Program.cs -------------------------------------------------------------------------------- /src/Apps.CodeHelper/SqlHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.CodeHelper/SqlHelper.cs -------------------------------------------------------------------------------- /src/Apps.CodeHelper/View/Create.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.CodeHelper/View/Create.cs -------------------------------------------------------------------------------- /src/Apps.CodeHelper/View/CreateParent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.CodeHelper/View/CreateParent.cs -------------------------------------------------------------------------------- /src/Apps.CodeHelper/View/Edit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.CodeHelper/View/Edit.cs -------------------------------------------------------------------------------- /src/Apps.CodeHelper/View/EditParent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.CodeHelper/View/EditParent.cs -------------------------------------------------------------------------------- /src/Apps.CodeHelper/View/Index.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.CodeHelper/View/Index.cs -------------------------------------------------------------------------------- /src/Apps.CodeHelper/View/IndexByTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.CodeHelper/View/IndexByTree.cs -------------------------------------------------------------------------------- /src/Apps.CodeHelper/XmlHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.CodeHelper/XmlHelper.cs -------------------------------------------------------------------------------- /src/Apps.Common/Apps.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Common/Apps.Common.csproj -------------------------------------------------------------------------------- /src/Apps.Common/CacheHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Common/CacheHelper.cs -------------------------------------------------------------------------------- /src/Apps.Common/ConfigPara.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Common/ConfigPara.cs -------------------------------------------------------------------------------- /src/Apps.Common/ContextKeys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Common/ContextKeys.cs -------------------------------------------------------------------------------- /src/Apps.Common/ContextRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Common/ContextRequest.cs -------------------------------------------------------------------------------- /src/Apps.Common/CookieHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Common/CookieHelper.cs -------------------------------------------------------------------------------- /src/Apps.Common/DateTimeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Common/DateTimeHelper.cs -------------------------------------------------------------------------------- /src/Apps.Common/EmailHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Common/EmailHelper.cs -------------------------------------------------------------------------------- /src/Apps.Common/Encrypt/AESEncryptHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Common/Encrypt/AESEncryptHelper.cs -------------------------------------------------------------------------------- /src/Apps.Common/Encrypt/DESEncrypt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Common/Encrypt/DESEncrypt.cs -------------------------------------------------------------------------------- /src/Apps.Common/JsonHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Common/JsonHandler.cs -------------------------------------------------------------------------------- /src/Apps.Common/LinqHelper/GridPager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Common/LinqHelper/GridPager.cs -------------------------------------------------------------------------------- /src/Apps.Common/LinqHelper/LinqHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Common/LinqHelper/LinqHelper.cs -------------------------------------------------------------------------------- /src/Apps.Common/PredicateBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Common/PredicateBuilder.cs -------------------------------------------------------------------------------- /src/Apps.Common/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Common/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Apps.Common/ResultHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Common/ResultHelper.cs -------------------------------------------------------------------------------- /src/Apps.Common/SendMesage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Common/SendMesage.cs -------------------------------------------------------------------------------- /src/Apps.Common/SequenceType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Common/SequenceType.cs -------------------------------------------------------------------------------- /src/Apps.Common/SerializationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Common/SerializationHelper.cs -------------------------------------------------------------------------------- /src/Apps.Common/SysConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Common/SysConfig.cs -------------------------------------------------------------------------------- /src/Apps.Common/Thumbnail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Common/Thumbnail.cs -------------------------------------------------------------------------------- /src/Apps.Common/ToJsonResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Common/ToJsonResult.cs -------------------------------------------------------------------------------- /src/Apps.Common/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Common/Utils.cs -------------------------------------------------------------------------------- /src/Apps.Common/ValidationErrorHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Common/ValidationErrorHelper.cs -------------------------------------------------------------------------------- /src/Apps.Common/ValueConvert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Common/ValueConvert.cs -------------------------------------------------------------------------------- /src/Apps.Common/WaterMark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Common/WaterMark.cs -------------------------------------------------------------------------------- /src/Apps.Common/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Common/packages.config -------------------------------------------------------------------------------- /src/Apps.Core/App_Start/UnityConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Core/App_Start/UnityConfig.cs -------------------------------------------------------------------------------- /src/Apps.Core/Apps.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Core/Apps.Core.csproj -------------------------------------------------------------------------------- /src/Apps.Core/DependencyRegisterType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Core/DependencyRegisterType.cs -------------------------------------------------------------------------------- /src/Apps.Core/DependencyRegisterTypeAuto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Core/DependencyRegisterTypeAuto.cs -------------------------------------------------------------------------------- /src/Apps.Core/DependencyRegisterTypeAuto.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Core/DependencyRegisterTypeAuto.tt -------------------------------------------------------------------------------- /src/Apps.Core/LoginUserManage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Core/LoginUserManage.cs -------------------------------------------------------------------------------- /src/Apps.Core/OnlineUser/OnlineUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Core/OnlineUser/OnlineUser.cs -------------------------------------------------------------------------------- /src/Apps.Core/OnlineUser/OnlineUserDB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Core/OnlineUser/OnlineUserDB.cs -------------------------------------------------------------------------------- /src/Apps.Core/PageControl/BaseList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Core/PageControl/BaseList.cs -------------------------------------------------------------------------------- /src/Apps.Core/PageControl/IPagedList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Core/PageControl/IPagedList.cs -------------------------------------------------------------------------------- /src/Apps.Core/PageControl/PagedList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Core/PageControl/PagedList.cs -------------------------------------------------------------------------------- /src/Apps.Core/PageControl/PagerBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Core/PageControl/PagerBuilder.cs -------------------------------------------------------------------------------- /src/Apps.Core/PageControl/PagerHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Core/PageControl/PagerHelper.cs -------------------------------------------------------------------------------- /src/Apps.Core/PageControl/PagerItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Core/PageControl/PagerItem.cs -------------------------------------------------------------------------------- /src/Apps.Core/PageControl/PagerOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Core/PageControl/PagerOptions.cs -------------------------------------------------------------------------------- /src/Apps.Core/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Core/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Apps.Core/UnityDependencyResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Core/UnityDependencyResolver.cs -------------------------------------------------------------------------------- /src/Apps.Core/UpLoad.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Core/UpLoad.cs -------------------------------------------------------------------------------- /src/Apps.Core/UsingUnityContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Core/UsingUnityContainer.cs -------------------------------------------------------------------------------- /src/Apps.Core/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Core/app.config -------------------------------------------------------------------------------- /src/Apps.Core/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Core/packages.config -------------------------------------------------------------------------------- /src/Apps.DAL/AccountRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.DAL/AccountRepository.cs -------------------------------------------------------------------------------- /src/Apps.DAL/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.DAL/App.config -------------------------------------------------------------------------------- /src/Apps.DAL/Apps.DAL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.DAL/Apps.DAL.csproj -------------------------------------------------------------------------------- /src/Apps.DAL/AutoGenerated/BaseRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.DAL/AutoGenerated/BaseRepository.cs -------------------------------------------------------------------------------- /src/Apps.DAL/Flow/Flow_FormAttrRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.DAL/Flow/Flow_FormAttrRepository.cs -------------------------------------------------------------------------------- /src/Apps.DAL/Flow/Flow_FormRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.DAL/Flow/Flow_FormRepository.cs -------------------------------------------------------------------------------- /src/Apps.DAL/Flow/Flow_StepRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.DAL/Flow/Flow_StepRepository.cs -------------------------------------------------------------------------------- /src/Apps.DAL/Flow/Flow_StepRuleRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.DAL/Flow/Flow_StepRuleRepository.cs -------------------------------------------------------------------------------- /src/Apps.DAL/Flow/Flow_TypeRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.DAL/Flow/Flow_TypeRepository.cs -------------------------------------------------------------------------------- /src/Apps.DAL/HomeRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.DAL/HomeRepository.cs -------------------------------------------------------------------------------- /src/Apps.DAL/MIS/MIS_ArticleRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.DAL/MIS/MIS_ArticleRepository.cs -------------------------------------------------------------------------------- /src/Apps.DAL/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.DAL/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Apps.DAL/Spl/Spl_WarehouseRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.DAL/Spl/Spl_WarehouseRepository.cs -------------------------------------------------------------------------------- /src/Apps.DAL/Sys/JOB_TASKJOBSRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.DAL/Sys/JOB_TASKJOBSRepository.cs -------------------------------------------------------------------------------- /src/Apps.DAL/Sys/SysAreasRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.DAL/Sys/SysAreasRepository.cs -------------------------------------------------------------------------------- /src/Apps.DAL/Sys/SysConfigRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.DAL/Sys/SysConfigRepository.cs -------------------------------------------------------------------------------- /src/Apps.DAL/Sys/SysExceptionRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.DAL/Sys/SysExceptionRepository.cs -------------------------------------------------------------------------------- /src/Apps.DAL/Sys/SysLogRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.DAL/Sys/SysLogRepository.cs -------------------------------------------------------------------------------- /src/Apps.DAL/Sys/SysModuleRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.DAL/Sys/SysModuleRepository.cs -------------------------------------------------------------------------------- /src/Apps.DAL/Sys/SysPositionRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.DAL/Sys/SysPositionRepository.cs -------------------------------------------------------------------------------- /src/Apps.DAL/Sys/SysRightRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.DAL/Sys/SysRightRepository.cs -------------------------------------------------------------------------------- /src/Apps.DAL/Sys/SysRoleRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.DAL/Sys/SysRoleRepository.cs -------------------------------------------------------------------------------- /src/Apps.DAL/Sys/SysSampleRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.DAL/Sys/SysSampleRepository.cs -------------------------------------------------------------------------------- /src/Apps.DAL/Sys/SysStructRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.DAL/Sys/SysStructRepository.cs -------------------------------------------------------------------------------- /src/Apps.DAL/Sys/SysUserConfigRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.DAL/Sys/SysUserConfigRepository.cs -------------------------------------------------------------------------------- /src/Apps.DAL/Sys/SysUserRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.DAL/Sys/SysUserRepository.cs -------------------------------------------------------------------------------- /src/Apps.DAL/WC/WC_GroupRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.DAL/WC/WC_GroupRepository.cs -------------------------------------------------------------------------------- /src/Apps.DAL/WMS/WMS_AIRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.DAL/WMS/WMS_AIRepository.cs -------------------------------------------------------------------------------- /src/Apps.DAL/WMS/WMS_FeedListRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.DAL/WMS/WMS_FeedListRepository.cs -------------------------------------------------------------------------------- /src/Apps.DAL/WMS/WMS_InvHistoryRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.DAL/WMS/WMS_InvHistoryRepository.cs -------------------------------------------------------------------------------- /src/Apps.DAL/WMS/WMS_Inv_AdjustRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.DAL/WMS/WMS_Inv_AdjustRepository.cs -------------------------------------------------------------------------------- /src/Apps.DAL/WMS/WMS_InventoryDRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.DAL/WMS/WMS_InventoryDRepository.cs -------------------------------------------------------------------------------- /src/Apps.DAL/WMS/WMS_InventoryHRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.DAL/WMS/WMS_InventoryHRepository.cs -------------------------------------------------------------------------------- /src/Apps.DAL/WMS/WMS_PORepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.DAL/WMS/WMS_PORepository.cs -------------------------------------------------------------------------------- /src/Apps.DAL/WMS/WMS_PartRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.DAL/WMS/WMS_PartRepository.cs -------------------------------------------------------------------------------- /src/Apps.DAL/WMS/WMS_ReInspectRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.DAL/WMS/WMS_ReInspectRepository.cs -------------------------------------------------------------------------------- /src/Apps.DAL/WMS/WMS_ReportRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.DAL/WMS/WMS_ReportRepository.cs -------------------------------------------------------------------------------- /src/Apps.DAL/WMS/WMS_SaleOrderRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.DAL/WMS/WMS_SaleOrderRepository.cs -------------------------------------------------------------------------------- /src/Apps.DAL/WebpartRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.DAL/WebpartRepository.cs -------------------------------------------------------------------------------- /src/Apps.DAL/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.DAL/packages.config -------------------------------------------------------------------------------- /src/Apps.EncryptHelper/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.EncryptHelper/App.config -------------------------------------------------------------------------------- /src/Apps.EncryptHelper/Encrypt.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.EncryptHelper/Encrypt.Designer.cs -------------------------------------------------------------------------------- /src/Apps.EncryptHelper/Encrypt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.EncryptHelper/Encrypt.cs -------------------------------------------------------------------------------- /src/Apps.EncryptHelper/Encrypt.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.EncryptHelper/Encrypt.resx -------------------------------------------------------------------------------- /src/Apps.EncryptHelper/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.EncryptHelper/Program.cs -------------------------------------------------------------------------------- /src/Apps.IBLL/Apps.IBLL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IBLL/Apps.IBLL.csproj -------------------------------------------------------------------------------- /src/Apps.IBLL/AutoGenerated/IBaseBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IBLL/AutoGenerated/IBaseBLL.cs -------------------------------------------------------------------------------- /src/Apps.IBLL/AutoGenerated/ICommonBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IBLL/AutoGenerated/ICommonBLL.cs -------------------------------------------------------------------------------- /src/Apps.IBLL/AutoGenerated/ICommonBLL.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IBLL/AutoGenerated/ICommonBLL.tt -------------------------------------------------------------------------------- /src/Apps.IBLL/AutoGenerated/IFlow_FormBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IBLL/AutoGenerated/IFlow_FormBLL.cs -------------------------------------------------------------------------------- /src/Apps.IBLL/AutoGenerated/IFlow_SealBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IBLL/AutoGenerated/IFlow_SealBLL.cs -------------------------------------------------------------------------------- /src/Apps.IBLL/AutoGenerated/IFlow_StepBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IBLL/AutoGenerated/IFlow_StepBLL.cs -------------------------------------------------------------------------------- /src/Apps.IBLL/AutoGenerated/IFlow_TypeBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IBLL/AutoGenerated/IFlow_TypeBLL.cs -------------------------------------------------------------------------------- /src/Apps.IBLL/AutoGenerated/ISysAreasBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IBLL/AutoGenerated/ISysAreasBLL.cs -------------------------------------------------------------------------------- /src/Apps.IBLL/AutoGenerated/ISysLogBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IBLL/AutoGenerated/ISysLogBLL.cs -------------------------------------------------------------------------------- /src/Apps.IBLL/AutoGenerated/ISysModuleBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IBLL/AutoGenerated/ISysModuleBLL.cs -------------------------------------------------------------------------------- /src/Apps.IBLL/AutoGenerated/ISysParamBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IBLL/AutoGenerated/ISysParamBLL.cs -------------------------------------------------------------------------------- /src/Apps.IBLL/AutoGenerated/ISysRightBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IBLL/AutoGenerated/ISysRightBLL.cs -------------------------------------------------------------------------------- /src/Apps.IBLL/AutoGenerated/ISysRoleBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IBLL/AutoGenerated/ISysRoleBLL.cs -------------------------------------------------------------------------------- /src/Apps.IBLL/AutoGenerated/ISysSampleBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IBLL/AutoGenerated/ISysSampleBLL.cs -------------------------------------------------------------------------------- /src/Apps.IBLL/AutoGenerated/ISysStructBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IBLL/AutoGenerated/ISysStructBLL.cs -------------------------------------------------------------------------------- /src/Apps.IBLL/AutoGenerated/ISysUserBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IBLL/AutoGenerated/ISysUserBLL.cs -------------------------------------------------------------------------------- /src/Apps.IBLL/AutoGenerated/IWC_GroupBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IBLL/AutoGenerated/IWC_GroupBLL.cs -------------------------------------------------------------------------------- /src/Apps.IBLL/AutoGenerated/IWC_UserBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IBLL/AutoGenerated/IWC_UserBLL.cs -------------------------------------------------------------------------------- /src/Apps.IBLL/AutoGenerated/IWMS_AIBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IBLL/AutoGenerated/IWMS_AIBLL.cs -------------------------------------------------------------------------------- /src/Apps.IBLL/AutoGenerated/IWMS_InvBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IBLL/AutoGenerated/IWMS_InvBLL.cs -------------------------------------------------------------------------------- /src/Apps.IBLL/AutoGenerated/IWMS_LineBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IBLL/AutoGenerated/IWMS_LineBLL.cs -------------------------------------------------------------------------------- /src/Apps.IBLL/AutoGenerated/IWMS_POBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IBLL/AutoGenerated/IWMS_POBLL.cs -------------------------------------------------------------------------------- /src/Apps.IBLL/AutoGenerated/IWMS_PartBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IBLL/AutoGenerated/IWMS_PartBLL.cs -------------------------------------------------------------------------------- /src/Apps.IBLL/Flow/IFlow_FormAttrBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IBLL/Flow/IFlow_FormAttrBLL.cs -------------------------------------------------------------------------------- /src/Apps.IBLL/Flow/IFlow_FormBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IBLL/Flow/IFlow_FormBLL.cs -------------------------------------------------------------------------------- /src/Apps.IBLL/Flow/IFlow_FormContentBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IBLL/Flow/IFlow_FormContentBLL.cs -------------------------------------------------------------------------------- /src/Apps.IBLL/Flow/IFlow_StepBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IBLL/Flow/IFlow_StepBLL.cs -------------------------------------------------------------------------------- /src/Apps.IBLL/Flow/IFlow_StepRuleBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IBLL/Flow/IFlow_StepRuleBLL.cs -------------------------------------------------------------------------------- /src/Apps.IBLL/Flow/IFlow_TypeBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IBLL/Flow/IFlow_TypeBLL.cs -------------------------------------------------------------------------------- /src/Apps.IBLL/IAccountBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IBLL/IAccountBLL.cs -------------------------------------------------------------------------------- /src/Apps.IBLL/IHomeBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IBLL/IHomeBLL.cs -------------------------------------------------------------------------------- /src/Apps.IBLL/IWebpartBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IBLL/IWebpartBLL.cs -------------------------------------------------------------------------------- /src/Apps.IBLL/MIS/IMIS_ArticleBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IBLL/MIS/IMIS_ArticleBLL.cs -------------------------------------------------------------------------------- /src/Apps.IBLL/MIS/IMIS_Article_AlbumsBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IBLL/MIS/IMIS_Article_AlbumsBLL.cs -------------------------------------------------------------------------------- /src/Apps.IBLL/MIS/IMIS_Article_CommentBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IBLL/MIS/IMIS_Article_CommentBLL.cs -------------------------------------------------------------------------------- /src/Apps.IBLL/MIS/IMIS_WebIM_MessageBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IBLL/MIS/IMIS_WebIM_MessageBLL.cs -------------------------------------------------------------------------------- /src/Apps.IBLL/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IBLL/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Apps.IBLL/Spl/ISpl_PersonBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IBLL/Spl/ISpl_PersonBLL.cs -------------------------------------------------------------------------------- /src/Apps.IBLL/Spl/ISpl_ProductBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IBLL/Spl/ISpl_ProductBLL.cs -------------------------------------------------------------------------------- /src/Apps.IBLL/Spl/ISpl_WareCategoryBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IBLL/Spl/ISpl_WareCategoryBLL.cs -------------------------------------------------------------------------------- /src/Apps.IBLL/Spl/ISpl_WareCheckTotalBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IBLL/Spl/ISpl_WareCheckTotalBLL.cs -------------------------------------------------------------------------------- /src/Apps.IBLL/Spl/ISpl_WareDetailsBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IBLL/Spl/ISpl_WareDetailsBLL.cs -------------------------------------------------------------------------------- /src/Apps.IBLL/Spl/ISpl_WareStockPileBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IBLL/Spl/ISpl_WareStockPileBLL.cs -------------------------------------------------------------------------------- /src/Apps.IBLL/Spl/ISpl_WarehouseBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IBLL/Spl/ISpl_WarehouseBLL.cs -------------------------------------------------------------------------------- /src/Apps.IBLL/Sys/IJOB_TASKJOBSBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IBLL/Sys/IJOB_TASKJOBSBLL.cs -------------------------------------------------------------------------------- /src/Apps.IBLL/Sys/IJOB_TASKJOBS_LOGBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IBLL/Sys/IJOB_TASKJOBS_LOGBLL.cs -------------------------------------------------------------------------------- /src/Apps.IBLL/Sys/ISysAreasBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IBLL/Sys/ISysAreasBLL.cs -------------------------------------------------------------------------------- /src/Apps.IBLL/Sys/ISysCalendarPlanBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IBLL/Sys/ISysCalendarPlanBLL.cs -------------------------------------------------------------------------------- /src/Apps.IBLL/Sys/ISysExceptionBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IBLL/Sys/ISysExceptionBLL.cs -------------------------------------------------------------------------------- /src/Apps.IBLL/Sys/ISysLogBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IBLL/Sys/ISysLogBLL.cs -------------------------------------------------------------------------------- /src/Apps.IBLL/Sys/ISysModuleBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IBLL/Sys/ISysModuleBLL.cs -------------------------------------------------------------------------------- /src/Apps.IBLL/Sys/ISysModuleOperateBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IBLL/Sys/ISysModuleOperateBLL.cs -------------------------------------------------------------------------------- /src/Apps.IBLL/Sys/ISysParamBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IBLL/Sys/ISysParamBLL.cs -------------------------------------------------------------------------------- /src/Apps.IBLL/Sys/ISysPositionBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IBLL/Sys/ISysPositionBLL.cs -------------------------------------------------------------------------------- /src/Apps.IBLL/Sys/ISysRightBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IBLL/Sys/ISysRightBLL.cs -------------------------------------------------------------------------------- /src/Apps.IBLL/Sys/ISysRoleBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IBLL/Sys/ISysRoleBLL.cs -------------------------------------------------------------------------------- /src/Apps.IBLL/Sys/ISysSampleBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IBLL/Sys/ISysSampleBLL.cs -------------------------------------------------------------------------------- /src/Apps.IBLL/Sys/ISysStructBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IBLL/Sys/ISysStructBLL.cs -------------------------------------------------------------------------------- /src/Apps.IBLL/Sys/ISysUserBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IBLL/Sys/ISysUserBLL.cs -------------------------------------------------------------------------------- /src/Apps.IBLL/Sys/ISysUserConfigBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IBLL/Sys/ISysUserConfigBLL.cs -------------------------------------------------------------------------------- /src/Apps.IBLL/WC/IWC_GroupBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IBLL/WC/IWC_GroupBLL.cs -------------------------------------------------------------------------------- /src/Apps.IBLL/WC/IWC_MessageResponseBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IBLL/WC/IWC_MessageResponseBLL.cs -------------------------------------------------------------------------------- /src/Apps.IBLL/WC/IWC_OfficalAccountsBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IBLL/WC/IWC_OfficalAccountsBLL.cs -------------------------------------------------------------------------------- /src/Apps.IBLL/WC/IWC_UserBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IBLL/WC/IWC_UserBLL.cs -------------------------------------------------------------------------------- /src/Apps.IBLL/WMS/IWMS_AIBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IBLL/WMS/IWMS_AIBLL.cs -------------------------------------------------------------------------------- /src/Apps.IBLL/WMS/IWMS_AIBLL_1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IBLL/WMS/IWMS_AIBLL_1.cs -------------------------------------------------------------------------------- /src/Apps.IBLL/WMS/IWMS_CustomerBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IBLL/WMS/IWMS_CustomerBLL.cs -------------------------------------------------------------------------------- /src/Apps.IBLL/WMS/IWMS_Feed_ListBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IBLL/WMS/IWMS_Feed_ListBLL.cs -------------------------------------------------------------------------------- /src/Apps.IBLL/WMS/IWMS_InvBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IBLL/WMS/IWMS_InvBLL.cs -------------------------------------------------------------------------------- /src/Apps.IBLL/WMS/IWMS_InvInfoBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IBLL/WMS/IWMS_InvInfoBLL.cs -------------------------------------------------------------------------------- /src/Apps.IBLL/WMS/IWMS_InvRecordBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IBLL/WMS/IWMS_InvRecordBLL.cs -------------------------------------------------------------------------------- /src/Apps.IBLL/WMS/IWMS_Inv_AdjustBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IBLL/WMS/IWMS_Inv_AdjustBLL.cs -------------------------------------------------------------------------------- /src/Apps.IBLL/WMS/IWMS_Inv_History_DBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IBLL/WMS/IWMS_Inv_History_DBLL.cs -------------------------------------------------------------------------------- /src/Apps.IBLL/WMS/IWMS_Inventory_DBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IBLL/WMS/IWMS_Inventory_DBLL.cs -------------------------------------------------------------------------------- /src/Apps.IBLL/WMS/IWMS_Inventory_HBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IBLL/WMS/IWMS_Inventory_HBLL.cs -------------------------------------------------------------------------------- /src/Apps.IBLL/WMS/IWMS_POBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IBLL/WMS/IWMS_POBLL.cs -------------------------------------------------------------------------------- /src/Apps.IBLL/WMS/IWMS_PartBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IBLL/WMS/IWMS_PartBLL.cs -------------------------------------------------------------------------------- /src/Apps.IBLL/WMS/IWMS_Product_EntryBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IBLL/WMS/IWMS_Product_EntryBLL.cs -------------------------------------------------------------------------------- /src/Apps.IBLL/WMS/IWMS_ReInspectBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IBLL/WMS/IWMS_ReInspectBLL.cs -------------------------------------------------------------------------------- /src/Apps.IBLL/WMS/IWMS_ReportBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IBLL/WMS/IWMS_ReportBLL.cs -------------------------------------------------------------------------------- /src/Apps.IBLL/WMS/IWMS_ReportBLL_1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IBLL/WMS/IWMS_ReportBLL_1.cs -------------------------------------------------------------------------------- /src/Apps.IBLL/WMS/IWMS_ReportParamBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IBLL/WMS/IWMS_ReportParamBLL.cs -------------------------------------------------------------------------------- /src/Apps.IBLL/WMS/IWMS_ReturnOrderBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IBLL/WMS/IWMS_ReturnOrderBLL.cs -------------------------------------------------------------------------------- /src/Apps.IBLL/WMS/IWMS_ReturnOrder_DBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IBLL/WMS/IWMS_ReturnOrder_DBLL.cs -------------------------------------------------------------------------------- /src/Apps.IBLL/WMS/IWMS_Sale_OrderBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IBLL/WMS/IWMS_Sale_OrderBLL.cs -------------------------------------------------------------------------------- /src/Apps.IBLL/WMS/IWMS_SubInvInfoBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IBLL/WMS/IWMS_SubInvInfoBLL.cs -------------------------------------------------------------------------------- /src/Apps.IBLL/WMS/IWMS_SupplierBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IBLL/WMS/IWMS_SupplierBLL.cs -------------------------------------------------------------------------------- /src/Apps.IDAL/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IDAL/App.config -------------------------------------------------------------------------------- /src/Apps.IDAL/Apps.IDAL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IDAL/Apps.IDAL.csproj -------------------------------------------------------------------------------- /src/Apps.IDAL/Flow/IFlow_FormRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IDAL/Flow/IFlow_FormRepository.cs -------------------------------------------------------------------------------- /src/Apps.IDAL/Flow/IFlow_StepRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IDAL/Flow/IFlow_StepRepository.cs -------------------------------------------------------------------------------- /src/Apps.IDAL/Flow/IFlow_TypeRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IDAL/Flow/IFlow_TypeRepository.cs -------------------------------------------------------------------------------- /src/Apps.IDAL/IAccountRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IDAL/IAccountRepository.cs -------------------------------------------------------------------------------- /src/Apps.IDAL/IHomeRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IDAL/IHomeRepository.cs -------------------------------------------------------------------------------- /src/Apps.IDAL/IWebpartRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IDAL/IWebpartRepository.cs -------------------------------------------------------------------------------- /src/Apps.IDAL/MIS/IMIS_ArticleRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IDAL/MIS/IMIS_ArticleRepository.cs -------------------------------------------------------------------------------- /src/Apps.IDAL/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IDAL/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Apps.IDAL/Sys/IJOB_TASKJOBSRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IDAL/Sys/IJOB_TASKJOBSRepository.cs -------------------------------------------------------------------------------- /src/Apps.IDAL/Sys/ISysAreasRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IDAL/Sys/ISysAreasRepository.cs -------------------------------------------------------------------------------- /src/Apps.IDAL/Sys/ISysExceptionRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IDAL/Sys/ISysExceptionRepository.cs -------------------------------------------------------------------------------- /src/Apps.IDAL/Sys/ISysLogRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IDAL/Sys/ISysLogRepository.cs -------------------------------------------------------------------------------- /src/Apps.IDAL/Sys/ISysModuleRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IDAL/Sys/ISysModuleRepository.cs -------------------------------------------------------------------------------- /src/Apps.IDAL/Sys/ISysPositionRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IDAL/Sys/ISysPositionRepository.cs -------------------------------------------------------------------------------- /src/Apps.IDAL/Sys/ISysRightRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IDAL/Sys/ISysRightRepository.cs -------------------------------------------------------------------------------- /src/Apps.IDAL/Sys/ISysRoleRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IDAL/Sys/ISysRoleRepository.cs -------------------------------------------------------------------------------- /src/Apps.IDAL/Sys/ISysSampleRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IDAL/Sys/ISysSampleRepository.cs -------------------------------------------------------------------------------- /src/Apps.IDAL/Sys/ISysStructRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IDAL/Sys/ISysStructRepository.cs -------------------------------------------------------------------------------- /src/Apps.IDAL/Sys/ISysUserRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IDAL/Sys/ISysUserRepository.cs -------------------------------------------------------------------------------- /src/Apps.IDAL/WC/IWC_GroupRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IDAL/WC/IWC_GroupRepository.cs -------------------------------------------------------------------------------- /src/Apps.IDAL/WMS/IWMS_AIRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IDAL/WMS/IWMS_AIRepository.cs -------------------------------------------------------------------------------- /src/Apps.IDAL/WMS/IWMS_FeedListRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IDAL/WMS/IWMS_FeedListRepository.cs -------------------------------------------------------------------------------- /src/Apps.IDAL/WMS/IWMS_PartRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IDAL/WMS/IWMS_PartRepository.cs -------------------------------------------------------------------------------- /src/Apps.IDAL/WMS/IWMS_ReportRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IDAL/WMS/IWMS_ReportRepository.cs -------------------------------------------------------------------------------- /src/Apps.IDAL/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.IDAL/packages.config -------------------------------------------------------------------------------- /src/Apps.Jobs/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Jobs/App.config -------------------------------------------------------------------------------- /src/Apps.Jobs/Apps.Jobs.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Jobs/Apps.Jobs.csproj -------------------------------------------------------------------------------- /src/Apps.Jobs/BaseRun.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Jobs/BaseRun.cs -------------------------------------------------------------------------------- /src/Apps.Jobs/CutstomProcedureJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Jobs/CutstomProcedureJob.cs -------------------------------------------------------------------------------- /src/Apps.Jobs/IBaseRun.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Jobs/IBaseRun.cs -------------------------------------------------------------------------------- /src/Apps.Jobs/IJobPlan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Jobs/IJobPlan.cs -------------------------------------------------------------------------------- /src/Apps.Jobs/ITaskJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Jobs/ITaskJob.cs -------------------------------------------------------------------------------- /src/Apps.Jobs/ITaskRun.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Jobs/ITaskRun.cs -------------------------------------------------------------------------------- /src/Apps.Jobs/JobsTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Jobs/JobsTools.cs -------------------------------------------------------------------------------- /src/Apps.Jobs/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Jobs/Log.cs -------------------------------------------------------------------------------- /src/Apps.Jobs/MIS/DiscussPostNewTopicsJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Jobs/MIS/DiscussPostNewTopicsJob.cs -------------------------------------------------------------------------------- /src/Apps.Jobs/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Jobs/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Apps.Jobs/TaskJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Jobs/TaskJob.cs -------------------------------------------------------------------------------- /src/Apps.Jobs/TaskRun.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Jobs/TaskRun.cs -------------------------------------------------------------------------------- /src/Apps.Jobs/WC/WeChatGetTokenJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Jobs/WC/WeChatGetTokenJob.cs -------------------------------------------------------------------------------- /src/Apps.Jobs/job_scheduling_data_2_0.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Jobs/job_scheduling_data_2_0.xsd -------------------------------------------------------------------------------- /src/Apps.Jobs/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Jobs/packages.config -------------------------------------------------------------------------------- /src/Apps.Locale/Apps.Locale.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Locale/Apps.Locale.csproj -------------------------------------------------------------------------------- /src/Apps.Locale/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Locale/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Apps.Locale/Resource.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Locale/Resource.Designer.cs -------------------------------------------------------------------------------- /src/Apps.Locale/Resource.en-US.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Apps.Locale/Resource.en-US.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Locale/Resource.en-US.resx -------------------------------------------------------------------------------- /src/Apps.Locale/Resource.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Locale/Resource.resx -------------------------------------------------------------------------------- /src/Apps.Models/Apps.Models.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/Apps.Models.csproj -------------------------------------------------------------------------------- /src/Apps.Models/AutoGenerated/BaseModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/AutoGenerated/BaseModel.cs -------------------------------------------------------------------------------- /src/Apps.Models/AutoGenerated/BaseModel.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/AutoGenerated/BaseModel.tt -------------------------------------------------------------------------------- /src/Apps.Models/AutoGenerated/SysLogModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/AutoGenerated/SysLogModel.cs -------------------------------------------------------------------------------- /src/Apps.Models/Common.ttinclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/Common.ttinclude -------------------------------------------------------------------------------- /src/Apps.Models/Common/ChartsModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/Common/ChartsModel.cs -------------------------------------------------------------------------------- /src/Apps.Models/DB.Context.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/DB.Context.cs -------------------------------------------------------------------------------- /src/Apps.Models/DB.Context.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/DB.Context.tt -------------------------------------------------------------------------------- /src/Apps.Models/DB.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/DB.Designer.cs -------------------------------------------------------------------------------- /src/Apps.Models/DB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/DB.cs -------------------------------------------------------------------------------- /src/Apps.Models/DB.edmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/DB.edmx -------------------------------------------------------------------------------- /src/Apps.Models/DB.edmx.diagram: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/DB.edmx.diagram -------------------------------------------------------------------------------- /src/Apps.Models/DB.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/DB.tt -------------------------------------------------------------------------------- /src/Apps.Models/Enum/FlowEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/Enum/FlowEnum.cs -------------------------------------------------------------------------------- /src/Apps.Models/Enum/WeChatEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/Enum/WeChatEnum.cs -------------------------------------------------------------------------------- /src/Apps.Models/Flow/Flow_CommonModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/Flow/Flow_CommonModel.cs -------------------------------------------------------------------------------- /src/Apps.Models/Flow/Flow_FormAttrModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/Flow/Flow_FormAttrModel.cs -------------------------------------------------------------------------------- /src/Apps.Models/Flow/Flow_FormModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/Flow/Flow_FormModel.cs -------------------------------------------------------------------------------- /src/Apps.Models/Flow/Flow_StepModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/Flow/Flow_StepModel.cs -------------------------------------------------------------------------------- /src/Apps.Models/Flow/Flow_StepRuleModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/Flow/Flow_StepRuleModel.cs -------------------------------------------------------------------------------- /src/Apps.Models/Flow/Flow_TypeModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/Flow/Flow_TypeModel.cs -------------------------------------------------------------------------------- /src/Apps.Models/Flow_External.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/Flow_External.cs -------------------------------------------------------------------------------- /src/Apps.Models/Flow_Form.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/Flow_Form.cs -------------------------------------------------------------------------------- /src/Apps.Models/Flow_FormAttr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/Flow_FormAttr.cs -------------------------------------------------------------------------------- /src/Apps.Models/Flow_FormContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/Flow_FormContent.cs -------------------------------------------------------------------------------- /src/Apps.Models/Flow_FormContentStepCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/Flow_FormContentStepCheck.cs -------------------------------------------------------------------------------- /src/Apps.Models/Flow_Seal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/Flow_Seal.cs -------------------------------------------------------------------------------- /src/Apps.Models/Flow_Step.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/Flow_Step.cs -------------------------------------------------------------------------------- /src/Apps.Models/Flow_StepRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/Flow_StepRule.cs -------------------------------------------------------------------------------- /src/Apps.Models/Flow_Type.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/Flow_Type.cs -------------------------------------------------------------------------------- /src/Apps.Models/ICommon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/ICommon.cs -------------------------------------------------------------------------------- /src/Apps.Models/JOB/JOB_TASKJOBSModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/JOB/JOB_TASKJOBSModel.cs -------------------------------------------------------------------------------- /src/Apps.Models/JOB/JOB_TASKJOBS_LOGModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/JOB/JOB_TASKJOBS_LOGModel.cs -------------------------------------------------------------------------------- /src/Apps.Models/JOB/JobModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/JOB/JobModel.cs -------------------------------------------------------------------------------- /src/Apps.Models/JOB_TASKJOBS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/JOB_TASKJOBS.cs -------------------------------------------------------------------------------- /src/Apps.Models/JOB_TASKJOBS_LOG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/JOB_TASKJOBS_LOG.cs -------------------------------------------------------------------------------- /src/Apps.Models/MIS/MIS_ArticleModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/MIS/MIS_ArticleModel.cs -------------------------------------------------------------------------------- /src/Apps.Models/MIS/MIS_WebIM_GroupModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/MIS/MIS_WebIM_GroupModel.cs -------------------------------------------------------------------------------- /src/Apps.Models/MIS_Article.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/MIS_Article.cs -------------------------------------------------------------------------------- /src/Apps.Models/MIS_Article_Albums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/MIS_Article_Albums.cs -------------------------------------------------------------------------------- /src/Apps.Models/MIS_Article_Category.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/MIS_Article_Category.cs -------------------------------------------------------------------------------- /src/Apps.Models/MIS_Article_Comment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/MIS_Article_Comment.cs -------------------------------------------------------------------------------- /src/Apps.Models/MIS_WebIM_CommonTalk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/MIS_WebIM_CommonTalk.cs -------------------------------------------------------------------------------- /src/Apps.Models/MIS_WebIM_Message.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/MIS_WebIM_Message.cs -------------------------------------------------------------------------------- /src/Apps.Models/MIS_WebIM_Message_Rec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/MIS_WebIM_Message_Rec.cs -------------------------------------------------------------------------------- /src/Apps.Models/MIS_WebIM_RecentContact.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/MIS_WebIM_RecentContact.cs -------------------------------------------------------------------------------- /src/Apps.Models/P_MIS_GetInfo_Result.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/P_MIS_GetInfo_Result.cs -------------------------------------------------------------------------------- /src/Apps.Models/P_Sys_GetAllUsers_Result.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/P_Sys_GetAllUsers_Result.cs -------------------------------------------------------------------------------- /src/Apps.Models/P_Sys_WebPart_Result.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/P_Sys_WebPart_Result.cs -------------------------------------------------------------------------------- /src/Apps.Models/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Apps.Models/Spl/ProductPillarModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/Spl/ProductPillarModel.cs -------------------------------------------------------------------------------- /src/Apps.Models/Spl/Spl_ContactCompanyCategoryModel.cs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/Apps.Models/Spl/Spl_InOutCategoryModel.cs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/Apps.Models/Spl/Spl_PersonModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/Spl/Spl_PersonModel.cs -------------------------------------------------------------------------------- /src/Apps.Models/Spl/Spl_ProductModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/Spl/Spl_ProductModel.cs -------------------------------------------------------------------------------- /src/Apps.Models/Spl/Spl_WareCategoryModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/Spl/Spl_WareCategoryModel.cs -------------------------------------------------------------------------------- /src/Apps.Models/Spl/Spl_WareDetailsModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/Spl/Spl_WareDetailsModel.cs -------------------------------------------------------------------------------- /src/Apps.Models/Spl/Spl_WareTotalINModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/Spl/Spl_WareTotalINModel.cs -------------------------------------------------------------------------------- /src/Apps.Models/Spl/Spl_WareTotalOUTModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/Spl/Spl_WareTotalOUTModel.cs -------------------------------------------------------------------------------- /src/Apps.Models/Spl/Spl_WarehouseCategoryModel.cs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/Apps.Models/Spl/Spl_WarehouseModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/Spl/Spl_WarehouseModel.cs -------------------------------------------------------------------------------- /src/Apps.Models/Spl_ContactCompany.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/Spl_ContactCompany.cs -------------------------------------------------------------------------------- /src/Apps.Models/Spl_EarlyWareingGood.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/Spl_EarlyWareingGood.cs -------------------------------------------------------------------------------- /src/Apps.Models/Spl_InOutCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/Spl_InOutCategory.cs -------------------------------------------------------------------------------- /src/Apps.Models/Spl_Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/Spl_Person.cs -------------------------------------------------------------------------------- /src/Apps.Models/Spl_Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/Spl_Product.cs -------------------------------------------------------------------------------- /src/Apps.Models/Spl_ProductCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/Spl_ProductCategory.cs -------------------------------------------------------------------------------- /src/Apps.Models/Spl_TestClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/Spl_TestClass.cs -------------------------------------------------------------------------------- /src/Apps.Models/Spl_TestStudents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/Spl_TestStudents.cs -------------------------------------------------------------------------------- /src/Apps.Models/Spl_WareCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/Spl_WareCategory.cs -------------------------------------------------------------------------------- /src/Apps.Models/Spl_WareCheckTotal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/Spl_WareCheckTotal.cs -------------------------------------------------------------------------------- /src/Apps.Models/Spl_WareDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/Spl_WareDetails.cs -------------------------------------------------------------------------------- /src/Apps.Models/Spl_WareStockPile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/Spl_WareStockPile.cs -------------------------------------------------------------------------------- /src/Apps.Models/Spl_WareUnitConvert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/Spl_WareUnitConvert.cs -------------------------------------------------------------------------------- /src/Apps.Models/Spl_Warehouse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/Spl_Warehouse.cs -------------------------------------------------------------------------------- /src/Apps.Models/Spl_WarehouseAllocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/Spl_WarehouseAllocation.cs -------------------------------------------------------------------------------- /src/Apps.Models/Spl_WarehouseCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/Spl_WarehouseCategory.cs -------------------------------------------------------------------------------- /src/Apps.Models/Spl_WarehouseWarrant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/Spl_WarehouseWarrant.cs -------------------------------------------------------------------------------- /src/Apps.Models/Spl_WarehouseWarrantOUT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/Spl_WarehouseWarrantOUT.cs -------------------------------------------------------------------------------- /src/Apps.Models/Sys/AccountModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/Sys/AccountModel.cs -------------------------------------------------------------------------------- /src/Apps.Models/Sys/SysApiInterfaceModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/Sys/SysApiInterfaceModel.cs -------------------------------------------------------------------------------- /src/Apps.Models/Sys/SysAppOauth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/Sys/SysAppOauth.cs -------------------------------------------------------------------------------- /src/Apps.Models/Sys/SysAreasModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/Sys/SysAreasModel.cs -------------------------------------------------------------------------------- /src/Apps.Models/Sys/SysCalendarPlanModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/Sys/SysCalendarPlanModel.cs -------------------------------------------------------------------------------- /src/Apps.Models/Sys/SysConfigModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/Sys/SysConfigModel.cs -------------------------------------------------------------------------------- /src/Apps.Models/Sys/SysExceptionModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/Sys/SysExceptionModel.cs -------------------------------------------------------------------------------- /src/Apps.Models/Sys/SysLogModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/Sys/SysLogModel.cs -------------------------------------------------------------------------------- /src/Apps.Models/Sys/SysModuleModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/Sys/SysModuleModel.cs -------------------------------------------------------------------------------- /src/Apps.Models/Sys/SysModuleOperateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/Sys/SysModuleOperateModel.cs -------------------------------------------------------------------------------- /src/Apps.Models/Sys/SysParamModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/Sys/SysParamModel.cs -------------------------------------------------------------------------------- /src/Apps.Models/Sys/SysPositionModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/Sys/SysPositionModel.cs -------------------------------------------------------------------------------- /src/Apps.Models/Sys/SysResultModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/Sys/SysResultModel.cs -------------------------------------------------------------------------------- /src/Apps.Models/Sys/SysRight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/Sys/SysRight.cs -------------------------------------------------------------------------------- /src/Apps.Models/Sys/SysRightOperateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/Sys/SysRightOperateModel.cs -------------------------------------------------------------------------------- /src/Apps.Models/Sys/SysRoleModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/Sys/SysRoleModel.cs -------------------------------------------------------------------------------- /src/Apps.Models/Sys/SysSampleModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/Sys/SysSampleModel.cs -------------------------------------------------------------------------------- /src/Apps.Models/Sys/SysSequenceModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/Sys/SysSequenceModel.cs -------------------------------------------------------------------------------- /src/Apps.Models/Sys/SysSettingsModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/Sys/SysSettingsModel.cs -------------------------------------------------------------------------------- /src/Apps.Models/Sys/SysStructModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/Sys/SysStructModel.cs -------------------------------------------------------------------------------- /src/Apps.Models/Sys/SysStructUserModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/Sys/SysStructUserModel.cs -------------------------------------------------------------------------------- /src/Apps.Models/Sys/SysTreeModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/Sys/SysTreeModel.cs -------------------------------------------------------------------------------- /src/Apps.Models/Sys/SysUserConfigModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/Sys/SysUserConfigModel.cs -------------------------------------------------------------------------------- /src/Apps.Models/Sys/SysUserModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/Sys/SysUserModel.cs -------------------------------------------------------------------------------- /src/Apps.Models/Sys/permModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/Sys/permModel.cs -------------------------------------------------------------------------------- /src/Apps.Models/SysAreas.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/SysAreas.cs -------------------------------------------------------------------------------- /src/Apps.Models/SysCalendarPlan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/SysCalendarPlan.cs -------------------------------------------------------------------------------- /src/Apps.Models/SysException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/SysException.cs -------------------------------------------------------------------------------- /src/Apps.Models/SysImportExcelLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/SysImportExcelLog.cs -------------------------------------------------------------------------------- /src/Apps.Models/SysLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/SysLog.cs -------------------------------------------------------------------------------- /src/Apps.Models/SysModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/SysModule.cs -------------------------------------------------------------------------------- /src/Apps.Models/SysModuleDataFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/SysModuleDataFilter.cs -------------------------------------------------------------------------------- /src/Apps.Models/SysModuleOperate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/SysModuleOperate.cs -------------------------------------------------------------------------------- /src/Apps.Models/SysParam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/SysParam.cs -------------------------------------------------------------------------------- /src/Apps.Models/SysPosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/SysPosition.cs -------------------------------------------------------------------------------- /src/Apps.Models/SysRight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/SysRight.cs -------------------------------------------------------------------------------- /src/Apps.Models/SysRightDataFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/SysRightDataFilter.cs -------------------------------------------------------------------------------- /src/Apps.Models/SysRightOperate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/SysRightOperate.cs -------------------------------------------------------------------------------- /src/Apps.Models/SysRole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/SysRole.cs -------------------------------------------------------------------------------- /src/Apps.Models/SysSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/SysSample.cs -------------------------------------------------------------------------------- /src/Apps.Models/SysSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/SysSettings.cs -------------------------------------------------------------------------------- /src/Apps.Models/SysStruct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/SysStruct.cs -------------------------------------------------------------------------------- /src/Apps.Models/SysUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/SysUser.cs -------------------------------------------------------------------------------- /src/Apps.Models/SysUserConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/SysUserConfig.cs -------------------------------------------------------------------------------- /src/Apps.Models/V_WMS_InvHistoryAvg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/V_WMS_InvHistoryAvg.cs -------------------------------------------------------------------------------- /src/Apps.Models/ValidateAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/ValidateAttribute.cs -------------------------------------------------------------------------------- /src/Apps.Models/WC_Group.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/WC_Group.cs -------------------------------------------------------------------------------- /src/Apps.Models/WC_MessageResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/WC_MessageResponse.cs -------------------------------------------------------------------------------- /src/Apps.Models/WC_OfficalAccounts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/WC_OfficalAccounts.cs -------------------------------------------------------------------------------- /src/Apps.Models/WC_ResponseLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/WC_ResponseLog.cs -------------------------------------------------------------------------------- /src/Apps.Models/WC_User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/WC_User.cs -------------------------------------------------------------------------------- /src/Apps.Models/WMS/WMS_AIModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/WMS/WMS_AIModel.cs -------------------------------------------------------------------------------- /src/Apps.Models/WMS/WMS_CustomerModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/WMS/WMS_CustomerModel.cs -------------------------------------------------------------------------------- /src/Apps.Models/WMS/WMS_Feed_ListModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/WMS/WMS_Feed_ListModel.cs -------------------------------------------------------------------------------- /src/Apps.Models/WMS/WMS_HeaderModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/WMS/WMS_HeaderModel.cs -------------------------------------------------------------------------------- /src/Apps.Models/WMS/WMS_InvHistoryAvg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/WMS/WMS_InvHistoryAvg.cs -------------------------------------------------------------------------------- /src/Apps.Models/WMS/WMS_InvInfoModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/WMS/WMS_InvInfoModel.cs -------------------------------------------------------------------------------- /src/Apps.Models/WMS/WMS_InvModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/WMS/WMS_InvModel.cs -------------------------------------------------------------------------------- /src/Apps.Models/WMS/WMS_InvRecordModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/WMS/WMS_InvRecordModel.cs -------------------------------------------------------------------------------- /src/Apps.Models/WMS/WMS_Inv_AdjustModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/WMS/WMS_Inv_AdjustModel.cs -------------------------------------------------------------------------------- /src/Apps.Models/WMS/WMS_Inventory_DModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/WMS/WMS_Inventory_DModel.cs -------------------------------------------------------------------------------- /src/Apps.Models/WMS/WMS_Inventory_HModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/WMS/WMS_Inventory_HModel.cs -------------------------------------------------------------------------------- /src/Apps.Models/WMS/WMS_LineModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/WMS/WMS_LineModel.cs -------------------------------------------------------------------------------- /src/Apps.Models/WMS/WMS_POForAIModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/WMS/WMS_POForAIModel.cs -------------------------------------------------------------------------------- /src/Apps.Models/WMS/WMS_POModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/WMS/WMS_POModel.cs -------------------------------------------------------------------------------- /src/Apps.Models/WMS/WMS_PartModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/WMS/WMS_PartModel.cs -------------------------------------------------------------------------------- /src/Apps.Models/WMS/WMS_ReInspectModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/WMS/WMS_ReInspectModel.cs -------------------------------------------------------------------------------- /src/Apps.Models/WMS/WMS_ReportModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/WMS/WMS_ReportModel.cs -------------------------------------------------------------------------------- /src/Apps.Models/WMS/WMS_ReportParamModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/WMS/WMS_ReportParamModel.cs -------------------------------------------------------------------------------- /src/Apps.Models/WMS/WMS_ReturnOrderModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/WMS/WMS_ReturnOrderModel.cs -------------------------------------------------------------------------------- /src/Apps.Models/WMS/WMS_Sale_OrderModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/WMS/WMS_Sale_OrderModel.cs -------------------------------------------------------------------------------- /src/Apps.Models/WMS/WMS_SubInvInfoModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/WMS/WMS_SubInvInfoModel.cs -------------------------------------------------------------------------------- /src/Apps.Models/WMS/WMS_SupplierModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/WMS/WMS_SupplierModel.cs -------------------------------------------------------------------------------- /src/Apps.Models/WMS_AI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/WMS_AI.cs -------------------------------------------------------------------------------- /src/Apps.Models/WMS_Customer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/WMS_Customer.cs -------------------------------------------------------------------------------- /src/Apps.Models/WMS_Feed_List.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/WMS_Feed_List.cs -------------------------------------------------------------------------------- /src/Apps.Models/WMS_Header.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/WMS_Header.cs -------------------------------------------------------------------------------- /src/Apps.Models/WMS_Inv.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/WMS_Inv.cs -------------------------------------------------------------------------------- /src/Apps.Models/WMS_InvInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/WMS_InvInfo.cs -------------------------------------------------------------------------------- /src/Apps.Models/WMS_InvRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/WMS_InvRecord.cs -------------------------------------------------------------------------------- /src/Apps.Models/WMS_Inv_Adjust.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/WMS_Inv_Adjust.cs -------------------------------------------------------------------------------- /src/Apps.Models/WMS_Inv_History_D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/WMS_Inv_History_D.cs -------------------------------------------------------------------------------- /src/Apps.Models/WMS_Inv_History_H.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/WMS_Inv_History_H.cs -------------------------------------------------------------------------------- /src/Apps.Models/WMS_Inventory_D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/WMS_Inventory_D.cs -------------------------------------------------------------------------------- /src/Apps.Models/WMS_Inventory_H.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/WMS_Inventory_H.cs -------------------------------------------------------------------------------- /src/Apps.Models/WMS_Line.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/WMS_Line.cs -------------------------------------------------------------------------------- /src/Apps.Models/WMS_PO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/WMS_PO.cs -------------------------------------------------------------------------------- /src/Apps.Models/WMS_Part.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/WMS_Part.cs -------------------------------------------------------------------------------- /src/Apps.Models/WMS_Product_Entry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/WMS_Product_Entry.cs -------------------------------------------------------------------------------- /src/Apps.Models/WMS_ReInspect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/WMS_ReInspect.cs -------------------------------------------------------------------------------- /src/Apps.Models/WMS_Report.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/WMS_Report.cs -------------------------------------------------------------------------------- /src/Apps.Models/WMS_ReportParam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/WMS_ReportParam.cs -------------------------------------------------------------------------------- /src/Apps.Models/WMS_ReturnInspection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/WMS_ReturnInspection.cs -------------------------------------------------------------------------------- /src/Apps.Models/WMS_ReturnOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/WMS_ReturnOrder.cs -------------------------------------------------------------------------------- /src/Apps.Models/WMS_ReturnOrder_D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/WMS_ReturnOrder_D.cs -------------------------------------------------------------------------------- /src/Apps.Models/WMS_Sale_Order.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/WMS_Sale_Order.cs -------------------------------------------------------------------------------- /src/Apps.Models/WMS_SubInvInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/WMS_SubInvInfo.cs -------------------------------------------------------------------------------- /src/Apps.Models/WMS_Supplier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/WMS_Supplier.cs -------------------------------------------------------------------------------- /src/Apps.Models/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/packages.config -------------------------------------------------------------------------------- /src/Apps.Models/tbForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/tbForecast.cs -------------------------------------------------------------------------------- /src/Apps.Models/tbForecastTerm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/tbForecastTerm.cs -------------------------------------------------------------------------------- /src/Apps.Models/tbWindTerm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Models/tbWindTerm.cs -------------------------------------------------------------------------------- /src/Apps.Web/App_Start/BundleConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/App_Start/BundleConfig.cs -------------------------------------------------------------------------------- /src/Apps.Web/App_Start/FilterConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/App_Start/FilterConfig.cs -------------------------------------------------------------------------------- /src/Apps.Web/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/App_Start/RouteConfig.cs -------------------------------------------------------------------------------- /src/Apps.Web/Apps.Web.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Apps.Web.csproj -------------------------------------------------------------------------------- /src/Apps.Web/Areas/Demo/Views/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Areas/Demo/Views/web.config -------------------------------------------------------------------------------- /src/Apps.Web/Areas/Flow/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Areas/Flow/Views/Web.config -------------------------------------------------------------------------------- /src/Apps.Web/Areas/JOBS/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Areas/JOBS/Views/Web.config -------------------------------------------------------------------------------- /src/Apps.Web/Areas/MIS/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Areas/MIS/Views/Web.config -------------------------------------------------------------------------------- /src/Apps.Web/Areas/Spl/Views/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Areas/Spl/Views/web.config -------------------------------------------------------------------------------- /src/Apps.Web/Areas/WC/Core/OpenUserInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Areas/WC/Core/OpenUserInfo.cs -------------------------------------------------------------------------------- /src/Apps.Web/Areas/WC/Core/Server.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Areas/WC/Core/Server.cs -------------------------------------------------------------------------------- /src/Apps.Web/Areas/WC/Core/WeChatHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Areas/WC/Core/WeChatHelper.cs -------------------------------------------------------------------------------- /src/Apps.Web/Areas/WC/Views/User/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Areas/WC/Views/User/Edit.cshtml -------------------------------------------------------------------------------- /src/Apps.Web/Areas/WC/Views/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Areas/WC/Views/web.config -------------------------------------------------------------------------------- /src/Apps.Web/Areas/WC/WCAreaRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Areas/WC/WCAreaRegistration.cs -------------------------------------------------------------------------------- /src/Apps.Web/Areas/WMS/Views/AI/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Areas/WMS/Views/AI/Edit.cshtml -------------------------------------------------------------------------------- /src/Apps.Web/Areas/WMS/Views/AI/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Areas/WMS/Views/AI/Index.cshtml -------------------------------------------------------------------------------- /src/Apps.Web/Areas/WMS/Views/Inv/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Areas/WMS/Views/Inv/Edit.cshtml -------------------------------------------------------------------------------- /src/Apps.Web/Areas/WMS/Views/PO/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Areas/WMS/Views/PO/Edit.cshtml -------------------------------------------------------------------------------- /src/Apps.Web/Areas/WMS/Views/PO/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Areas/WMS/Views/PO/Index.cshtml -------------------------------------------------------------------------------- /src/Apps.Web/Content/Images/NotPic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Content/Images/NotPic.jpg -------------------------------------------------------------------------------- /src/Apps.Web/Content/Images/arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Content/Images/arrow.gif -------------------------------------------------------------------------------- /src/Apps.Web/Content/Images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Content/Images/bg.png -------------------------------------------------------------------------------- /src/Apps.Web/Content/Images/bg_bk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Content/Images/bg_bk.png -------------------------------------------------------------------------------- /src/Apps.Web/Content/Images/btn_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Content/Images/btn_bg.gif -------------------------------------------------------------------------------- /src/Apps.Web/Content/Images/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Content/Images/check.png -------------------------------------------------------------------------------- /src/Apps.Web/Content/Images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Content/Images/loading.gif -------------------------------------------------------------------------------- /src/Apps.Web/Content/Images/loading2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Content/Images/loading2.gif -------------------------------------------------------------------------------- /src/Apps.Web/Content/Images/logo - 副本.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Content/Images/logo - 副本.png -------------------------------------------------------------------------------- /src/Apps.Web/Content/Images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Content/Images/logo.png -------------------------------------------------------------------------------- /src/Apps.Web/Content/Images/nopic-t.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Content/Images/nopic-t.gif -------------------------------------------------------------------------------- /src/Apps.Web/Content/Images/nopic.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Content/Images/nopic.gif -------------------------------------------------------------------------------- /src/Apps.Web/Content/Images/status.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Content/Images/status.gif -------------------------------------------------------------------------------- /src/Apps.Web/Content/Images/tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Content/Images/tools.png -------------------------------------------------------------------------------- /src/Apps.Web/Content/Images/tools_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Content/Images/tools_bg.gif -------------------------------------------------------------------------------- /src/Apps.Web/Content/Images/upbtn_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Content/Images/upbtn_bg.gif -------------------------------------------------------------------------------- /src/Apps.Web/Content/Images/upbtn_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Content/Images/upbtn_bg.png -------------------------------------------------------------------------------- /src/Apps.Web/Content/Images/upfile_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Content/Images/upfile_bg.gif -------------------------------------------------------------------------------- /src/Apps.Web/Content/Images/void.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Content/Images/void.png -------------------------------------------------------------------------------- /src/Apps.Web/Content/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Content/Site.css -------------------------------------------------------------------------------- /src/Apps.Web/Content/Templete/Person.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Content/Templete/Person.xlsx -------------------------------------------------------------------------------- /src/Apps.Web/Content/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Content/bootstrap.css -------------------------------------------------------------------------------- /src/Apps.Web/Content/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Content/bootstrap.min.css -------------------------------------------------------------------------------- /src/Apps.Web/Content/icons/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Content/icons/back.png -------------------------------------------------------------------------------- /src/Apps.Web/Content/icons/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Content/icons/blank.gif -------------------------------------------------------------------------------- /src/Apps.Web/Content/icons/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Content/icons/cancel.png -------------------------------------------------------------------------------- /src/Apps.Web/Content/icons/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Content/icons/clear.png -------------------------------------------------------------------------------- /src/Apps.Web/Content/icons/cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Content/icons/cut.png -------------------------------------------------------------------------------- /src/Apps.Web/Content/icons/edit_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Content/icons/edit_add.png -------------------------------------------------------------------------------- /src/Apps.Web/Content/icons/edit_remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Content/icons/edit_remove.png -------------------------------------------------------------------------------- /src/Apps.Web/Content/icons/filesave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Content/icons/filesave.png -------------------------------------------------------------------------------- /src/Apps.Web/Content/icons/filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Content/icons/filter.png -------------------------------------------------------------------------------- /src/Apps.Web/Content/icons/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Content/icons/help.png -------------------------------------------------------------------------------- /src/Apps.Web/Content/icons/large_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Content/icons/large_chart.png -------------------------------------------------------------------------------- /src/Apps.Web/Content/icons/large_clipart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Content/icons/large_clipart.png -------------------------------------------------------------------------------- /src/Apps.Web/Content/icons/large_picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Content/icons/large_picture.png -------------------------------------------------------------------------------- /src/Apps.Web/Content/icons/large_shapes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Content/icons/large_shapes.png -------------------------------------------------------------------------------- /src/Apps.Web/Content/icons/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Content/icons/lock.png -------------------------------------------------------------------------------- /src/Apps.Web/Content/icons/man.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Content/icons/man.png -------------------------------------------------------------------------------- /src/Apps.Web/Content/icons/mini_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Content/icons/mini_add.png -------------------------------------------------------------------------------- /src/Apps.Web/Content/icons/mini_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Content/icons/mini_edit.png -------------------------------------------------------------------------------- /src/Apps.Web/Content/icons/mini_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Content/icons/mini_refresh.png -------------------------------------------------------------------------------- /src/Apps.Web/Content/icons/more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Content/icons/more.png -------------------------------------------------------------------------------- /src/Apps.Web/Content/icons/no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Content/icons/no.png -------------------------------------------------------------------------------- /src/Apps.Web/Content/icons/ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Content/icons/ok.png -------------------------------------------------------------------------------- /src/Apps.Web/Content/icons/pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Content/icons/pencil.png -------------------------------------------------------------------------------- /src/Apps.Web/Content/icons/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Content/icons/print.png -------------------------------------------------------------------------------- /src/Apps.Web/Content/icons/redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Content/icons/redo.png -------------------------------------------------------------------------------- /src/Apps.Web/Content/icons/reload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Content/icons/reload.png -------------------------------------------------------------------------------- /src/Apps.Web/Content/icons/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Content/icons/search.png -------------------------------------------------------------------------------- /src/Apps.Web/Content/icons/sum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Content/icons/sum.png -------------------------------------------------------------------------------- /src/Apps.Web/Content/icons/tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Content/icons/tip.png -------------------------------------------------------------------------------- /src/Apps.Web/Content/icons/undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Content/icons/undo.png -------------------------------------------------------------------------------- /src/Apps.Web/Content/mobile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Content/mobile.css -------------------------------------------------------------------------------- /src/Apps.Web/Content/themes/base/easyui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Content/themes/base/easyui.css -------------------------------------------------------------------------------- /src/Apps.Web/Content/themes/skin-blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Content/themes/skin-blue.css -------------------------------------------------------------------------------- /src/Apps.Web/Content/themes/skin-green.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Content/themes/skin-green.css -------------------------------------------------------------------------------- /src/Apps.Web/Content/themes/skin-purple.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Content/themes/skin-purple.css -------------------------------------------------------------------------------- /src/Apps.Web/Content/themes/skin-red.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Content/themes/skin-red.css -------------------------------------------------------------------------------- /src/Apps.Web/Content/themes/skin-yellow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Content/themes/skin-yellow.css -------------------------------------------------------------------------------- /src/Apps.Web/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Controllers/HomeController.cs -------------------------------------------------------------------------------- /src/Apps.Web/Controllers/IMController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Controllers/IMController.cs -------------------------------------------------------------------------------- /src/Apps.Web/Controllers/SysLogController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Controllers/SysLogController.cs -------------------------------------------------------------------------------- /src/Apps.Web/Core/BaseController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Core/BaseController.cs -------------------------------------------------------------------------------- /src/Apps.Web/Core/CommonHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Core/CommonHelper.cs -------------------------------------------------------------------------------- /src/Apps.Web/Core/CultureAwareHttpModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Core/CultureAwareHttpModule.cs -------------------------------------------------------------------------------- /src/Apps.Web/Core/ExportExcelResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Core/ExportExcelResult.cs -------------------------------------------------------------------------------- /src/Apps.Web/Core/ExtendMvcHtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Core/ExtendMvcHtml.cs -------------------------------------------------------------------------------- /src/Apps.Web/Core/HandleError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Core/HandleError.cs -------------------------------------------------------------------------------- /src/Apps.Web/Core/LogHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Core/LogHandler.cs -------------------------------------------------------------------------------- /src/Apps.Web/Core/OnlineHttpModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Core/OnlineHttpModule.cs -------------------------------------------------------------------------------- /src/Apps.Web/Core/Signalr/StartupSignalr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Core/Signalr/StartupSignalr.cs -------------------------------------------------------------------------------- /src/Apps.Web/Core/Signalr/WebIM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Core/Signalr/WebIM.cs -------------------------------------------------------------------------------- /src/Apps.Web/Core/SupportFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Core/SupportFilter.cs -------------------------------------------------------------------------------- /src/Apps.Web/Core/Upload/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Core/Upload/Config.cs -------------------------------------------------------------------------------- /src/Apps.Web/Core/Upload/ConfigHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Core/Upload/ConfigHandler.cs -------------------------------------------------------------------------------- /src/Apps.Web/Core/Upload/CrawlerHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Core/Upload/CrawlerHandler.cs -------------------------------------------------------------------------------- /src/Apps.Web/Core/Upload/Handler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Core/Upload/Handler.cs -------------------------------------------------------------------------------- /src/Apps.Web/Core/Upload/ListFileHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Core/Upload/ListFileHandler.cs -------------------------------------------------------------------------------- /src/Apps.Web/Core/Upload/PathFormater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Core/Upload/PathFormater.cs -------------------------------------------------------------------------------- /src/Apps.Web/Core/Upload/UploadHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Core/Upload/UploadHandler.cs -------------------------------------------------------------------------------- /src/Apps.Web/Core/WebConfigPara.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Core/WebConfigPara.cs -------------------------------------------------------------------------------- /src/Apps.Web/Core/controller.ashx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Core/controller.ashx -------------------------------------------------------------------------------- /src/Apps.Web/Core/site.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Core/site.config -------------------------------------------------------------------------------- /src/Apps.Web/Core/upload_ajax.ashx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Core/upload_ajax.ashx -------------------------------------------------------------------------------- /src/Apps.Web/Core/upload_ajax.ashx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Core/upload_ajax.ashx.cs -------------------------------------------------------------------------------- /src/Apps.Web/Core/verify_code.ashx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Core/verify_code.ashx -------------------------------------------------------------------------------- /src/Apps.Web/Core/verify_code.ashx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Core/verify_code.ashx.cs -------------------------------------------------------------------------------- /src/Apps.Web/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Global.asax -------------------------------------------------------------------------------- /src/Apps.Web/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Global.asax.cs -------------------------------------------------------------------------------- /src/Apps.Web/Images/Photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Images/Photo.jpg -------------------------------------------------------------------------------- /src/Apps.Web/LogFile/201612/20161203.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/LogFile/201612/20161203.txt -------------------------------------------------------------------------------- /src/Apps.Web/LogFile/201706/20170627.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/LogFile/201706/20170627.txt -------------------------------------------------------------------------------- /src/Apps.Web/LogFile/201801/20180116.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/LogFile/201801/20180116.txt -------------------------------------------------------------------------------- /src/Apps.Web/LogFile/201803/20180302.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/LogFile/201803/20180302.txt -------------------------------------------------------------------------------- /src/Apps.Web/Project_Readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Project_Readme.html -------------------------------------------------------------------------------- /src/Apps.Web/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Apps.Web/ReportFiles/Temp/Report.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/ReportFiles/Temp/Report.frx -------------------------------------------------------------------------------- /src/Apps.Web/ReportFiles/bk/1122/投料单打印模板.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/ReportFiles/bk/1122/投料单打印模板.frx -------------------------------------------------------------------------------- /src/Apps.Web/ReportFiles/bk/1122/检验单打印模板.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/ReportFiles/bk/1122/检验单打印模板.frx -------------------------------------------------------------------------------- /src/Apps.Web/ReportFiles/bk/1122/退货单打印模板.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/ReportFiles/bk/1122/退货单打印模板.frx -------------------------------------------------------------------------------- /src/Apps.Web/ReportFiles/bk/库存退货单打印模板.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/ReportFiles/bk/库存退货单打印模板.frx -------------------------------------------------------------------------------- /src/Apps.Web/ReportFiles/bk/投料单打印模板.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/ReportFiles/bk/投料单打印模板.frx -------------------------------------------------------------------------------- /src/Apps.Web/ReportFiles/bk/检验单打印模板.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/ReportFiles/bk/检验单打印模板.frx -------------------------------------------------------------------------------- /src/Apps.Web/ReportFiles/bk/自制件入库单打印模板.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/ReportFiles/bk/自制件入库单打印模板.frx -------------------------------------------------------------------------------- /src/Apps.Web/ReportFiles/bk/退货单打印模板.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/ReportFiles/bk/退货单打印模板.frx -------------------------------------------------------------------------------- /src/Apps.Web/ReportFiles/bk/退货送检单打印模板.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/ReportFiles/bk/退货送检单打印模板.frx -------------------------------------------------------------------------------- /src/Apps.Web/ReportFiles/bk/销售订单打印模板.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/ReportFiles/bk/销售订单打印模板.frx -------------------------------------------------------------------------------- /src/Apps.Web/ReportFiles/库存退货单打印模板.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/ReportFiles/库存退货单打印模板.frx -------------------------------------------------------------------------------- /src/Apps.Web/ReportFiles/投料单打印模板.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/ReportFiles/投料单打印模板.frx -------------------------------------------------------------------------------- /src/Apps.Web/ReportFiles/检验单打印模板.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/ReportFiles/检验单打印模板.frx -------------------------------------------------------------------------------- /src/Apps.Web/ReportFiles/自制件入库单打印模板.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/ReportFiles/自制件入库单打印模板.frx -------------------------------------------------------------------------------- /src/Apps.Web/ReportFiles/退货单打印模板.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/ReportFiles/退货单打印模板.frx -------------------------------------------------------------------------------- /src/Apps.Web/ReportFiles/退货送检单打印模板.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/ReportFiles/退货送检单打印模板.frx -------------------------------------------------------------------------------- /src/Apps.Web/ReportFiles/销售订单打印模板.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/ReportFiles/销售订单打印模板.frx -------------------------------------------------------------------------------- /src/Apps.Web/Scripts/Account.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Scripts/Account.js -------------------------------------------------------------------------------- /src/Apps.Web/Scripts/ChinesePY.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Scripts/ChinesePY.js -------------------------------------------------------------------------------- /src/Apps.Web/Scripts/ExeclHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Scripts/ExeclHelper.js -------------------------------------------------------------------------------- /src/Apps.Web/Scripts/WeChat/senparc.menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Scripts/WeChat/senparc.menu.js -------------------------------------------------------------------------------- /src/Apps.Web/Scripts/WebIM.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Scripts/WebIM.js -------------------------------------------------------------------------------- /src/Apps.Web/Scripts/WebIM2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Scripts/WebIM2.js -------------------------------------------------------------------------------- /src/Apps.Web/Scripts/WebIM3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Scripts/WebIM3.js -------------------------------------------------------------------------------- /src/Apps.Web/Scripts/_references.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Scripts/_references.js -------------------------------------------------------------------------------- /src/Apps.Web/Scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Scripts/bootstrap.js -------------------------------------------------------------------------------- /src/Apps.Web/Scripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Scripts/bootstrap.min.js -------------------------------------------------------------------------------- /src/Apps.Web/Scripts/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Scripts/common.js -------------------------------------------------------------------------------- /src/Apps.Web/Scripts/datagrid-export.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Scripts/datagrid-export.js -------------------------------------------------------------------------------- /src/Apps.Web/Scripts/def_tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Scripts/def_tools.js -------------------------------------------------------------------------------- /src/Apps.Web/Scripts/easyloader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Scripts/easyloader.js -------------------------------------------------------------------------------- /src/Apps.Web/Scripts/easyui.combobox.py.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Scripts/easyui.combobox.py.js -------------------------------------------------------------------------------- /src/Apps.Web/Scripts/easyui/filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Scripts/easyui/filter.png -------------------------------------------------------------------------------- /src/Apps.Web/Scripts/echarts.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Scripts/echarts.min.js -------------------------------------------------------------------------------- /src/Apps.Web/Scripts/echarts.theme.shine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Scripts/echarts.theme.shine.js -------------------------------------------------------------------------------- /src/Apps.Web/Scripts/editor/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Scripts/editor/config.json -------------------------------------------------------------------------------- /src/Apps.Web/Scripts/editor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Scripts/editor/index.html -------------------------------------------------------------------------------- /src/Apps.Web/Scripts/editor/lang/en/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Scripts/editor/lang/en/en.js -------------------------------------------------------------------------------- /src/Apps.Web/Scripts/editor/themes/iframe.css: -------------------------------------------------------------------------------- 1 | /*可以在这里添加你自己的css*/ 2 | -------------------------------------------------------------------------------- /src/Apps.Web/Scripts/editor/ueditor.all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Scripts/editor/ueditor.all.js -------------------------------------------------------------------------------- /src/Apps.Web/Scripts/editor/ueditor.parse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Scripts/editor/ueditor.parse.js -------------------------------------------------------------------------------- /src/Apps.Web/Scripts/fancybox/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Scripts/fancybox/blank.gif -------------------------------------------------------------------------------- /src/Apps.Web/Scripts/fancybox/fancybox-x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Scripts/fancybox/fancybox-x.png -------------------------------------------------------------------------------- /src/Apps.Web/Scripts/fancybox/fancybox-y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Scripts/fancybox/fancybox-y.png -------------------------------------------------------------------------------- /src/Apps.Web/Scripts/fancybox/fancybox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Scripts/fancybox/fancybox.png -------------------------------------------------------------------------------- /src/Apps.Web/Scripts/fullcalendar/zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Scripts/fullcalendar/zh-cn.js -------------------------------------------------------------------------------- /src/Apps.Web/Scripts/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Scripts/home.js -------------------------------------------------------------------------------- /src/Apps.Web/Scripts/jquery.form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Scripts/jquery.form.js -------------------------------------------------------------------------------- /src/Apps.Web/Scripts/jquery.jqprint-0.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Scripts/jquery.jqprint-0.3.js -------------------------------------------------------------------------------- /src/Apps.Web/Scripts/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Scripts/jquery.min.js -------------------------------------------------------------------------------- /src/Apps.Web/Scripts/jquery.signalR-2.2.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Scripts/jquery.signalR-2.2.0.js -------------------------------------------------------------------------------- /src/Apps.Web/Scripts/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Scripts/jquery.validate.js -------------------------------------------------------------------------------- /src/Apps.Web/Scripts/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Scripts/jquery.validate.min.js -------------------------------------------------------------------------------- /src/Apps.Web/Scripts/modernizr-2.6.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Scripts/modernizr-2.6.2.js -------------------------------------------------------------------------------- /src/Apps.Web/Scripts/respond.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Scripts/respond.js -------------------------------------------------------------------------------- /src/Apps.Web/Scripts/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Scripts/respond.min.js -------------------------------------------------------------------------------- /src/Apps.Web/Scripts/swfupload/swfupload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Scripts/swfupload/swfupload.js -------------------------------------------------------------------------------- /src/Apps.Web/Scripts/swfupload/swfupload.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Scripts/swfupload/swfupload.swf -------------------------------------------------------------------------------- /src/Apps.Web/Scripts/uploadify/uploadify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Scripts/uploadify/uploadify.css -------------------------------------------------------------------------------- /src/Apps.Web/Scripts/uploadify/uploadify.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Scripts/uploadify/uploadify.swf -------------------------------------------------------------------------------- /src/Apps.Web/Views/Account/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Views/Account/Index.cshtml -------------------------------------------------------------------------------- /src/Apps.Web/Views/Account/ValidateCode.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = null; 3 | } 4 | -------------------------------------------------------------------------------- /src/Apps.Web/Views/Home/Desktop.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Views/Home/Desktop.cshtml -------------------------------------------------------------------------------- /src/Apps.Web/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /src/Apps.Web/Views/Home/Info.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Views/Home/Info.cshtml -------------------------------------------------------------------------------- /src/Apps.Web/Views/Home/Main.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Views/Home/Main.cshtml -------------------------------------------------------------------------------- /src/Apps.Web/Views/Home/TopInfo.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Views/Home/TopInfo.cshtml -------------------------------------------------------------------------------- /src/Apps.Web/Views/IM/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Views/IM/Index.cshtml -------------------------------------------------------------------------------- /src/Apps.Web/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /src/Apps.Web/Views/Shared/_IconList.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Views/Shared/_IconList.cshtml -------------------------------------------------------------------------------- /src/Apps.Web/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /src/Apps.Web/Views/SysAreas/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Views/SysAreas/Create.cshtml -------------------------------------------------------------------------------- /src/Apps.Web/Views/SysAreas/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Views/SysAreas/Edit.cshtml -------------------------------------------------------------------------------- /src/Apps.Web/Views/SysAreas/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Views/SysAreas/Index.cshtml -------------------------------------------------------------------------------- /src/Apps.Web/Views/SysCalendarPlan.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Views/SysCalendarPlan.7z -------------------------------------------------------------------------------- /src/Apps.Web/Views/SysConfig/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Views/SysConfig/Index.cshtml -------------------------------------------------------------------------------- /src/Apps.Web/Views/SysException/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Views/SysException/Error.cshtml -------------------------------------------------------------------------------- /src/Apps.Web/Views/SysException/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Views/SysException/Index.cshtml -------------------------------------------------------------------------------- /src/Apps.Web/Views/SysHelper/Query.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Views/SysHelper/Query.cshtml -------------------------------------------------------------------------------- /src/Apps.Web/Views/SysLog/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Views/SysLog/Details.cshtml -------------------------------------------------------------------------------- /src/Apps.Web/Views/SysLog/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Views/SysLog/Index.cshtml -------------------------------------------------------------------------------- /src/Apps.Web/Views/SysLog/MyLog.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Views/SysLog/MyLog.cshtml -------------------------------------------------------------------------------- /src/Apps.Web/Views/SysModule/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Views/SysModule/Create.cshtml -------------------------------------------------------------------------------- /src/Apps.Web/Views/SysModule/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Views/SysModule/Edit.cshtml -------------------------------------------------------------------------------- /src/Apps.Web/Views/SysModule/IconList.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Views/SysModule/IconList.cshtml -------------------------------------------------------------------------------- /src/Apps.Web/Views/SysModule/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Views/SysModule/Index.cshtml -------------------------------------------------------------------------------- /src/Apps.Web/Views/SysParam/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Views/SysParam/Create.cshtml -------------------------------------------------------------------------------- /src/Apps.Web/Views/SysParam/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Views/SysParam/Edit.cshtml -------------------------------------------------------------------------------- /src/Apps.Web/Views/SysParam/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Views/SysParam/Index.cshtml -------------------------------------------------------------------------------- /src/Apps.Web/Views/SysPosition/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Views/SysPosition/Create.cshtml -------------------------------------------------------------------------------- /src/Apps.Web/Views/SysPosition/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Views/SysPosition/Edit.cshtml -------------------------------------------------------------------------------- /src/Apps.Web/Views/SysPosition/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Views/SysPosition/Index.cshtml -------------------------------------------------------------------------------- /src/Apps.Web/Views/SysRight/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Views/SysRight/Index.cshtml -------------------------------------------------------------------------------- /src/Apps.Web/Views/SysRole/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Views/SysRole/Create.cshtml -------------------------------------------------------------------------------- /src/Apps.Web/Views/SysRole/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Views/SysRole/Details.cshtml -------------------------------------------------------------------------------- /src/Apps.Web/Views/SysRole/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Views/SysRole/Edit.cshtml -------------------------------------------------------------------------------- /src/Apps.Web/Views/SysRole/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Views/SysRole/Index.cshtml -------------------------------------------------------------------------------- /src/Apps.Web/Views/SysSample/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Views/SysSample/Create.cshtml -------------------------------------------------------------------------------- /src/Apps.Web/Views/SysSample/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Views/SysSample/Details.cshtml -------------------------------------------------------------------------------- /src/Apps.Web/Views/SysSample/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Views/SysSample/Edit.cshtml -------------------------------------------------------------------------------- /src/Apps.Web/Views/SysSample/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Views/SysSample/Index.cshtml -------------------------------------------------------------------------------- /src/Apps.Web/Views/SysSequence/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Views/SysSequence/Create.cshtml -------------------------------------------------------------------------------- /src/Apps.Web/Views/SysSequence/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Views/SysSequence/Edit.cshtml -------------------------------------------------------------------------------- /src/Apps.Web/Views/SysSequence/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Views/SysSequence/Index.cshtml -------------------------------------------------------------------------------- /src/Apps.Web/Views/SysStruct/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Views/SysStruct/Create.cshtml -------------------------------------------------------------------------------- /src/Apps.Web/Views/SysStruct/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Views/SysStruct/Edit.cshtml -------------------------------------------------------------------------------- /src/Apps.Web/Views/SysStruct/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Views/SysStruct/Index.cshtml -------------------------------------------------------------------------------- /src/Apps.Web/Views/SysUser/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Views/SysUser/Create.cshtml -------------------------------------------------------------------------------- /src/Apps.Web/Views/SysUser/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Views/SysUser/Details.cshtml -------------------------------------------------------------------------------- /src/Apps.Web/Views/SysUser/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Views/SysUser/Edit.cshtml -------------------------------------------------------------------------------- /src/Apps.Web/Views/SysUser/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Views/SysUser/Index.cshtml -------------------------------------------------------------------------------- /src/Apps.Web/Views/SysUser/LookUp.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Views/SysUser/LookUp.cshtml -------------------------------------------------------------------------------- /src/Apps.Web/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Views/Web.config -------------------------------------------------------------------------------- /src/Apps.Web/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /src/Apps.Web/WebReportDesigner/images/i.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/WebReportDesigner/images/i.gif -------------------------------------------------------------------------------- /src/Apps.Web/WebReportDesigner/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/WebReportDesigner/index.html -------------------------------------------------------------------------------- /src/Apps.Web/WebReportDesigner/locales/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/WebReportDesigner/locales/en.js -------------------------------------------------------------------------------- /src/Apps.Web/WebReportDesigner/locales/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/WebReportDesigner/locales/ru.js -------------------------------------------------------------------------------- /src/Apps.Web/WebReportDesigner/locales/zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/WebReportDesigner/locales/zh.js -------------------------------------------------------------------------------- /src/Apps.Web/WebReportDesigner/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/WebReportDesigner/readme.txt -------------------------------------------------------------------------------- /src/Apps.Web/exceptionLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/exceptionLog.txt -------------------------------------------------------------------------------- /src/Apps.Web/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/favicon.ico -------------------------------------------------------------------------------- /src/Apps.Web/job_scheduling_data_2_0.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/job_scheduling_data_2_0.xsd -------------------------------------------------------------------------------- /src/Apps.Web/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/packages.config -------------------------------------------------------------------------------- /src/Apps.Web/库存退货单打印模板.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/库存退货单打印模板.frx -------------------------------------------------------------------------------- /src/Apps.Web/自制件入库单打印模板.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/自制件入库单打印模板.frx -------------------------------------------------------------------------------- /src/Apps.Web/退货送检单打印模板.frx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.Web/退货送检单打印模板.frx -------------------------------------------------------------------------------- /src/Apps.WebApi/App_Start/BundleConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.WebApi/App_Start/BundleConfig.cs -------------------------------------------------------------------------------- /src/Apps.WebApi/App_Start/FilterConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.WebApi/App_Start/FilterConfig.cs -------------------------------------------------------------------------------- /src/Apps.WebApi/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.WebApi/App_Start/RouteConfig.cs -------------------------------------------------------------------------------- /src/Apps.WebApi/App_Start/WebApiConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.WebApi/App_Start/WebApiConfig.cs -------------------------------------------------------------------------------- /src/Apps.WebApi/Apps.WebApi.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.WebApi/Apps.WebApi.csproj -------------------------------------------------------------------------------- /src/Apps.WebApi/Areas/HelpPage/HelpPage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.WebApi/Areas/HelpPage/HelpPage.css -------------------------------------------------------------------------------- /src/Apps.WebApi/Content/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.WebApi/Content/Site.css -------------------------------------------------------------------------------- /src/Apps.WebApi/Content/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.WebApi/Content/bootstrap.css -------------------------------------------------------------------------------- /src/Apps.WebApi/Content/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.WebApi/Content/bootstrap.min.css -------------------------------------------------------------------------------- /src/Apps.WebApi/Core/BaseApiController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.WebApi/Core/BaseApiController.cs -------------------------------------------------------------------------------- /src/Apps.WebApi/Core/SupportFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.WebApi/Core/SupportFilter.cs -------------------------------------------------------------------------------- /src/Apps.WebApi/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.WebApi/Global.asax -------------------------------------------------------------------------------- /src/Apps.WebApi/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.WebApi/Global.asax.cs -------------------------------------------------------------------------------- /src/Apps.WebApi/Project_Readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.WebApi/Project_Readme.html -------------------------------------------------------------------------------- /src/Apps.WebApi/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.WebApi/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Apps.WebApi/Scripts/_references.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.WebApi/Scripts/_references.js -------------------------------------------------------------------------------- /src/Apps.WebApi/Scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.WebApi/Scripts/bootstrap.js -------------------------------------------------------------------------------- /src/Apps.WebApi/Scripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.WebApi/Scripts/bootstrap.min.js -------------------------------------------------------------------------------- /src/Apps.WebApi/Scripts/jquery-1.10.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.WebApi/Scripts/jquery-1.10.2.js -------------------------------------------------------------------------------- /src/Apps.WebApi/Scripts/modernizr-2.6.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.WebApi/Scripts/modernizr-2.6.2.js -------------------------------------------------------------------------------- /src/Apps.WebApi/Scripts/respond.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.WebApi/Scripts/respond.js -------------------------------------------------------------------------------- /src/Apps.WebApi/Scripts/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.WebApi/Scripts/respond.min.js -------------------------------------------------------------------------------- /src/Apps.WebApi/Views/Error/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.WebApi/Views/Error/Index.cshtml -------------------------------------------------------------------------------- /src/Apps.WebApi/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.WebApi/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /src/Apps.WebApi/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.WebApi/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /src/Apps.WebApi/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.WebApi/Views/Web.config -------------------------------------------------------------------------------- /src/Apps.WebApi/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.WebApi/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /src/Apps.WebApi/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.WebApi/Web.Debug.config -------------------------------------------------------------------------------- /src/Apps.WebApi/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.WebApi/Web.Release.config -------------------------------------------------------------------------------- /src/Apps.WebApi/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.WebApi/Web.config -------------------------------------------------------------------------------- /src/Apps.WebApi/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.WebApi/favicon.ico -------------------------------------------------------------------------------- /src/Apps.WebApi/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Apps.WebApi/packages.config -------------------------------------------------------------------------------- /src/Lib/FastReport.Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Lib/FastReport.Web.dll -------------------------------------------------------------------------------- /src/Lib/FastReport.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NC-ThreeGo/XDWMS-Ymnets/HEAD/src/Lib/FastReport.dll --------------------------------------------------------------------------------