1234567891011121314151617 |
- using System.Runtime.Serialization;
- using WCS.Protocol.SX.Protocol.Robot;
- namespace WCS.Protocol.SX.Robot
- {
- [DataContract]
- public class WCS_Robot531 : IRobot531
- {
- public int PalletID { get; set; }
- public short Type { get; set; }
- public short MaxQty { get;set; }
- public short Qty { get;set; }
- public RobotStationRqst Rqst{ get;set; }
- public short VoucherNo { get;set; }
- public int[] TaskArray { get;set; }
- }
- }
|