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.

54 lines
1.3 KiB
C#

using Estsh.Core.Base;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations.Schema;
namespace Estsh.Core.Models
{
/// <summary>
/// 成品下线-滑轨
/// </summary>
[Serializable]
public class MesWmsHgOutPdlineInterface
{
[Column("work_order_no")]
[DisplayName(" ")]
public string work_order_no { get; set; }
[Column("pdline_code")]
[DisplayName(" ")]
public string pdline_code { get; set; }
[Column("part_no")]
[DisplayName(" ")]
public string part_no { get; set; }
[Column("serial_number")]
[DisplayName(" ")]
public string serial_number { get; set; }
[Column("qty")]
[DisplayName(" ")]
public string Qty { get; set; }
[Column("lot_no")]
[DisplayName(" ")]
public string lot_no { get; set; }
[Column("product_type")]
[DisplayName(" ")]
public string product_type { get; set; }
[Column("product_version")]
[DisplayName(" ")]
public string product_version { get; set; }
[Column("factory_code")]
[DisplayName(" ")]
public string factory_code { get; set; }
[Column("IsRejects")]
[DisplayName(" ")]
public string IsRejects { get; set; }
}
}