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.
26 lines
604 B
C#
26 lines
604 B
C#
using Estsh.Core.Base;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Estsh.Core.Model.ExcelModel
|
|
{
|
|
/// <summary>
|
|
///工步管理
|
|
/// </summary>
|
|
[Serializable]
|
|
public class MesRouteGroup
|
|
{
|
|
[Column("group_id")]
|
|
[DisplayName("分组号")]
|
|
public string GroupId { get; set; }
|
|
|
|
[Column("part_no")]
|
|
[DisplayName("总成零件号")]
|
|
public string PartNo { get; set; }
|
|
|
|
[Column("part_spec")]
|
|
[DisplayName("零件号描述")]
|
|
public string PartSpec { get; set; }
|
|
}
|
|
}
|