123456789101112131415161718192021 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace WCS.Entity.Protocol
- {
- public class WCS_STATIONDATA : WCS_PROTOCOLDATA, IStation
- {
- public int TASKNUM { get; set; }
- public short GOODSCODE { get; set; }
- public short GOODSTYPE { get; set; }
- public short GOODSSIZE { get; set; }
- public short GOODSSTART { get; set; }
- public short GOODSEND { get; set; }
- public short WEIGHT { get; set; }
- public StationFlags FLAGS { get; set; }
- public short CONFIRM { get; set; }
- }
- }
|