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.

54 lines
1.4 KiB
C#

using Estsh.Core.Base;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations.Schema;
namespace Estsh.Core.Model.ExcelModel
{
/// <summary>
///配置管理
/// </summary>
[Serializable]
public class ModelPart
{
[Column("model_code")]
[DisplayName("配置代码")]
public string ModelCode { get; set; }
[Column("model_type")]
[DisplayName("配置类别")]
public string ModelType { get; set; }
[Column("model_name")]
[DisplayName("配置名称")]
public string ModelName { get; set; }
[Column("model_alias")]
[DisplayName("配置别名")]
public string ModelAlias { get; set; }
[Column("model_desc")]
[DisplayName("配置描述")]
public string ModelDesc { get; set; }
[Column("type_name")]
[DisplayName("车型名称")]
public string TypeName { get; set; }
[Column("customer_id")]
[DisplayName("总成数量(7或5)")]
public string CustomerId { get; set; }
[Column("enabled")]
[DisplayName("配置状态")]
public string Enabled { get; set; }
[Column("pdline1")]
[DisplayName("左产线订单下发占比")]
public string Pdline1 { get; set; }
[Column("pdline2")]
[DisplayName("右产线订单下发占比")]
public string Pdline2 { get; set; }
}
}