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#

using Estsh.Core.Base;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations.Schema;
namespace Estsh.Core.Models
{
/// <summary>
/// 成品下线-滑轨
/// </summary>
[Table("MES_HG_WMS_OUT_PDLINE")]
[Serializable]
public class MesWmsHgOutPdline : BaseEntity
{
[Column("work_order_no")]
[DisplayName(" ")]
public string WorkOrderNo { get; set; }
[Column("pdline_code")]
[DisplayName(" ")]
public string PdlineCode { get; set; }
[Column("part_no")]
[DisplayName(" ")]
public string PartNo { get; set; }
[Column("serial_number")]
[DisplayName(" ")]
public string SerialNumber { get; set; }
[Column("qty")]
[DisplayName(" ")]
public decimal? Qty { get; set; }
[Column("lot_no")]
[DisplayName(" ")]
public string LotNo { get; set; }
[Column("product_type")]
[DisplayName(" ")]
public int ProductType { get; set; }
[Column("product_version")]
[DisplayName(" ")]
public string ProductVersion { 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("IsRejects")]
[DisplayName(" ")]
public string IsRejects { get; set; }
}
}