72 lines
1.7 KiB
C#
72 lines
1.7 KiB
C#
using JinYuan.Models.HelperAttribute;
|
|||
|
|
using SqlSugar;
|
||
|
|
using System.Collections.Generic;
|
||
|
|
using System.Xml.Linq;
|
||
|
|
using static System.Net.Mime.MediaTypeNames;
|
||
|
|
|
||
|
|
namespace JinYuan.Models
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 组盘出站工位
|
||
|
|
/// </summary>
|
||
|
|
public class BGearEntity
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 测试时间
|
||
|
|
/// </summary>
|
||
|
|
[DataGridViewColumn(Name = "OutTestTime")]
|
||
|
|
public string TestTime { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 托盘码
|
||
|
|
/// </summary>
|
||
|
|
[DataGridViewColumn(Name = "OutVassoioID")]
|
||
|
|
public string VassoioID { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 叠盘工位号
|
||
|
|
/// </summary>
|
||
|
|
[DataGridViewColumn(Name = "OutGongWei")]
|
||
|
|
public string GongWei { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 叠盘层数
|
||
|
|
/// </summary>
|
||
|
|
[DataGridViewColumn(Name = "OutStackingLayer")]
|
||
|
|
public int StackingLayer { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 电芯等级
|
||
|
|
/// </summary>
|
||
|
|
[DataGridViewColumn(Name = "OutQty")]
|
||
|
|
public string Qty { get; set; }
|
||
|
|
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 电芯数量
|
||
|
|
/// </summary>
|
||
|
|
[DataGridViewColumn(Name = "OutTotal")]
|
||
|
|
public int Total { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 电芯成功绑定数量
|
||
|
|
/// </summary>
|
||
|
|
[DataGridViewColumn(Name = "OutSuccTotal")]
|
||
|
|
public int OutSuccTotal { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 装箱结果
|
||
|
|
/// </summary>
|
||
|
|
[DataGridViewColumn(Name = "OutResult")]
|
||
|
|
public string Result { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 备注
|
||
|
|
/// </summary>
|
||
|
|
[DataGridViewColumn(Name = "OutRemark")]
|
||
|
|
public string Remark { get; set; }
|
||
|
|
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|