123456789101112131415161718192021 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using WCS.Core;
- namespace WCS.Service
- {
- [Description("成品库")]
- class ProductHandler: WorkHandler
- {
- public override bool ParallelRun => false;
- protected override void DoWork(WorkInfo work)
- {
- base.DoWork(work);
- }
- }
- }
|