2024-05-22 10:37:51 +00:00
|
|
|
|
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;
|
|
|
|
|
|
|
2024-06-12 10:17:01 +00:00
|
|
|
|
namespace InSituLaboratory.Entities.SqlSugar
|
2024-05-22 10:37:51 +00:00
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
2024-06-12 10:17:01 +00:00
|
|
|
|
/// 数据解析通用字段 ---下位机
|
2024-05-22 10:37:51 +00:00
|
|
|
|
/// </summary>
|
|
|
|
|
|
[SugarTable("DataParsingModel")]
|
2024-06-12 10:17:01 +00:00
|
|
|
|
public class DataParsingModelSqlSugar
|
2024-05-22 10:37:51 +00:00
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 主键
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[SugarColumn(ColumnName = "Id", IsIdentity = true, IsPrimaryKey = true)]
|
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 创建时间
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[SugarColumn(IsNullable = true)]
|
|
|
|
|
|
public DateTime CreateTime { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 应答流水号
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[SugarColumn(IsNullable = true)]
|
|
|
|
|
|
public string? ResponseNum { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 应答ID
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[SugarColumn(IsNullable = true)]
|
2024-06-12 10:17:01 +00:00
|
|
|
|
public string? ResponseID { get; set; }
|
2024-05-22 10:37:51 +00:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 应答结果
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[SugarColumn(IsNullable = true)]
|
|
|
|
|
|
public string? ResponseResult { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|