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#
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_outPdline_detection")]
|
|
[Serializable]
|
|
public class GOutpdlineDetection : BaseEntity
|
|
{
|
|
[Column("ruid")]
|
|
[DisplayName(" ")]
|
|
public int Ruid { get; set; }
|
|
|
|
[Column("type_code")]
|
|
[DisplayName(" ")]
|
|
public string TypeCode { get; set; }
|
|
|
|
[Column("model_name")]
|
|
[DisplayName(" ")]
|
|
public string ModelName { get; set; }
|
|
|
|
[Column("model_spec")]
|
|
[DisplayName(" ")]
|
|
public string ModelSpec { get; set; }
|
|
|
|
[Column("part_no")]
|
|
[DisplayName(" ")]
|
|
public string PartNo { get; set; }
|
|
|
|
[Column("part_spec")]
|
|
[DisplayName(" ")]
|
|
public string PartSpec { get; set; }
|
|
|
|
[Column("PF_DJC")]
|
|
[DisplayName(" ")]
|
|
public string PfDjc { get; set; }
|
|
|
|
[Column("QP_DJC")]
|
|
[DisplayName(" ")]
|
|
public string QpDjc { get; set; }
|
|
|
|
[Column("QP_IMS")]
|
|
[DisplayName(" ")]
|
|
public string QpIms { get; set; }
|
|
|
|
[Column("QP_JYF")]
|
|
[DisplayName(" ")]
|
|
public string QpJyf { get; set; }
|
|
|
|
[Column("QP_TLL")]
|
|
[DisplayName(" ")]
|
|
public string QpTll { get; set; }
|
|
|
|
[Column("QP_SBR")]
|
|
[DisplayName(" ")]
|
|
public string QpSbr { get; set; }
|
|
|
|
[Column("QP_SJYX")]
|
|
[DisplayName(" ")]
|
|
public string QpSjyx { get; set; }
|
|
|
|
[Column("QM_TLL")]
|
|
[DisplayName(" ")]
|
|
public string QmTll { get; set; }
|
|
|
|
[Column("QM_DJC")]
|
|
[DisplayName(" ")]
|
|
public string QmDjc { get; set; }
|
|
|
|
[Column("QE_DJC")]
|
|
[DisplayName(" ")]
|
|
public string QeDjc { get; set; }
|
|
|
|
|
|
}
|
|
}
|