1234567891011121314151617181920 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace NX_ModelClassLibrary.WcsDispatch
- {
- public class BasNextLocRouteMd
- {
- public string SectionNo { get; set; }
- public string SlocNo { get; set; }
- public string NextLocNo { get; set; }
- public string NextLocType { get; set; }
- public string ElocNo { get; set; }
- public int EndFlag { get; set; }
- public int StepSize { get; set; }
- public string DevNo { get; set; }
- }
- }
|