42 lines
1.0 KiB
C#
42 lines
1.0 KiB
C#
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
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 栈板打印工位
|
||
|
|
/// </summary>
|
||
|
|
public class EGearEntity
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 时间
|
||
|
|
/// </summary>
|
||
|
|
[SugarColumn(IsPrimaryKey = true)]
|
||
|
|
[DataGridViewColumn(Name = "TestTime")]
|
||
|
|
public string TestTime { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 栈板码
|
||
|
|
/// </summary>
|
||
|
|
[DataGridViewColumn(Name = "PalletCode")]
|
||
|
|
public string PalletCode { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 结果
|
||
|
|
/// </summary>
|
||
|
|
[DataGridViewColumn(Name = "printPalletResult")]
|
||
|
|
public string Result { get; set; }
|
||
|
|
/// <summary>
|
||
|
|
/// 备注
|
||
|
|
/// </summary>
|
||
|
|
[DataGridViewColumn(Name = "printpalletRemark")]
|
||
|
|
public string Remark { get; set; }
|
||
|
|
}
|
||
|
|
}
|