添加项目文件。
This commit is contained in:
@@ -0,0 +1,70 @@
|
||||
using JinYuan.Models.HelperAttribute;
|
||||
using SqlSugar;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
|
||||
|
||||
namespace JinYuan.Models
|
||||
{
|
||||
/// <summary>
|
||||
/// 电芯替换
|
||||
/// </summary>
|
||||
public class BatteryReplace
|
||||
{
|
||||
/// <summary>
|
||||
/// 时间
|
||||
/// </summary>
|
||||
[DataGridViewColumn(Name = "TestTime")]
|
||||
public DateTime ReplaceTime { get; set; }
|
||||
/// <summary>
|
||||
/// 替换后的电池码
|
||||
/// </summary>
|
||||
[SugarColumn(IsPrimaryKey = true)]
|
||||
[DataGridViewColumn(Name = "NewBarCode")]
|
||||
public string NewBarCode { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 替换前的电池码
|
||||
/// </summary>
|
||||
[SugarColumn(IsPrimaryKey = true)]
|
||||
[DataGridViewColumn(Name = "OldBarCode")]
|
||||
public string OldBarCode { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 电芯在托盘位置号
|
||||
/// </summary>
|
||||
[DataGridViewColumn(Name = "Location")]
|
||||
public string Location { get; set; }
|
||||
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 托盘码
|
||||
/// </summary>
|
||||
[DataGridViewColumn(Name = "VassoioID")]
|
||||
public string VassoioID { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 托盘工位号
|
||||
/// </summary>
|
||||
[DataGridViewColumn(Name = "GongWei")]
|
||||
public string GongWei { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 电芯档位
|
||||
/// </summary>
|
||||
[DataGridViewColumn(Name = "Grade")]
|
||||
public string Grade { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 备注
|
||||
/// </summary>
|
||||
[DataGridViewColumn(Name = "Remark")]
|
||||
public string Remark { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user