38 lines
949 B
C#
38 lines
949 B
C#
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; }
|
||
|
|
}
|
||
|
|
}
|