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.
69 lines
1.6 KiB
C#
69 lines
1.6 KiB
C#
using Estsh.Core.Base;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Estsh.Core.Models
|
|
{
|
|
/// <summary>
|
|
/// ,数据实体对象
|
|
/// </summary>
|
|
[Table("g_edi")]
|
|
[Serializable]
|
|
public class GEdi : BaseEntity
|
|
{
|
|
[Column("ruid")]
|
|
[DisplayName(" ")]
|
|
public int Ruid { get; set; }
|
|
|
|
[Column("PARTNO")]
|
|
[DisplayName(" ")]
|
|
public string Partno { get; set; }
|
|
|
|
[Column("PASSTIME")]
|
|
[DisplayName(" ")]
|
|
public string Passtime { get; set; }
|
|
|
|
[Column("PNRSTRING")]
|
|
[DisplayName(" ")]
|
|
public string Pnrstring { get; set; }
|
|
|
|
[Column("PNRSTRINGS")]
|
|
[DisplayName(" ")]
|
|
public string Pnrstrings { get; set; }
|
|
|
|
[Column("GROES")]
|
|
[DisplayName(" ")]
|
|
public string Groes { get; set; }
|
|
|
|
[Column("VIN")]
|
|
[DisplayName(" ")]
|
|
public string Vin { get; set; }
|
|
|
|
[Column("customer_id")]
|
|
[DisplayName(" ")]
|
|
public int? CustomerId { get; set; }
|
|
|
|
[Column("model_id")]
|
|
[DisplayName(" ")]
|
|
public int? ModelId { get; set; }
|
|
|
|
[Column("status")]
|
|
[DisplayName(" ")]
|
|
public int? Status { get; set; }
|
|
|
|
[Column("error_message")]
|
|
[DisplayName(" ")]
|
|
public string ErrorMessage { get; set; }
|
|
|
|
[Column("DCPPOINT")]
|
|
[DisplayName(" ")]
|
|
public string Dcppoint { get; set; }
|
|
|
|
[Column("CREATEDATE")]
|
|
[DisplayName(" ")]
|
|
public string Createdate { get; set; }
|
|
|
|
|
|
}
|
|
}
|