ProductHandler.cs 431 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. using WCS.Core;
  8. namespace WCS.Service
  9. {
  10. [Description("成品库")]
  11. class ProductHandler: WorkHandler
  12. {
  13. public override bool ParallelRun => false;
  14. protected override void DoWork(WorkInfo work)
  15. {
  16. base.DoWork(work);
  17. }
  18. }
  19. }