123456789101112131415161718192021222324252627282930 |
- using DBHelper;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using WCS.Core;
- using WCS.Entity;
- using WCS.Entity.Protocol;
- namespace WCS.Service.Works.AGV
- {
- [WorkTitle(typeof(ProductHandler), "生产入库", false)]
- public class 生产入库 : Work<string>
- {
- protected override void Do(string obj)
- {
-
- }
- protected override IEnumerable<string> InitObjects()
- {
- return new string[]
- {
- "Mw_13_C",
- "Mw_13_D"
- };
- }
- }
- }
|