49 lines
1.2 KiB
C#
49 lines
1.2 KiB
C#
using JinYuan.Models.HelperAttribute;
|
|||
|
|
using PLCCommunication;
|
||
|
|
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 AGearEntity
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 时间
|
||
|
|
/// </summary>
|
||
|
|
[SugarColumn(IsPrimaryKey = true)]
|
||
|
|
[DataGridViewColumn(Name = "InTestTime")]
|
||
|
|
public string TestTime { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 箱唛码
|
||
|
|
/// </summary>
|
||
|
|
[DataGridViewColumn(Name = "InContainerCode")]
|
||
|
|
public string ContainerCode { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 栈板码
|
||
|
|
/// </summary>
|
||
|
|
[DataGridViewColumn(Name = "InPalletCode")]
|
||
|
|
public string PalletCode { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 结果
|
||
|
|
/// </summary>
|
||
|
|
[DataGridViewColumn(Name = "InResult")]
|
||
|
|
public string Result { get; set; }
|
||
|
|
/// <summary>
|
||
|
|
/// 备注
|
||
|
|
/// </summary>
|
||
|
|
[DataGridViewColumn(Name = "InRemark")]
|
||
|
|
public string Remark { get; set; }
|
||
|
|
}
|
||
|
|
}
|