using JinYuan.Models.HelperAttribute; using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Xml.Linq; namespace JinYuan.Models { /// /// 钢壳码消息 /// public class CGearEntity { [SugarColumn(IsIgnore = true)] //不存储到数据库 [DataGridViewColumn(Name = "GKChannel")] public string ChannelNo { get; set; } /// /// 时间 /// [SugarColumn(IsPrimaryKey = true)] [DataGridViewColumn(Name = "GKTestTime")] public string TestTime { get; set; } /// /// 钢壳码 /// [DataGridViewColumn(Name = "GKBarCode")] public string BarCode { get; set; } /// /// 钢壳托杯码 /// public string RFID { set; get; } /// /// 结果 /// [DataGridViewColumn(Name = "GKResult")] public string Result { get; set; } /// /// 备注 /// [DataGridViewColumn(Name = "GKRemark")] public string Remark { get; set; } /// /// 状态 /// public string Flag { get; set; } } }