first commit
This commit is contained in:
@@ -0,0 +1,146 @@
|
||||
using JinYuan.Models.HelperAttribute;
|
||||
using SqlSugar;
|
||||
using System.Collections.Generic;
|
||||
using System.Xml.Linq;
|
||||
|
||||
namespace JinYuan.Models
|
||||
{
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public class Temprfidtable
|
||||
{
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
//public BGearEntity()
|
||||
//{
|
||||
//}
|
||||
|
||||
/// <summary>
|
||||
/// 通道号
|
||||
/// </summary>
|
||||
[DataGridViewColumn(Name = "OutChannelNo")]
|
||||
public string ChannelNo { get; set; }
|
||||
/// <summary>
|
||||
/// 时间
|
||||
/// </summary>
|
||||
[DataGridViewColumn(Name = "OutTestTime")]
|
||||
public string TestTime { get; set; }
|
||||
/// <summary>
|
||||
/// 物料编码
|
||||
/// </summary>
|
||||
public string MaterialCode { get; set; }
|
||||
/// <summary>
|
||||
/// RFID托杯码
|
||||
/// </summary>
|
||||
[DataGridViewColumn(Name = "OutRFID")]
|
||||
public string RFID { get; set; }
|
||||
/// <summary>
|
||||
/// 电芯码
|
||||
/// </summary>
|
||||
[DataGridViewColumn(Name = "OutBarCode")]
|
||||
public string BarCode { get; set; }
|
||||
/// <summary>
|
||||
/// 喷码
|
||||
/// </summary>
|
||||
[DataGridViewColumn(Name = "OutJetCode")]
|
||||
public string JetCode { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 离子风速
|
||||
/// </summary>
|
||||
[DataGridViewColumn(Name = "OutWindSpeed")]
|
||||
public string WindSpeed { get; set; }
|
||||
/// <summary>
|
||||
/// 电芯码长度
|
||||
/// </summary>
|
||||
[DataGridViewColumn(Name = "OutBarCodeLength")]
|
||||
public string BarCodeLength { get; set; }
|
||||
/// <summary>
|
||||
/// 电芯码宽度
|
||||
/// </summary>
|
||||
[DataGridViewColumn(Name = "OutBarCodeWidth")]
|
||||
public string BarCodeWidth { get; set; }
|
||||
/// <summary>
|
||||
/// GB码底部距盖板高度
|
||||
/// </summary>
|
||||
[DataGridViewColumn(Name = "OutGBCodeBottomToCoverPlateHeight")]
|
||||
public string GBCodeBottomToCoverPlateHeight { get; set; }
|
||||
/// <summary>
|
||||
/// 中间直径
|
||||
/// </summary>
|
||||
[DataGridViewColumn(Name = "OutMidDiameter")]
|
||||
public string MidDiameter { get; set; }
|
||||
/// <summary>
|
||||
/// 绝缘膜距底部高度1
|
||||
/// </summary>
|
||||
[DataGridViewColumn(Name = "OutInsulationFilmToBottemHeight1")]
|
||||
public string InsulationFilmToBottemHeight1 { get; set; }
|
||||
/// <summary>
|
||||
/// 绝缘膜距底部高度2
|
||||
/// </summary>
|
||||
[DataGridViewColumn(Name = "OutInsulationFilmToBottemHeight2")]
|
||||
public string InsulationFilmToBottemHeight2 { get; set; }
|
||||
/// <summary>
|
||||
/// 绝缘膜距底部高度3
|
||||
/// </summary>
|
||||
[DataGridViewColumn(Name = "OutInsulationFilmToBottemHeight3")]
|
||||
public string InsulationFilmToBottemHeight3 { get; set; }
|
||||
/// <summary>
|
||||
/// 绝缘膜距底部高度4
|
||||
/// </summary>
|
||||
[DataGridViewColumn(Name = "OutInsulationFilmToBottemHeight4")]
|
||||
public string InsulationFilmToBottemHeight4 { get; set; }
|
||||
/// <summary>
|
||||
/// 绝缘膜距底部高度5
|
||||
/// </summary>
|
||||
[DataGridViewColumn(Name = "OutInsulationFilmToBottemHeight5")]
|
||||
public string InsulationFilmToBottemHeight5 { get; set; }
|
||||
/// <summary>
|
||||
/// 绝缘膜距底部高度6
|
||||
/// </summary>
|
||||
[DataGridViewColumn(Name = "OutInsulationFilmToBottemHeight6")]
|
||||
public string InsulationFilmToBottemHeight6 { get; set; }
|
||||
/// <summary>
|
||||
/// 工位
|
||||
/// </summary>
|
||||
[DataGridViewColumn(Name = "OutStation")]
|
||||
public string Station { get; set; }
|
||||
/// <summary>
|
||||
/// 包膜后对齐度检测结果
|
||||
/// </summary>
|
||||
[DataGridViewColumn(Name = "OutCCDAfterCoatedAlignmentTestResult")]
|
||||
public string CCDAfterCoatedAlignmentTestResult { get; set; }
|
||||
/// <summary>
|
||||
/// 贴膜后外观检测结果
|
||||
/// </summary>
|
||||
[DataGridViewColumn(Name = "OutCCDAfterCoatedApperanceTestResult")]
|
||||
public string CCDAfterCoatedApperanceTestResult { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 综合结果
|
||||
/// </summary>
|
||||
[DataGridViewColumn(Name = "OutResult")]
|
||||
public string Result { get; set; }
|
||||
/// <summary>
|
||||
/// NG详情
|
||||
/// </summary>
|
||||
[DataGridViewColumn(Name = "OutInfo")]
|
||||
public string Info { get; set; }
|
||||
/// <summary>
|
||||
/// 备注
|
||||
/// </summary>
|
||||
[DataGridViewColumn(Name = "OutRemark")]
|
||||
public string Remark { get; set; }
|
||||
/// <summary>
|
||||
/// 出站是否上传MES
|
||||
/// </summary>
|
||||
[DataGridViewColumn(Name = "OutFlag")]
|
||||
public string Flag { get; set; }
|
||||
/// <summary>
|
||||
/// 结果数据是否上传MES
|
||||
/// </summary>
|
||||
public string Flag1 { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user