using Estsh.Core.Base; using System.ComponentModel; using System.ComponentModel.DataAnnotations.Schema; namespace Estsh.Core.Models { /// /// ,数据实体对象 /// [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; } } }