using SqlSugar; using System.Runtime.Serialization; namespace WCS.Entity.Protocol.Station { /// /// 外检读取数据 /// [SugarTable(nameof(WCS_Station91), "外检读取数据")] [DataContract] public class WCS_Station91 : WCS_PROTOCOLDATA, IStation91 { /// /// 外检故障 /// [SugarColumn(ColumnDescription = "外检故障")] [DataMember(Order = 0)] public ShapeAlarmEunm ShapeAlarm { get; set; } /// /// 重量 /// [SugarColumn(ColumnDescription = "重量")] [DataMember(Order = 1)] public float Weight { get; set; } /// /// 长度 /// [SugarColumn(ColumnDescription = "长度")] [DataMember(Order = 2)] public float Length { get; set; } /// /// 宽度 /// [SugarColumn(ColumnDescription = "宽度")] [DataMember(Order = 3)] public float Width { get; set; } } }