using SqlSugar; using System; using System.Collections.Generic; using System.Text; namespace WCS.PLC { public class WCS_SCANN { [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] public string SCANN_ID { get; set; } /// /// 扫描位置编号 /// public string SCANN_STATIONNO { get; set; } /// /// 扫描到的条码 /// public string SCANN_BARCODE { get; set; } /// /// 顺序 /// public int SCANN_SEQUENCE { get; set; } /// /// PLC名称 /// public string SCANN_PLCNAME { get; set; } /// /// 起点地址 /// public int SCANN_STARTADDRESS { get; set; } /// /// 扫描长度 /// public int SCANN_LENGTH { get; set; } public int SCANN_DB_ID { get; set; } public int SCANN_VALIDTIMEINTERVAL { get; set; } public DateTime SCANN_UPDATETIME { get; set; } } }