using LiveCharts.Wpf; using SqlSugar; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; namespace InSituLaboratory.Entities { /// /// 数据解析通用字段 /// [SugarTable("DataParsingModel")] public class DataParsingModelSqlSugar { /// /// 主键 /// [SugarColumn(ColumnName = "Id", IsIdentity = true, IsPrimaryKey = true)] public int Id { get; set; } /// /// 创建时间 /// [SugarColumn(IsNullable = true)] public DateTime CreateTime { get; set; } /// /// 应答流水号 /// [SugarColumn(IsNullable = true)] public string? ResponseNum { get; set; } /// /// 应答ID /// [SugarColumn(IsNullable = true)] public string? ResponseID { get; set; } /// /// 应答结果 /// [SugarColumn(IsNullable = true)] public string? ResponseResult { get; set; } } }