添加项目文件。
This commit is contained in:
@@ -0,0 +1,51 @@
|
||||
using JinYuan.Models.HelperAttribute;
|
||||
using SqlSugar;
|
||||
using System.Collections.Generic;
|
||||
using System.Xml.Linq;
|
||||
using static System.Net.Mime.MediaTypeNames;
|
||||
|
||||
namespace JinYuan.Models
|
||||
{
|
||||
/// <summary>
|
||||
/// 包装出站工位
|
||||
/// </summary>
|
||||
public class BGearEntity
|
||||
{
|
||||
/// <summary>
|
||||
/// 测试时间
|
||||
/// </summary>
|
||||
[DataGridViewColumn(Name = "OutTestTime")]
|
||||
public string TestTime { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 箱唛码
|
||||
/// </summary>
|
||||
[DataGridViewColumn(Name = "OutContainerCode")]
|
||||
public string ContainerCode { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 栈板码
|
||||
/// </summary>
|
||||
[DataGridViewColumn(Name = "OutPalletCode")]
|
||||
public string PalletCode { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 重量
|
||||
/// </summary>
|
||||
[DataGridViewColumn(Name = "OutWeight")]
|
||||
public string Weight { get; set; }
|
||||
/// <summary>
|
||||
/// 综合结果
|
||||
/// </summary>
|
||||
[DataGridViewColumn(Name = "OutResult")]
|
||||
public string Result { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 备注
|
||||
/// </summary>
|
||||
[DataGridViewColumn(Name = "OutRemark")]
|
||||
public string Remark { get; set; }
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user