1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Runtime.Serialization;
- using System.Text;
- using System.Threading.Tasks;
- using SqlSugar;
- namespace WCS_Client.Frm
- {
-
- public class WCS_SC521
- {
- [SugarColumn(IsPrimaryKey = true, IsIdentity = false)]
- public bool Handshake {get;set;}
- public bool GetFinishi {get;set;}
- public bool PutFinishi {get;set;}
- public bool Alarm {get;set;}
-
- public bool TaskFinishi {get;set;}
-
- public bool Loaded {get;set;}
-
- public bool ForkCenter {get;set;}
-
- public byte RES {get;set;}
- public SCMode Mode {get;set;}
- public SCRunStatus Status {get;set;}
-
- public short SLine {get;set;}
-
- public short SCol {get;set;}
- public short SLayer {get;set;}
- public short SDepth {get;set;}
- public short ELine {get;set;}
-
- public short ECol {get;set;}
-
- public short ELayer {get;set;}
-
- public short EDepth {get;set;}
- public int TaskID {get;set;}
- public short Trigger {get;set;}
- public short Line {get;set;}
-
- public short Col {get;set;}
-
- public short Layer {get;set;}
- public int FinishedTask {get;set;}
-
- public int TravelPos {get;set;}
- public int LiftPos {get;set;}
- public int ForkPos {get;set;}
- public short Tunnel {get;set;}
- public short Endnumber2 {get;set;}
- public float TotalKM {get;set;}
- public short GoodsType {get;set;}
-
- public float Runtime {get;set;}
- public string DEVICECODE { get; set; }
- public bool ISLAST { get; set; }
- }
- }
|