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>
/// ,数据实体对象
/// </summary>
[Table("wms_pulling_order")]
[Serializable]
public class WmsPullingOrder : BaseEntity
{
[Column("ruid")]
[DisplayName(" ")]
public int Ruid { get; set; }
[Column("order_no")]
[DisplayName(" ")]
public string OrderNo { get; set; }
[Column("pulling_type")]
[DisplayName(" ")]
public int PullingType { get; set; }
[Column("order_status")]
[DisplayName(" ")]
public int OrderStatus { get; set; }
[Column("pulling_seq")]
[DisplayName(" ")]
public int PullingSeq { get; set; }
[Column("group_code")]
[DisplayName(" ")]
public string GroupCode { get; set; }
[Column("group_name")]
[DisplayName(" ")]
public string GroupName { get; set; }
[Column("work_order_no")]
[DisplayName(" ")]
public string WorkOrderNo { get; set; }
[Column("cust_order_no")]
[DisplayName(" ")]
public string CustOrderNo { get; set; }
[Column("printed")]
[DisplayName(" ")]
public int? Printed { get; set; }
[Column("print_date")]
[DisplayName(" ")]
public DateTime? PrintDate { get; set; }
[Column("reprint_count")]
[DisplayName(" ")]
public int? ReprintCount { get; set; }
[Column("pdline_id")]
[DisplayName(" ")]
public int? PdlineId { get; set; }
[Column("pdline_code")]
[DisplayName(" ")]
public string PdlineCode { get; set; }
}
}