first commit
This commit is contained in:
@@ -0,0 +1,61 @@
|
||||
using JinYuan.Models.HelperAttribute;
|
||||
using PLCCommunication;
|
||||
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 AGearEntity
|
||||
{
|
||||
/// <summary>
|
||||
/// 通道
|
||||
/// </summary>
|
||||
[SugarColumn(IsIgnore = true)] //不存储到数据库
|
||||
[DataGridViewColumn(Name = "InChannelNo")]
|
||||
public string ChannelNo { get; set; }
|
||||
/// <summary>
|
||||
/// 时间
|
||||
/// </summary>
|
||||
[SugarColumn(IsPrimaryKey = true)]
|
||||
[DataGridViewColumn(Name = "InTestTime")]
|
||||
public string TestTime { get; set; }
|
||||
/// <summary>
|
||||
/// 高托杯码
|
||||
/// </summary>
|
||||
public string RFID { get; set; }
|
||||
/// <summary>
|
||||
/// 卷芯码
|
||||
/// </summary>
|
||||
[DataGridViewColumn(Name = "InBarCode")]
|
||||
public string BarCode { get; set; }
|
||||
/// <summary>
|
||||
/// 结果
|
||||
/// </summary>
|
||||
[DataGridViewColumn(Name = "InResult")]
|
||||
public string Result { get; set; }
|
||||
/// <summary>
|
||||
/// 备注
|
||||
/// </summary>
|
||||
[DataGridViewColumn(Name = "InRemark")]
|
||||
public string Remark { get; set; }
|
||||
/// <summary>
|
||||
/// 进站是否上传MES
|
||||
/// </summary>
|
||||
[DataGridViewColumn(Name = "InFlag")]
|
||||
public string Flag { get; set; }
|
||||
/// <summary>
|
||||
/// 喷码
|
||||
/// </summary>
|
||||
//[DataGridViewColumn(Name = "InJetCode")]
|
||||
public string JetCode { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user