55 lines
1.2 KiB
C#
55 lines
1.2 KiB
C#
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; }
|
||
|
|
}
|
||
|
|
}
|