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.
62 lines
1.5 KiB
C#
62 lines
1.5 KiB
C#
using Estsh.Core.Base;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Estsh.Core.Models
|
|
{
|
|
/// <summary>
|
|
/// JIT生产队列
|
|
/// </summary>
|
|
[Serializable]
|
|
public class MesWmsHgWorkOrderInterface
|
|
{
|
|
[Column("order_no")]
|
|
[DisplayName(" ")]
|
|
public string order_no { get; set; }
|
|
|
|
[Column("order_type")]
|
|
[DisplayName(" ")]
|
|
public string order_type { get; set; }
|
|
|
|
[Column("order_seq")]
|
|
[DisplayName(" ")]
|
|
public string order_seq { get; set; }
|
|
|
|
[Column("part_no")]
|
|
[DisplayName(" ")]
|
|
public string part_no { get; set; }
|
|
|
|
[Column("qty")]
|
|
[DisplayName(" ")]
|
|
public string? qty { get; set; }
|
|
|
|
[Column("pdline_code")]
|
|
[DisplayName(" ")]
|
|
public string pdline_code { get; set; }
|
|
|
|
[Column("customer_code")]
|
|
[DisplayName(" ")]
|
|
public string customer_code { get; set; }
|
|
|
|
[Column("cust_order_no")]
|
|
[DisplayName(" ")]
|
|
public string cust_order_no { get; set; }
|
|
|
|
[Column("vin_code")]
|
|
[DisplayName(" ")]
|
|
public string vin_code { get; set; }
|
|
|
|
[Column("vehicle_no")]
|
|
[DisplayName(" ")]
|
|
public string vehicle_no { get; set; }
|
|
|
|
[Column("vehicle_name")]
|
|
[DisplayName(" ")]
|
|
public string vehicle_name { get; set; }
|
|
|
|
[Column("factory_code")]
|
|
[DisplayName(" ")]
|
|
public string factory_code { get; set; }
|
|
}
|
|
}
|