Files
1258/JinYuan.Models/DGearEntity.cs
T
2026-08-04 18:36:40 +08:00

65 lines
1.7 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using JinYuan.Models.HelperAttribute;
using SqlSugar;
using System.Collections.Generic;
using static System.Net.Mime.MediaTypeNames;
namespace JinYuan.Models
{
/// <summary>
/// 底托卡板绑定工位(上传WMS)
/// </summary>
public class DGearEntity
{
/// <summary>
/// 层数
/// </summary>
//[SugarColumn(IsIgnore = true)] //不存储到数据库
[DataGridViewColumn(Name = "DtChannelNo")]
public string ChannelNo { get; set; }
/// <summary>
/// 托盘位置号
/// </summary>
[DataGridViewColumn(Name = "DtLocationNum")]
public string LocationNum { get; set; }
/// <summary>
/// 托盘码
/// </summary>
[DataGridViewColumn(Name = "DtVassoioID")]
public string VassoioID { get; set; }
/// <summary>
/// 时间
/// </summary>
[SugarColumn(IsPrimaryKey = true)]
[DataGridViewColumn(Name = "DtTestTime")]
public string TestTime { get; set; }
/// <summary>
/// 电池码
/// </summary>
[DataGridViewColumn(Name = "DtBarCode")]
public string BarCode { get; set; }
/// <summary>
/// 底托卡板码
/// </summary>
[DataGridViewColumn(Name = "DtCardBarcode")]
public string CardBarcode { get; set; }
/// <summary>
/// 结果
/// </summary>
[DataGridViewColumn(Name = "DtResult")]
public string Result { get; set; }
/// <summary>
/// 备注
/// </summary>
[DataGridViewColumn(Name = "DtRemark")]
public string Remark { get; set; }
}
}