using JinYuan.Models.HelperAttribute;
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 EGearEntity
{
///
/// 测试时间
///
[DataGridViewColumn(Name = "TestTime")]
public string TestTime { get; set; }
///
/// 托盘码
///
[DataGridViewColumn(Name = "CardBarcode")]
public string CardBarcode { get; set; }
///
/// 综合结果
///
[DataGridViewColumn(Name = "Result")]
public string Result { get; set; }
///
/// 备注
///
[DataGridViewColumn(Name = "Remark")]
public string Remark { get; set; }
}
}