初始化提交

This commit is contained in:
lq
2026-09-09 18:42:38 +08:00
commit 40a6cb3baf
2461 changed files with 2778202 additions and 0 deletions
+51
View File
@@ -0,0 +1,51 @@
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
{
/// <summary>
/// 钢壳码消息
/// </summary>
public class CGearEntity
{
[SugarColumn(IsIgnore = true)] //不存储到数据库
[DataGridViewColumn(Name = "GKChannel")]
public string ChannelNo { get; set; }
/// <summary>
/// 时间
/// </summary>
[SugarColumn(IsPrimaryKey = true)]
[DataGridViewColumn(Name = "GKTestTime")]
public string TestTime { get; set; }
/// <summary>
/// 钢壳码
/// </summary>
[DataGridViewColumn(Name = "GKBarCode")]
public string BarCode { get; set; }
/// <summary>
/// 钢壳托杯码
/// </summary>
public string RFID { set; get; }
/// <summary>
/// 结果
/// </summary>
[DataGridViewColumn(Name = "GKResult")]
public string Result { get; set; }
/// <summary>
/// 备注
/// </summary>
[DataGridViewColumn(Name = "GKRemark")]
public string Remark { get; set; }
/// <summary>
/// 状态
/// </summary>
public string Flag { get; set; }
}
}