using Estsh.Core.Base; using System.ComponentModel; using System.ComponentModel.DataAnnotations.Schema; namespace Estsh.Core.Models { /// /// ,数据实体对象 /// [Serializable] public class SapSuInterface { [Column("LIFNR")] [DisplayName(" ")] public string LIFNR { get; set; } [Column("NAME1")] [DisplayName(" ")] public string NAME1 { get; set; } [Column("STRAS")] [DisplayName(" ")] public string STRAS { get; set; } [Column("TELF1")] [DisplayName(" ")] public string TELF1 { get; set; } [Column("PSTL2")] [DisplayName(" ")] public string PSTL2 { get; set; } [Column("NODEL")] [DisplayName(" ")] public string NODEL { get; set; } } }