using SqlSugar; namespace JinYuan.Models { /// /// 电芯进站 /// public class AGearEntity { //[SugarColumn(IsIgnore = false)] //存储到数据库 public System.String CNum { get; set; } /// /// 电芯条码 /// public System.String BarCode { get; set; } /// /// 通道号 /// public int ID { get; set; } /// /// 上传状态 /// public string UpState { get; set; } /// /// 进站电芯反馈结果 /// public string Result { get; set; } /// /// 时间 /// [SugarColumn(IsPrimaryKey = true)] public System.String TestTime { get; set; } /// /// 备注 /// public string Remark { get; set; } /// /// 标志 /// public int Flag { get; set; } } }