在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → 生产 排程 源码

生产 排程 源码

一般编程问题

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

实例介绍

【实例简介】
生产 排程 源码 生产 排程 源码 生产 排程 源码
【实例截图】
【核心代码】
1fa51921-230e-4b4e-93cc-d6cdcbdcfc24
├── Release One EXE.rar
└── source
└── Release
└── Algorithm
├── Algorithm
│   ├── Algorithm.cs
│   ├── AlgorithmLibruary.csproj
│   ├── bin
│   │   ├── Debug
│   │   │   ├── Algorithm.dll
│   │   │   ├── Algorithm.pdb
│   │   │   ├── Algorithm.vshost.exe
│   │   │   ├── Algorithm.XML
│   │   │   ├── HeapSort.dll
│   │   │   ├── HeapSort.pdb
│   │   │   └── HeapSort.xml
│   │   └── Release
│   │   ├── Algorithm.dll
│   │   ├── Algorithm.pdb
│   │   ├── HeapSort.dll
│   │   └── HeapSort.pdb
│   ├── Exception
│   │   └── JobUnarrangableException.cs
│   ├── Job.cs
│   ├── obj
│   │   ├── Algorithm.csproj.FileList.txt
│   │   ├── AlgorithmLibruary.csproj.FileList.txt
│   │   ├── Debug
│   │   │   ├── Algorithm.dll
│   │   │   ├── Algorithm.pdb
│   │   │   ├── Refactor
│   │   │   │   ├── Algorithm.dll
│   │   │   │   └── Algorithm.exe
│   │   │   └── ResolveAssemblyReference.cache
│   │   └── Release
│   │   ├── Algorithm.dll
│   │   ├── Algorithm.pdb
│   │   └── ResolveAssemblyReference.cache
│   └── Properties
│   └── AssemblyInfo.cs
├── ClassLibrary1
│   ├── AlgorithmLibruary
│   │   ├── AlgorithmTest.cs
│   │   └── AlgorithmTest.cs~RF2ec4e48.TMP
│   ├── bin
│   │   ├── Debug
│   │   │   ├── Algorithm.dll
│   │   │   ├── Algorithm.pdb
│   │   │   ├── Algorithm.xml
│   │   │   ├── ControlLibruary.dll
│   │   │   ├── ControlLibruary.pdb
│   │   │   ├── ControlLibruary.xml
│   │   │   ├── GUI.exe
│   │   │   ├── GUI.pdb
│   │   │   ├── GUI.xml
│   │   │   ├── HeapSort.dll
│   │   │   ├── HeapSort.pdb
│   │   │   ├── HeapSort.xml
│   │   │   ├── Interop.SpeechLib.dll
│   │   │   ├── nunit.framework.dll
│   │   │   ├── nunit.framework.extensions.dll
│   │   │   ├── nunit.framework.tests.dll
│   │   │   ├── nunit.framework.xml
│   │   │   ├── Test.dll
│   │   │   ├── Test.pdb
│   │   │   ├── TestResult.xml
│   │   │   └── Test.XML
│   │   └── Release
│   │   ├── Algorithm.dll
│   │   ├── Algorithm.pdb
│   │   ├── ControlLibruary.dll
│   │   ├── ControlLibruary.pdb
│   │   ├── GUI.exe
│   │   ├── GUI.pdb
│   │   ├── HeapSort.dll
│   │   ├── HeapSort.pdb
│   │   ├── Interop.SpeechLib.dll
│   │   ├── nunit.framework.dll
│   │   ├── nunit.framework.extensions.dll
│   │   ├── nunit.framework.tests.dll
│   │   ├── nunit.framework.xml
│   │   ├── Test.dll
│   │   └── Test.pdb
│   ├── GUI
│   │   └── Operation
│   │   └── SwatchAndJobs
│   │   ├── AddJob.cs
│   │   ├── AddSwatch.cs
│   │   ├── CellPosition.cs
│   │   ├── InsertJob.cs
│   │   ├── ModifyCell.cs
│   │   ├── RemoveJob.cs
│   │   ├── RemoveSwatch.cs
│   │   └── Tests
│   │   ├── TestAddJob.cs
│   │   ├── TestAddSwatch.cs
│   │   ├── TestAddSwatch.cs~RF1725404.TMP
│   │   ├── TestInsertJob.cs
│   │   ├── TestInsertJob.cs~RF5424776.TMP
│   │   ├── TestModifyCell.cs
│   │   ├── TestRemoveJob.cs
│   │   ├── TestRemoveSwatch.cs
│   │   └── TestRemoveSwatch.cs~RF5834372.TMP
│   ├── obj
│   │   ├── Debug
│   │   │   ├── ResolveAssemblyReference.cache
│   │   │   ├── Test.dll
│   │   │   └── Test.pdb
│   │   ├── Release
│   │   │   ├── ResolveAssemblyReference.cache
│   │   │   ├── Test.dll
│   │   │   └── Test.pdb
│   │   └── Test.csproj.FileList.txt
│   ├── Properties
│   │   └── AssemblyInfo.cs
│   └── Test.csproj
├── ControlLibruary
│   ├── bin
│   │   ├── Debug
│   │   │   ├── Algorithm.dll
│   │   │   ├── Algorithm.pdb
│   │   │   ├── Algorithm.xml
│   │   │   ├── ControlLibruary.dll
│   │   │   ├── ControlLibruary.pdb
│   │   │   ├── ControlLibruary.XML
│   │   │   ├── HeapSort.dll
│   │   │   ├── HeapSort.pdb
│   │   │   └── HeapSort.xml
│   │   └── Release
│   │   ├── Algorithm.dll
│   │   ├── Algorithm.pdb
│   │   ├── ControlLibruary.dll
│   │   ├── ControlLibruary.pdb
│   │   ├── HeapSort.dll
│   │   └── HeapSort.pdb
│   ├── ColorStyle.cs
│   ├── ControlLibruary.csproj
│   ├── DrawUsePoint.cs
│   ├── JobDataView.cs
│   ├── JobDataView.Designer.cs
│   ├── JobDataView.resx
│   ├── NetworkChart.cs
│   ├── NetworkChart.Designer.cs
│   ├── NetworkChart.resx
│   ├── obj
│   │   ├── ControlLibruary.csproj.FileList.txt
│   │   ├── Debug
│   │   │   ├── ControlLibruary.csproj.GenerateResource.Cache
│   │   │   ├── ControlLibruary.dll
│   │   │   ├── ControlLibruary.pdb
│   │   │   ├── Paicheng.ControlLibruary.JobDataView.resources
│   │   │   ├── Paicheng.ControlLibruary.NetworkChart.resources
│   │   │   ├── Refactor
│   │   │   │   └── ControlLibruary.dll
│   │   │   └── ResolveAssemblyReference.cache
│   │   └── Release
│   │   ├── ControlLibruary.csproj.GenerateResource.Cache
│   │   ├── ControlLibruary.dll
│   │   ├── ControlLibruary.pdb
│   │   ├── Paicheng.ControlLibruary.JobDataView.resources
│   │   ├── Paicheng.ControlLibruary.NetworkChart.resources
│   │   └── ResolveAssemblyReference.cache
│   ├── Properties
│   │   └── AssemblyInfo.cs
│   └── Strategy
│   ├── NormalStrategy.cs
│   ├── SimpleStrategy.cs
│   ├── Strategy.cs
│   └── Strategy.cs~RF17e0a00.TMP
├── GUI
│   ├── bin
│   │   ├── Debug
│   │   │   ├── Algorithm.exe
│   │   │   ├── ControlLibruary.dll
│   │   │   ├── ControlLibruary.pdb
│   │   │   ├── ControlLibruary.xml
│   │   │   ├── GUI.exe
│   │   │   ├── GUI.pdb
│   │   │   ├── GUI.vshost.exe
│   │   │   ├── GUI.XML
│   │   │   ├── HeapSort.dll
│   │   │   ├── HeapSort.pdb
│   │   │   ├── HeapSort.xml
│   │   │   ├── Images
│   │   │   │   ├── Icons
│   │   │   │   │   ├── Add Job.png
│   │   │   │   │   ├── Add Swatch.png
│   │   │   │   │   ├── Back.png
│   │   │   │   │   ├── Close.png
│   │   │   │   │   ├── Copy.png
│   │   │   │   │   ├── Cut.png
│   │   │   │   │   ├── Delete.png
│   │   │   │   │   ├── Exit.png
│   │   │   │   │   ├── Forward.png
│   │   │   │   │   ├── Insert Job.png
│   │   │   │   │   ├── NewDocument.png
│   │   │   │   │   ├── OpenDocument.png
│   │   │   │   │   ├── Options.png
│   │   │   │   │   ├── Paste.png
│   │   │   │   │   ├── PAUSE_OFF.ico
│   │   │   │   │   ├── PAUSE_ON.ico
│   │   │   │   │   ├── PLAY_OFF.ico
│   │   │   │   │   ├── PLAY_ON.ico
│   │   │   │   │   ├── Print.png
│   │   │   │   │   ├── RemoveJob.png
│   │   │   │   │   ├── Remove.png
│   │   │   │   │   ├── SaveAs.png
│   │   │   │   │   ├── Save.png
│   │   │   │   │   ├── Share.png
│   │   │   │   │   ├── StartButtonImage.png
│   │   │   │   │   ├── Stop 2.png
│   │   │   │   │   ├── STOP_OFF.ico
│   │   │   │   │   ├── STOP_ON.ico
│   │   │   │   │   └── Themes 2.png
│   │   │   │   ├── LOGO1.png
│   │   │   │   └── LOGO.ico
│   │   │   └── Interop.SpeechLib.dll
│   │   └── Release
│   │   ├── Algorithm.exe
│   │   ├── ControlLibruary.dll
│   │   ├── ControlLibruary.pdb
│   │   ├── GUI.exe
│   │   ├── GUI.pdb
│   │   ├── GUI.vshost.exe
│   │   ├── HeapSort.dll
│   │   ├── HeapSort.pdb
│   │   ├── Images
│   │   │   ├── Icons
│   │   │   │   ├── Add Job.png
│   │   │   │   ├── Add Swatch.png
│   │   │   │   ├── Back.png
│   │   │   │   ├── Close.png
│   │   │   │   ├── Copy.png
│   │   │   │   ├── Cut.png
│   │   │   │   ├── Delete.png
│   │   │   │   ├── Exit.png
│   │   │   │   ├── Forward.png
│   │   │   │   ├── Insert Job.png
│   │   │   │   ├── NewDocument.png
│   │   │   │   ├── OpenDocument.png
│   │   │   │   ├── Options.png
│   │   │   │   ├── Paste.png
│   │   │   │   ├── PAUSE_OFF.ico
│   │   │   │   ├── PAUSE_ON.ico
│   │   │   │   ├── PLAY_OFF.ico
│   │   │   │   ├── PLAY_ON.ico
│   │   │   │   ├── Print.png
│   │   │   │   ├── RemoveJob.png
│   │   │   │   ├── Remove.png
│   │   │   │   ├── SaveAs.png
│   │   │   │   ├── Save.png
│   │   │   │   ├── Share.png
│   │   │   │   ├── StartButtonImage.png
│   │   │   │   ├── Stop 2.png
│   │   │   │   ├── STOP_OFF.ico
│   │   │   │   ├── STOP_ON.ico
│   │   │   │   ├── Themes 2.png
│   │   │   │   └── Thumbs.db
│   │   │   ├── LOGO1.png
│   │   │   ├── LOGO.ico
│   │   │   └── Thumbs.db
│   │   └── Interop.SpeechLib.dll
│   ├── Form1.Designer.cs~RF12038f9.TMP
│   ├── Form1.Designer.cs~RF19043f4.TMP
│   ├── FrmAbout.cs
│   ├── FrmAbout.cs~RFada33e8.TMP
│   ├── FrmAbout.Designer.cs
│   ├── FrmAbout.resx
│   ├── frmDocument.resx
│   ├── Global
│   │   └── ApplicationState.cs
│   ├── GUI.csproj
│   ├── GUI.csproj.user
│   ├── LOGO.ico
│   ├── MainFrame.cs
│   ├── MainFrame.Designer.cs
│   ├── MainFrame.resx
│   ├── MainFrame.resx~RF191f31b.TMP
│   ├── obj
│   │   ├── Debug
│   │   │   ├── GUI.csproj.GenerateResource.Cache
│   │   │   ├── GUI.csproj.ResolveComReference.cache
│   │   │   ├── GUI.exe
│   │   │   ├── GUI.pdb
│   │   │   ├── GUI.Properties.Resources.resources
│   │   │   ├── Interop.SpeechLib.dll
│   │   │   ├── Paicheng.GUI.FrmAbout.resources
│   │   │   ├── Paicheng.GUI.MainFrame.resources
│   │   │   ├── Refactor
│   │   │   │   └── GUI.exe
│   │   │   ├── ResolveAssemblyReference.cache
│   │   │   └── TempPE
│   │   │   └── Properties.Resources.Designer.cs.dll
│   │   ├── GUI.csproj.FileList.txt
│   │   └── Release
│   │   ├── build.force
│   │   ├── GUI.csproj.GenerateResource.Cache
│   │   ├── GUI.csproj.ResolveComReference.cache
│   │   ├── GUI.exe
│   │   ├── GUI.pdb
│   │   ├── GUI.Properties.Resources.resources
│   │   ├── Interop.SpeechLib.dll
│   │   ├── Paicheng.GUI.FrmAbout.resources
│   │   ├── Paicheng.GUI.MainFrame.resources
│   │   ├── ResolveAssemblyReference.cache
│   │   └── TempPE
│   │   └── Properties.Resources.Designer.cs.dll
│   ├── Operation
│   │   └── SwatchAndJobs
│   │   ├── AddJob.cs
│   │   ├── AddSwatch.cs
│   │   ├── CellPosition.cs
│   │   ├── InsertJob.cs
│   │   ├── ModifyCell.cs
│   │   ├── RemoveJob.cs
│   │   ├── RemoveJob.cs~RF197faee.TMP
│   │   └── RemoveSwatch.cs
│   ├── Program.cs
│   ├── Properties
│   │   ├── app.manifest
│   │   ├── AssemblyInfo.cs
│   │   ├── Resources.Designer.cs
│   │   ├── Resources.resx
│   │   ├── Settings.Designer.cs
│   │   └── Settings.settings
│   ├── Resources
│   │   └── Icon1.ico
│   ├── Utils
│   │   └── IOUtils
│   │   ├── FileSystemModel.cs
│   │   ├── GridCellPair.cs
│   │   └── JobSavePair.cs
│   └── Voice
│   ├── LOGO.ico
│   └── ReadVoice.cs
├── HeapSort
│   ├── bin
│   │   ├── Debug
│   │   │   ├── HeapSort.dll
│   │   │   ├── HeapSort.pdb
│   │   │   └── HeapSort.XML
│   │   └── Release
│   │   ├── HeapSort.dll
│   │   └── HeapSort.pdb
│   ├── obj
│   │   ├── Debug
│   │   │   ├── HeapSort.dll
│   │   │   ├── HeapSort.pdb
│   │   │   └── Refactor
│   │   │   ├── HeapSort.dll
│   │   │   └── HeapSort.exe
│   │   ├── Release
│   │   │   ├── HeapSort.dll
│   │   │   └── HeapSort.pdb
│   │   └── Utilities.csproj.FileList.txt
│   ├── Properties
│   │   ├── AssemblyInfo.cs
│   │   └── AssemblyInfo.cs~RF2487ead.TMP
│   ├── Serialize
│   │   ├── BinarySerializer.cs
│   │   └── XMLSerializer.cs
│   ├── Sort
│   │   ├── Comparator.cs
│   │   └── HeapSort.cs
│   ├── Test.cs
│   ├── Undo
│   │   ├── UndoRedoItem.cs
│   │   └── UndoRedoManager.cs
│   └── Utilities.csproj
├── localtestrun.testrunconfig
├── PaiCheng.sln
├── PaiCheng.suo
├── PaiCheng.vsmdi
├── TestPaichengProject
│   ├── AlgorithmTest.cs
│   ├── AuthoringTests.txt
│   ├── bin
│   │   └── Debug
│   │   ├── Algorithm.dll
│   │   ├── Algorithm.pdb
│   │   ├── Algorithm.xml
│   │   ├── HeapSort.dll
│   │   ├── HeapSort.pdb
│   │   ├── HeapSort.xml
│   │   ├── TestPaichengProject.dll
│   │   └── TestPaichengProject.pdb
│   ├── JobTest.cs
│   ├── JobUnarrangableExceptionTest.cs
│   ├── obj
│   │   ├── Debug
│   │   │   ├── TestPaichengProject.dll
│   │   │   └── TestPaichengProject.pdb
│   │   └── TestPaichengProject.csproj.FileList.txt
│   ├── Properties
│   │   └── AssemblyInfo.cs
│   ├── TestPaichengProject.csproj
│   └── VSCodeGenAccessors.cs
└── TestResults
├── Superymk_FOUNDER 2007-07-31 11_57_04
│   └── Out
│   ├── Algorithm.dll
│   ├── Algorithm.pdb
│   ├── HeapSort.dll
│   ├── HeapSort.pdb
│   ├── testpaichengproject.dll
│   └── TestPaichengProject.pdb
└── Superymk_FOUNDER 2007-07-31 11_57_04.trx

79 directories, 328 files

标签:

实例下载地址

生产 排程 源码

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

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

网友评论

第 1 楼 venli 发表于: 2021-12-31 10:07 40
不能用

支持(0) 盖楼(回复)

发表评论

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

查看所有1条评论>>

小贴士

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

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

关于好例子网

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

;
报警