初始化提交

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
+54
View File
@@ -0,0 +1,54 @@
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace JinYuan.Models
{
/// <summary>
/// 结构件料盘消息
/// </summary>
public class DGearEntity
{
[SugarColumn(IsPrimaryKey = true)]
/// <summary>
/// 通道号
/// </summary>
public System.Int32? ChannelNo { get; set; }
/// <summary>
/// 时间
/// </summary>
public System.String TestTime { get; set; }
/// <summary>
/// 料盘码
/// </summary>
public System.String MaterialCode { get; set; }
/// <summary>
/// 物料编码
/// </summary>
public System.String MaterialCodes { get; set; }
/// <summary>
/// 设备编号
/// </summary>
public System.String EquipNum { get; set; }
/// <summary>
/// 综合结果
/// </summary>
public System.String Result { get; set; }
/// <summary>
/// 备注
/// </summary>
public System.String Remark { get; set; }
/// <summary>
/// 状态
/// </summary>
public System.Int32? Flag { get; set; }
}
}