71 lines
1.7 KiB
C#
71 lines
1.7 KiB
C#
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; }
|
|
}
|
|
}
|