54 lines
1.3 KiB
C#
54 lines
1.3 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 CGearEntity
|
|
{
|
|
/// <summary>
|
|
/// 时间
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey = true)]
|
|
[DataGridViewColumn(Name = "ReTestTime")]
|
|
public string TestTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 电池条码
|
|
/// </summary>
|
|
[DataGridViewColumn(Name = "ReBarCode")]
|
|
public string BarCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 托盘码
|
|
/// </summary>
|
|
[DataGridViewColumn(Name = "ReVassoioID")]
|
|
public string VassoioID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 托盘位置号
|
|
/// </summary>
|
|
[DataGridViewColumn(Name = "ReLocationNum")]
|
|
public string LocationNum { get; set; }
|
|
|
|
/// <summary>
|
|
/// 结果
|
|
/// </summary>
|
|
[DataGridViewColumn(Name = "ReResult")]
|
|
public string Result { get; set; }
|
|
/// <summary>
|
|
/// 备注
|
|
/// </summary>
|
|
[DataGridViewColumn(Name = "ReRemark")]
|
|
public string Remark { get; set; }
|
|
}
|
|
}
|