添加项目文件。

This commit is contained in:
Administrator
2026-08-06 09:23:30 +08:00
parent 771e23e00a
commit 4660ceee70
604 changed files with 138380 additions and 0 deletions
+37
View File
@@ -0,0 +1,37 @@
using JinYuan.Models.HelperAttribute;
using SqlSugar;
using System.Collections.Generic;
using static System.Net.Mime.MediaTypeNames;
namespace JinYuan.Models
{
/// <summary>
/// 箱唛打印工位
/// </summary>
public class DGearEntity
{
/// <summary>
/// 时间
/// </summary>
[SugarColumn(IsPrimaryKey = true)]
[DataGridViewColumn(Name = "TestTime")]
public string TestTime { get; set; }
/// <summary>
/// 箱唛码
/// </summary>
[DataGridViewColumn(Name = "ContainerCode")]
public string ContainerCode { get; set; }
/// <summary>
/// 结果
/// </summary>
[DataGridViewColumn(Name = "Result")]
public string Result { get; set; }
/// <summary>
/// 备注
/// </summary>
[DataGridViewColumn(Name = "Remark")]
public string Remark { get; set; }
}
}