using Estsh.Core.Base; using System.ComponentModel; using System.ComponentModel.DataAnnotations.Schema; namespace Estsh.Core.Models { /// /// ,数据实体对象 /// [Table("SI_PB")] [Serializable] public class SiPb : BaseEntity { [Column("PBNO")] [DisplayName(" ")] public string Pbno { get; set; } [Column("PBNAME")] [DisplayName(" ")] public string Pbname { get; set; } [Column("UPDUSR")] [DisplayName(" ")] public string Updusr { get; set; } [Column("UPDYMD")] [DisplayName(" ")] public string Updymd { get; set; } [Column("UPDHMS")] [DisplayName(" ")] public string Updhms { get; set; } } }