using Estsh.Core.Base; using System.ComponentModel; using System.ComponentModel.DataAnnotations.Schema; namespace Estsh.Core.Models { /// /// ,数据实体对象 /// [Table("g_edi_model_relationship")] [Serializable] public class GEdiModelRelationship : BaseEntity { [Column("ruid")] [DisplayName(" ")] public int Ruid { get; set; } [Column("model_id")] [DisplayName(" ")] public int? ModelId { get; set; } [Column("edi_model_name")] [DisplayName(" ")] public string EdiModelName { get; set; } } }