在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → MES系统装配加工

MES系统装配加工

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:9.81M
  • 下载次数:79
  • 浏览次数:453
  • 发布时间:2021-01-27
  • 实例类别:一般编程问题
  • 发 布 人:好学IT男
  • 文件格式:.rar
  • 所需积分:2
 

实例介绍

【实例简介】
MES装配加工 环境:VS2010(C# .NET4.0,多层结构)、sqlserver2008 r2 ;Winform;使用到RFID读写器
【实例截图】
【核心代码】
39b47f50-c780-40e6-960b-bb7480a6a7b7
└── MES加工装配系统
├── DataBase
│   ├── readme.txt
│   ├── SimpleMES.bak
│   ├── SimpleMES_log.ldf
│   └── SimpleMES.mdf
├── Debug
│   ├── Basic.dll
│   ├── ClownFish.dll
│   ├── ClownFish.xml
│   ├── config
│   │   └── default.ini
│   ├── DevComponents.DotNetBar2.dll
│   ├── DevComponents.Instrumentation.dll
│   ├── ErrLog
│   │   └── ErrLog.txt
│   ├── images
│   │   ├── ball_green.png
│   │   ├── ball_red.png
│   │   ├── ball_yellow.png
│   │   ├── bf.png
│   │   ├── button_cancel.png
│   │   ├── button_ok.png
│   │   ├── conf.png
│   │   ├── error2.png
│   │   ├── gw
│   │   │   ├── gw000.png
│   │   │   ├── gw001.png
│   │   │   ├── gw002.png
│   │   │   ├── gw003.png
│   │   │   ├── gw004.png
│   │   │   ├── gw005.png
│   │   │   └── gw006.png
│   │   ├── katuberling.png
│   │   ├── locked.png
│   │   ├── logo.jpg
│   │   ├── main.jpg
│   │   └── opened.png
│   ├── JTS.BLL.dll
│   ├── JTS.BLL.pdb
│   ├── JTS.dll
│   ├── JTS.Entity.dll
│   ├── JTS.Entity.pdb
│   ├── JTS.IDAL.dll
│   ├── JTS.IDAL.pdb
│   ├── JTS.pdb
│   ├── JTS.SQLServerDAL.dll
│   ├── JTS.SQLServerDAL.pdb
│   ├── MES.Client.exe
│   ├── MES.Client.exe.config
│   ├── MES.Client.pdb
│   ├── MES.Client.vshost.exe
│   ├── MES.Client.vshost.exe.config
│   ├── MES.Client.vshost.exe.manifest
│   ├── MES.Server.exe
│   ├── MES.Server.exe.config
│   ├── MES.Server.pdb
│   ├── MES.Server.vshost.exe
│   ├── MES.Server.vshost.exe.config
│   ├── MES.Server.vshost.exe.manifest
│   ├── readme.txt
│   ├── RFID.Library.dll
│   ├── RFID.Library.pdb
│   ├── RR9000CSharp.dll
│   ├── RRU2861CSharp.dll
│   ├── Wav
│   │   ├── Cancel.wav
│   │   ├── desktop.ini
│   │   ├── Error.wav
│   │   ├── PaiZhao.wav
│   │   ├── Scan.wav
│   │   ├── Stop2.wav
│   │   ├── Stop.wav
│   │   └── Success.wav
│   ├── WHC.OrderWater.Commons.dll
│   └── WHC.OrderWater.Commons.xml
├── Doc
│   ├── readme.txt
│   └── 《SimpleMES加工装配模拟系统》设计说明书.docx
├── JTS
│   ├── Config
│   │   ├── BaseConfigFileManager.cs
│   │   ├── BaseConfigInfo.cs
│   │   ├── BaseConfigs.cs
│   │   ├── ClassDiagram1.cd
│   │   ├── DefaultConfigFileManager.cs
│   │   ├── IConfigInfo.cs
│   │   ├── MemCachedConfigFileManager.cs
│   │   ├── MemCachedConfigInfo.cs
│   │   ├── MemCachedConfigs.cs
│   │   ├── RedisConfigFileManager.cs
│   │   ├── RedisConfigInfo.cs
│   │   ├── RedisConfigs.cs
│   │   └── SerializationHelper.cs
│   ├── Core
│   │   ├── BaseEntity.cs
│   │   ├── CommandResult.cs
│   │   ├── IEntity.cs
│   │   ├── IPagingInfo.cs
│   │   ├── IResult.cs
│   │   ├── LoginUser.cs
│   │   ├── MyFormsPrincipal.cs
│   │   ├── PagingInfoEx.cs
│   │   └── SaveResult.cs
│   ├── Data
│   │   ├── DataProvider.cs
│   │   ├── IDataResult.cs
│   │   └── SqlHelper.cs
│   ├── JTS.csproj
│   ├── JTS.csproj.user
│   ├── obj
│   │   └── Debug
│   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   ├── JTS.csproj.FileListAbsolute.txt
│   │   ├── JTS.csprojResolveAssemblyReference.cache
│   │   ├── JTS.dll
│   │   └── JTS.pdb
│   ├── Properties
│   │   └── AssemblyInfo.cs
│   ├── readme.txt
│   └── Util
│   ├── ConvertorEx.cs
│   ├── RequestHelper.cs
│   ├── SerializationHelper.cs
│   ├── TypeConverter.cs
│   ├── UtilTools.cs
│   └── Validator.cs
├── JTS.BLL
│   ├── Base
│   │   ├── AbstractBaseBLL.cs
│   │   ├── BaseBLL.cs
│   │   ├── BLLFactory.cs
│   │   └── Reflect.cs
│   ├── JTS.BLL.csproj
│   ├── JTS.BLL.csproj.user
│   ├── obj
│   │   └── Debug
│   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   ├── JTS.BLL.csproj.FileListAbsolute.txt
│   │   ├── JTS.BLL.csprojResolveAssemblyReference.cache
│   │   ├── JTS.BLL.dll
│   │   └── JTS.BLL.pdb
│   ├── Properties
│   │   └── AssemblyInfo.cs
│   ├── readme.txt
│   └── SimpleMES
│   ├── BLL_bd_Band.cs
│   ├── BLL_mes_cp.cs
│   ├── BLL_mes_gw.cs
│   ├── BLL_mes_gx.cs
│   ├── BLL_mes_jg_plan.cs
│   ├── BLL_mes_jg_qc.cs
│   ├── BLL_mes_jg_validate.cs
│   ├── BLL_mes_mat.cs
│   ├── BLL_mes_routing.cs
│   ├── BLL_mes_zp_plan.cs
│   ├── BLL_mes_zp_qc.cs
│   └── BLL_mes_zp_scan.cs
├── JTS.Entity
│   ├── CommonManagement
│   │   └── CommonTree.cs
│   ├── JTS.Entity.csproj
│   ├── JTS.Entity.csproj.user
│   ├── obj
│   │   └── Debug
│   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   ├── JTS.Entity.csproj.FileListAbsolute.txt
│   │   ├── JTS.Entity.csprojResolveAssemblyReference.cache
│   │   ├── JTS.Entity.dll
│   │   └── JTS.Entity.pdb
│   ├── Properties
│   │   └── AssemblyInfo.cs
│   ├── readme.txt
│   ├── SimpleMES
│   │   ├── jts_SPDJD.cs
│   │   ├── jts_SPDJD_Kehu.cs
│   │   ├── jts_SPDJDMX.cs
│   │   ├── mes_cp.cs
│   │   ├── mes_gw.cs
│   │   ├── mes_gx.cs
│   │   ├── mes_jg_plan.cs
│   │   ├── mes_jg_qc.cs
│   │   ├── mes_jg_validate.cs
│   │   ├── mes_mat.cs
│   │   ├── mes_routing.cs
│   │   ├── mes_zp_plan.cs
│   │   └── mes_zp_qc.cs
│   └── SysManagement
│   ├── SysDJBH.cs
│   ├── SysField.cs
│   ├── SysFunction.cs
│   ├── SysKey.cs
│   ├── SysLog.cs
│   ├── SysLookup.cs
│   ├── SysMenu.cs
│   ├── SysRole.cs
│   ├── SysRoleGroup.cs
│   ├── SysRoleMenuFunctions.cs
│   └── SysUser.cs
├── JTS.IDAL
│   ├── Base
│   │   └── IBaseDAL.cs
│   ├── JTS.IDAL.csproj
│   ├── JTS.IDAL.csproj.user
│   ├── obj
│   │   └── Debug
│   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   ├── JTS.IDAL.csproj.FileListAbsolute.txt
│   │   ├── JTS.IDAL.csprojResolveAssemblyReference.cache
│   │   ├── JTS.IDAL.dll
│   │   └── JTS.IDAL.pdb
│   ├── Properties
│   │   └── AssemblyInfo.cs
│   ├── readme.txt
│   └── SimpleMES
│   ├── IDAL_mes_cp.cs
│   ├── IDAL_mes_gx.cs
│   ├── IDAL_mes_jg_plan.cs
│   ├── IDAL_mes_mat.cs
│   └── IDAL_mes_routing.cs
├── JTS.SQLServerDAL
│   ├── Base
│   │   ├── AbstractBaseDAL.cs
│   │   ├── BaseDAL.cs
│   │   ├── CommonPagingParameters.cs
│   │   ├── FishDataUtil.cs
│   │   └── SqlHelper.cs
│   ├── JTS.SQLServerDAL.csproj
│   ├── JTS.SQLServerDAL.csproj.user
│   ├── obj
│   │   └── Debug
│   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   ├── JTS.SQLServerDAL.csproj.FileListAbsolute.txt
│   │   ├── JTS.SQLServerDAL.csprojResolveAssemblyReference.cache
│   │   ├── JTS.SQLServerDAL.dll
│   │   └── JTS.SQLServerDAL.pdb
│   ├── Properties
│   │   └── AssemblyInfo.cs
│   ├── readme.txt
│   └── SimpleMES
│   ├── DAL_mes_cp.cs
│   ├── DAL_mes_gw.cs
│   ├── DAL_mes_gx.cs
│   ├── DAL_mes_jg_plan.cs
│   ├── DAL_mes_jg_qc.cs
│   ├── DAL_mes_jg_validate.cs
│   ├── DAL_mes_mat.cs
│   ├── DAL_mes_routing.cs
│   ├── DAL_mes_zp_plan.cs
│   ├── DAL_mes_zp_qc.cs
│   └── DAL_mes_zp_scan.cs
├── JTS.Web
│   └── readme.txt
├── Lib
│   ├── ClownFish.dll
│   ├── ClownFish.xml
│   ├── ICSharpCode.SharpZipLib.dll
│   ├── Newtonsoft.Json.Net35.dll
│   ├── readme.txt
│   ├── RFID
│   │   ├── Basic.dll
│   │   ├── RR9000CSharp.dll
│   │   ├── RRU2861CSharp.dll
│   │   ├── RRU2861.dll
│   │   └── RRU9806.dll
│   ├── WHC.OrderWater.Commons.dll
│   └── WHC.OrderWater.Commons.XML
├── MES.Client
│   ├── app.config
│   ├── app.ico
│   ├── bin
│   │   └── Debug
│   │   ├── MES.Client.exe
│   │   └── MES.Client.pdb
│   ├── Class1.cs
│   ├── frmMachiningBY.cs
│   ├── frmMachiningBY.Designer.cs
│   ├── frmMachiningBY.resx
│   ├── frmMachining.cs
│   ├── frmMachining.Designer.cs
│   ├── frmMachining.resx
│   ├── frmQC.cs
│   ├── frmQC.Designer.cs
│   ├── frmQC.resx
│   ├── frmSelectJGPlan.cs
│   ├── frmSelectJGPlan.Designer.cs
│   ├── frmSelectJGPlan.resx
│   ├── frmStart.cs
│   ├── frmStart.Designer.cs
│   ├── frmStart.resx
│   ├── frmSystemSetting.cs
│   ├── frmSystemSetting.Designer.cs
│   ├── frmSystemSetting.resx
│   ├── frmZPBY.cs
│   ├── frmZPBY.Designer.cs
│   ├── frmZPBY.resx
│   ├── frmZP.cs
│   ├── frmZP.Designer.cs
│   ├── frmZP.resx
│   ├── MES.Client.csproj
│   ├── MES.Client.csproj.user
│   ├── NetPortOP.cs
│   ├── obj
│   │   └── x86
│   │   └── Debug
│   │   ├── DesignTimeResolveAssemblyReferences.cache
│   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   ├── MES.Client.csproj.FileListAbsolute.txt
│   │   ├── MES.Client.csproj.GenerateResource.Cache
│   │   ├── MES.Client.csprojResolveAssemblyReference.cache
│   │   ├── MES.Client.exe
│   │   ├── MES.Client.frmMachiningBY.resources
│   │   ├── MES.Client.frmMachining.resources
│   │   ├── MES.Client.frmQC.resources
│   │   ├── MES.Client.frmSelectJGPlan.resources
│   │   ├── MES.Client.frmStart.resources
│   │   ├── MES.Client.frmSystemSetting.resources
│   │   ├── MES.Client.frmZPBY.resources
│   │   ├── MES.Client.frmZP.resources
│   │   ├── MES.Client.pdb
│   │   ├── MES.Client.Properties.Resources.resources
│   │   └── TempPE
│   │   └── Properties.Resources.Designer.cs.dll
│   ├── ppClass.cs
│   ├── ppSound.cs
│   ├── Program.cs
│   ├── Properties
│   │   ├── AssemblyInfo.cs
│   │   ├── Resources.Designer.cs
│   │   ├── Resources.resx
│   │   ├── Settings.Designer.cs
│   │   └── Settings.settings
│   └── readme.txt
├── MES.Server
│   ├── app.config
│   ├── app_server.ico
│   ├── Form1.cs
│   ├── Form1.Designer.cs
│   ├── Form1.resx
│   ├── frmDataInit.cs
│   ├── frmDataInit.Designer.cs
│   ├── frmDataInit.resx
│   ├── frmGW.cs
│   ├── frmGW.Designer.cs
│   ├── frmGW.resx
│   ├── frmGX.cs
│   ├── frmGX.Designer.cs
│   ├── frmGX.resx
│   ├── frmGY.cs
│   ├── frmGY.Designer.cs
│   ├── frmGY.resx
│   ├── frmJGDisplay.cs
│   ├── frmJGDisplay.Designer.cs
│   ├── frmJGDisplay.resx
│   ├── frmJGPlan.cs
│   ├── frmJGPlan.Designer.cs
│   ├── frmJGPlan.resx
│   ├── frmMain.cs
│   ├── frmMain.Designer.cs
│   ├── frmMain.resx
│   ├── frmMat.cs
│   ├── frmMat.Designer.cs
│   ├── frmMat.resx
│   ├── frmProduct.cs
│   ├── frmProduct.Designer.cs
│   ├── frmProduct.resx
│   ├── frmSelectImage.cs
│   ├── frmSelectImage.Designer.cs
│   ├── frmSelectImage.resx
│   ├── frmSystemSetting.cs
│   ├── frmSystemSetting.Designer.cs
│   ├── frmSystemSetting.resx
│   ├── frmTemplateForm.cs
│   ├── frmTemplateForm.Designer.cs
│   ├── frmTemplateForm.resx
│   ├── frmZPDisplay.cs
│   ├── frmZPDisplay.Designer.cs
│   ├── frmZPDisplay.resx
│   ├── frmZPPlan.cs
│   ├── frmZPPlan.Designer.cs
│   ├── frmZPPlan.resx
│   ├── MES.Server.csproj
│   ├── MES.Server.csproj.user
│   ├── obj
│   │   └── x86
│   │   └── Debug
│   │   ├── DesignTimeResolveAssemblyReferences.cache
│   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   ├── MES.Server.csproj.FileListAbsolute.txt
│   │   ├── MES.Server.csproj.GenerateResource.Cache
│   │   ├── MES.Server.csprojResolveAssemblyReference.cache
│   │   ├── MES.Server.exe
│   │   ├── MES.Server.Form1.resources
│   │   ├── MES.Server.frmDataInit.resources
│   │   ├── MES.Server.frmGW.resources
│   │   ├── MES.Server.frmGX.resources
│   │   ├── MES.Server.frmGY.resources
│   │   ├── MES.Server.frmJGDisplay.resources
│   │   ├── MES.Server.frmJGPlan.resources
│   │   ├── MES.Server.frmMain.resources
│   │   ├── MES.Server.frmMat.resources
│   │   ├── MES.Server.frmProduct.resources
│   │   ├── MES.Server.frmSelectImage.resources
│   │   ├── MES.Server.frmSystemSetting.resources
│   │   ├── MES.Server.frmTemplateForm.resources
│   │   ├── MES.Server.frmZPDisplay.resources
│   │   ├── MES.Server.frmZPPlan.resources
│   │   ├── MES.Server.pdb
│   │   ├── MES.Server.Properties.Resources.resources
│   │   └── TempPE
│   │   └── Properties.Resources.Designer.cs.dll
│   ├── ppClass.cs
│   ├── Program.cs
│   ├── Properties
│   │   ├── AssemblyInfo.cs
│   │   ├── Resources.Designer.cs
│   │   ├── Resources.resx
│   │   ├── Settings.Designer.cs
│   │   └── Settings.settings
│   └── readme.txt
├── MESService
│   ├── app.config
│   ├── bin
│   │   └── Debug
│   │   ├── MESService.exe
│   │   ├── MESService.exe.config
│   │   └── MESService.pdb
│   ├── DefalutService.cs
│   ├── DefalutService.Designer.cs
│   ├── kservices.ico
│   ├── Log.cs
│   ├── MESService.csproj
│   ├── obj
│   │   └── x86
│   │   └── Debug
│   │   ├── DesignTimeResolveAssemblyReferences.cache
│   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   ├── MESService.csproj.FileListAbsolute.txt
│   │   ├── MESService.csproj.GenerateResource.Cache
│   │   ├── MESService.csprojResolveAssemblyReference.cache
│   │   ├── MESService.exe
│   │   ├── MESService.pdb
│   │   └── MESService.ProjectInstaller.resources
│   ├── Program.cs
│   ├── ProjectInstaller.cs
│   ├── ProjectInstaller.Designer.cs
│   ├── ProjectInstaller.resx
│   ├── Properties
│   │   └── AssemblyInfo.cs
│   └── readme.txt
├── readme.txt
├── RFID.Library
│   ├── obj
│   │   └── Debug
│   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   ├── RFID.Library.csproj.FileListAbsolute.txt
│   │   ├── RFID.Library.csprojResolveAssemblyReference.cache
│   │   ├── RFID.Library.dll
│   │   └── RFID.Library.pdb
│   ├── Properties
│   │   └── AssemblyInfo.cs
│   ├── readme.txt
│   ├── RFID.Library.csproj
│   ├── RRU2861_DLL_Head.cs
│   ├── RRU9000_DLL_Head.cs
│   └── SoweReader.cs
├── RFID.Tools
│   ├── app.config
│   ├── bin
│   │   └── Debug
│   │   ├── Basic.dll
│   │   ├── RFID.Library.dll
│   │   ├── RFID.Library.pdb
│   │   ├── RFID.Tools.exe
│   │   ├── RFID.Tools.exe.config
│   │   ├── RFID.Tools.pdb
│   │   ├── RFID.Tools.vshost.exe
│   │   ├── RFID.Tools.vshost.exe.config
│   │   ├── RFID.Tools.vshost.exe.manifest
│   │   ├── RR9000CSharp.dll
│   │   ├── RRU2861.dll
│   │   └── RRU9806.dll
│   ├── DataAccess
│   │   └── SqlHelper.cs
│   ├── frmScanTest.cs
│   ├── frmScanTest.Designer.cs
│   ├── frmScanTest.resx
│   ├── obj
│   │   └── x86
│   │   └── Debug
│   │   ├── DesignTimeResolveAssemblyReferences.cache
│   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   ├── RFID.Tools.csproj.FileListAbsolute.txt
│   │   ├── RFID.Tools.csproj.GenerateResource.Cache
│   │   ├── RFID.Tools.csprojResolveAssemblyReference.cache
│   │   ├── RFID.Tools.exe
│   │   ├── RFID.Tools.frmScanTest.resources
│   │   ├── RFID.Tools.pdb
│   │   ├── RFID.Tools.Properties.Resources.resources
│   │   └── TempPE
│   │   └── Properties.Resources.Designer.cs.dll
│   ├── Program.cs
│   ├── Properties
│   │   ├── AssemblyInfo.cs
│   │   ├── Resources.Designer.cs
│   │   ├── Resources.resx
│   │   ├── Settings.Designer.cs
│   │   └── Settings.settings
│   ├── readme.txt
│   ├── rfid.jpg
│   └── RFID.Tools.csproj
├── SimpleMES.sln
├── SimpleMES.suo
└── 源码说明.txt

79 directories, 435 files

标签:

实例下载地址

MES系统装配加工

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

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

网友评论

发表评论

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

查看所有0条评论>>

小贴士

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

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

关于好例子网

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

;
报警