using JinYuan.Models.HelperAttribute;
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
{
///
/// 箱唛打印工位
///
public class CGearEntity
{
///
/// 时间
///
[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; }
}
}