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.

83 lines
2.0 KiB
C#

using Estsh.Core.Base;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations.Schema;
namespace Estsh.Core.Models
{
/// <summary>
/// JIT生产队列
/// </summary>
[Table("MES_WMS_WORK_ORDER")]
[Serializable]
public class MesWmsWorkOrder : 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 string 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; }
[Column("is_wings")]
[DisplayName(" ")]
public int? IsWings { get; set; }
[Column("car_no")]
[DisplayName(" ")]
public string CarNo { get; set; }
[Column("move_group_no")]
[DisplayName(" ")]
public string MoveGroupNo { get; set; }
}
}