1234567891011121314151617181920212223242526272829 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace MECF.Framework.Common.ToolLayout
- {
- public class TransporterItem : LayoutModuleItem
- {
-
-
-
- public int TransporterID { get; set; }
-
-
-
- public string DripTrayType { get; set; }
-
-
-
- public string DropBlockType { get; set; }
-
-
-
- public string BarcodeReader { get; set; }
- }
- }
|