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.

91 lines
2.2 KiB
C#

using Estsh.Core.Base;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations.Schema;
namespace Estsh.Core.Models
{
/// <summary>
/// ,数据实体对象
/// </summary>
[Table("sys_model")]
[Serializable]
public class SysModel : BaseEntity
{
[Column("model_id")]
[DisplayName(" ")]
public int ModelId { get; set; }
[Column("model_code")]
[DisplayName(" ")]
public string ModelCode { get; set; }
[Column("model_type")]
[DisplayName(" ")]
public string ModelType { get; set; }
[Column("model_type_id")]
[DisplayName("车型编号")]
public int? ModelTypeId { get; set; }
[Column("model_name")]
[DisplayName(" ")]
public string ModelName { get; set; }
[Column("model_desc")]
[DisplayName(" ")]
public string ModelDesc { get; set; }
[Column("model_alias")]
[DisplayName(" ")]
public string ModelAlias { get; set; }
[Column("customer_id")]
[DisplayName(" ")]
public int? CustomerId { get; set; }
[Column("order_priority")]
[DisplayName(" ")]
public int? OrderPriority { get; set; }
[Column("order_qty")]
[DisplayName(" ")]
public int? OrderQty { get; set; }
[Column("roll_no")]
[DisplayName(" ")]
public int? RollNo { get; set; }
[Column("complete_check")]
[DisplayName(" ")]
public int? CompleteCheck { get; set; }
[Column("pdline_1")]
[DisplayName(" ")]
public int? Pdline1 { get; set; }
[Column("pdline_11")]
[DisplayName(" ")]
public int? Pdline11 { get; set; }
[Column("pdline_2")]
[DisplayName(" ")]
public int? Pdline2 { get; set; }
[Column("pdline_22")]
[DisplayName(" ")]
public int? Pdline22 { get; set; }
[Column("order_overflow")]
[DisplayName(" ")]
public string OrderOverflow { get; set; }
#region 扩展字段
[NotMapped]
[Column("type_name")]
[DisplayName(" ")]
public string TypeName { get; set; }
#endregion
}
}