添加项目文件。
This commit is contained in:
@@ -0,0 +1,77 @@
|
||||
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>
|
||||
[DataGridViewColumn(Name = "InTestTime")]
|
||||
public DateTime Time { get; set; }
|
||||
/// <summary>
|
||||
/// 电池码
|
||||
/// </summary>
|
||||
[SugarColumn(IsPrimaryKey = true)]
|
||||
[DataGridViewColumn(Name = "InBarCode")]
|
||||
public string BarCode { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 电芯在托盘位置号
|
||||
/// </summary>
|
||||
[DataGridViewColumn(Name = "Location")]
|
||||
public string Location { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 托盘码
|
||||
/// </summary>
|
||||
[DataGridViewColumn(Name = "InVassoioID")]
|
||||
public string TrayID { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 电池型号
|
||||
/// </summary>
|
||||
[DataGridViewColumn(Name = "InModelName")]
|
||||
public string Model { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 一级电芯档位
|
||||
/// </summary>
|
||||
[DataGridViewColumn(Name = "InGrade")]
|
||||
public string Grade { get; set; }
|
||||
/// <summary>
|
||||
/// 二级电芯档位
|
||||
/// </summary>
|
||||
[DataGridViewColumn(Name = "InMoreGrade")]
|
||||
public string MoreGrade { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 工位号
|
||||
/// </summary>
|
||||
[SugarColumn(IsPrimaryKey = true)]
|
||||
[DataGridViewColumn(Name = "GongWei")]
|
||||
public string GongWei { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 结果
|
||||
/// </summary>
|
||||
[DataGridViewColumn(Name = "InResult")]
|
||||
public string Result { get; set; }
|
||||
/// <summary>
|
||||
/// 备注
|
||||
/// </summary>
|
||||
[DataGridViewColumn(Name = "InRemark")]
|
||||
public string Remark { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user