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.

73 lines
1.7 KiB
C#

using Estsh.Core.Base;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations.Schema;
namespace Estsh.Core.Models
{
/// <summary>
/// JIT生产队列
/// </summary>
[Table("Mes_Wms_Hg_Work_Order")]
[Serializable]
public class MesWmsHgWorkOrder : BaseEntity
{
[Column("work_order_no")]
[DisplayName(" ")]
public string WorkOrderNo { get; set; }
[Column("order_type")]
[DisplayName(" ")]
public int OrderType { get; set; }
[Column("order_seq")]
[DisplayName(" ")]
public int OrderSeq { get; set; }
[Column("pdline_code")]
[DisplayName(" ")]
public string PdlineCode { get; set; }
[Column("part_no")]
[DisplayName(" ")]
public string PartNo { get; set; }
[Column("qty")]
[DisplayName(" ")]
public decimal? Qty { get; set; }
[Column("customer_code")]
[DisplayName(" ")]
public string CustomerCode { get; set; }
[Column("cust_order_no")]
[DisplayName(" ")]
public string CustOrderNo { get; set; }
[Column("vin_code")]
[DisplayName(" ")]
public string VinCode { get; set; }
[Column("syn_flg")]
[DisplayName(" ")]
public int SynFlg { get; set; }
[Column("syn_time")]
[DisplayName(" ")]
public string SynTime { get; set; }
[Column("err_msg")]
[DisplayName(" ")]
public string ErrMsg { get; set; }
[Column("vehicle_no")]
[DisplayName(" ")]
public string VehicleNo { get; set; }
[Column("vehicle_name")]
[DisplayName(" ")]
public string VehicleName { get; set; }
}
}