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.

82 lines
2.0 KiB
C#

using Estsh.Core.Base;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations.Schema;
namespace Estsh.Core.Models
{
/// <summary>
/// ,数据实体对象
/// </summary>
[Table("mes_work_order_part")]
[Serializable]
public class MesWorkOrderPart : BaseEntity
{
[Column("ruid")]
[DisplayName(" ")]
public long Ruid { get; set; }
[Column("order_no")]
[DisplayName(" ")]
public string OrderNo { get; set; }
[Column("part_id")]
[DisplayName(" ")]
public long PartId { get; set; }
[Column("part_no")]
[DisplayName(" ")]
public string PartNo { get; set; }
[Column("part_spec")]
[DisplayName(" ")]
public string PartSpec { get; set; }
[Column("qty")]
[DisplayName(" ")]
public decimal Qty { get; set; }
[Column("unit")]
[DisplayName(" ")]
public string Unit { get; set; }
[Column("pull_status")]
[DisplayName(" ")]
public int PullStatus { get; set; }
[Column("parent_part_id")]
[DisplayName(" ")]
public long? ParentPartId { get; set; }
[Column("parent_part_no")]
[DisplayName(" ")]
public string ParentPartNo { get; set; }
[Column("parent_part_spec")]
[DisplayName(" ")]
public string ParentPartSpec { get; set; }
[Column("remark")]
[DisplayName(" ")]
public string Remark { get; set; }
[Column("order_seq")]
[DisplayName(" ")]
public int? OrderSeq { get; set; }
[Column("car_no")]
[DisplayName(" ")]
public string CarNo { get; set; }
[Column("move_group_no")]
[DisplayName(" ")]
public string MoveGroupNo { get; set; }
#region 扩展字段
[Column("pdline_code")]
[DisplayName(" ")]
public string PdlineCode { get; set; }
#endregion
}
}