You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
864 B
C#
34 lines
864 B
C#
using Estsh.Core.Base;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Estsh.Core.Model.ExcelModel
|
|
{
|
|
/// <summary>
|
|
///生产指令调整
|
|
/// </summary>
|
|
[Serializable]
|
|
public class SerialNumberQuery2
|
|
{
|
|
[Column("serial_number")]
|
|
[DisplayName("条码")]
|
|
public string SerialNumber { get; set; }
|
|
|
|
[Column("keydata_desc")]
|
|
[DisplayName("采集工位")]
|
|
public string KeydataDesc { get; set; }
|
|
|
|
[Column("Keydata_value")]
|
|
[DisplayName("数值")]
|
|
public string KeydataValue { get; set; }
|
|
|
|
[Column("create_time")]
|
|
[DisplayName("采集日期")]
|
|
public string CreateTime { get; set; }
|
|
|
|
[Column("Keydata_result")]
|
|
[DisplayName("结果")]
|
|
public string KeydataResult { get; set; }
|
|
}
|
|
}
|