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.
39 lines
997 B
C#
39 lines
997 B
C#
using Estsh.Core.Base;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Estsh.Core.Model.ExcelModel
|
|
{
|
|
/// <summary>
|
|
///零件关键数据
|
|
/// </summary>
|
|
[Serializable]
|
|
public class PartKeyDataDefine
|
|
{
|
|
[Column("part_no")]
|
|
[DisplayName("零件号")]
|
|
public string PartNo { get; set; }
|
|
|
|
[Column("process_name")]
|
|
[DisplayName("制程名称")]
|
|
public string ProcessName { get; set; }
|
|
|
|
[Column("terminal_name")]
|
|
[DisplayName("工位名称")]
|
|
public string TerminalName { get; set; }
|
|
|
|
[Column("item_count")]
|
|
[DisplayName("需求数量")]
|
|
public string ItemCount { get; set; }
|
|
|
|
[Column("keydata_name")]
|
|
[DisplayName("关键数据名称")]
|
|
public string KeydataName { get; set; }
|
|
|
|
[Column("torque_command")]
|
|
[DisplayName("扭矩发送指令")]
|
|
public string TorqueCommand { get; set; }
|
|
|
|
}
|
|
}
|