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.

61 lines
1.5 KiB
C#

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using Estsh.Core.Base;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations.Schema;
namespace Estsh.Core.Models
{
/// <summary>
/// ,数据实体对象
/// </summary>
[Table("g_order_detail")]
[Serializable]
public class GOrderDetail : BaseEntity
{
[Column("ruid")]
[DisplayName(" ")]
public int Ruid { get; set; }
[Column("order_id")]
[DisplayName("排序单编号")]
public int OrderId { get; set; }
[Column("tray_seq")]
[DisplayName(" ")]
public int? TraySeq { get; set; }
[Column("tray_no")]
[DisplayName(" ")]
public string TrayNo { get; set; }
[Column("tray_flag")]
[DisplayName(" ")]
public int? TrayFlag { get; set; }
[Column("status")]
[DisplayName("匹配状态(-1=匹配错误0=未匹配1=匹配成功2=已释放3=已放空)")]
public int Status { get; set; }
[Column("part_type")]
[DisplayName(" ")]
public string PartType { get; set; }
[Column("cust_line_no")]
[DisplayName(" ")]
public string CustLineNo { get; set; }
[Column("print_seq")]
[DisplayName(" ")]
public string PrintSeq { get; set; }
[Column("on_line_time")]
[DisplayName(" ")]
public string OnLineTime { get; set; }
[Column("ship_status")]
[DisplayName(" ")]
public int? ShipStatus { get; set; }
}
}