using JinYuan.Models.HelperAttribute;
using SqlSugar;
using System.Collections.Generic;
using static System.Net.Mime.MediaTypeNames;
namespace JinYuan.Models
{
///
/// 箱唛打印工位
///
public class DGearEntity
{
///
/// 时间
///
[SugarColumn(IsPrimaryKey = true)]
[DataGridViewColumn(Name = "TestTime")]
public string TestTime { get; set; }
///
/// 箱唛码
///
[DataGridViewColumn(Name = "ContainerCode")]
public string ContainerCode { get; set; }
///
/// 结果
///
[DataGridViewColumn(Name = "Result")]
public string Result { get; set; }
///
/// 备注
///
[DataGridViewColumn(Name = "Remark")]
public string Remark { get; set; }
}
}