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.

81 lines
1.9 KiB
C#

using Estsh.Core.Base;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations.Schema;
namespace Estsh.Core.Models
{
/// <summary>
/// ,数据实体对象
/// </summary>
[Table("g_stock_order")]
[Serializable]
public class GStockOrder : BaseEntity
{
[Column("order_no")]
[DisplayName(" ")]
public string OrderNo { get; set; }
[Column("factory_id")]
[DisplayName(" ")]
public int? FactoryId { get; set; }
[Column("model_type_id")]
[DisplayName(" ")]
public int? ModelTypeId { get; set; }
[Column("model_id")]
[DisplayName(" ")]
public int? ModelId { get; set; }
[Column("cust_pdline")]
[DisplayName(" ")]
public string CustPdline { get; set; }
[Column("shift_id")]
[DisplayName(" ")]
public int? ShiftId { get; set; }
[Column("qty")]
[DisplayName(" ")]
public int? Qty { get; set; }
[Column("status")]
[DisplayName(" ")]
public int Status { get; set; }
[Column("type")]
[DisplayName(" ")]
public string Type { get; set; }
[Column("document_data")]
[DisplayName(" ")]
public string DocumentData { get; set; }
[Column("stage_id")]
[DisplayName(" ")]
public int? StageId { get; set; }
[Column("batch_number")]
[DisplayName(" ")]
public string BatchNumber { get; set; }
[Column("print_count")]
[DisplayName(" ")]
public int? PrintCount { get; set; }
[Column("edi_id")]
[DisplayName(" ")]
public string EdiId { get; set; }
[Column("appoint_pdline")]
[DisplayName(" ")]
public int? AppointPdline { get; set; }
[Column("ruid")]
[DisplayName(" ")]
public int Ruid { get; set; }
}
}