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