using System; using System.Collections.Generic; using System.Linq; using System.Runtime.Serialization; using System.Text; using System.Threading.Tasks; namespace Ewide.Nbzs.Entity { /// /// 基础实体类 /// [DataContract] public abstract partial class BaseEntity { //public BaseEntity() //{ // //CreateTime = DateTime.Now; // //LastUpdateTime = DateTime.Now; // //IsDeleted = 0; //} ////[NotUpdateField] //[Display(Name = "Id")] //[Column("Id")] //[DataMember] //public long Id { get; set; } } }