using MongoDB.Bson; using MongoDB.Bson.Serialization.Attributes; namespace Web.Core.Model.Entity; public class MDBBaseEntity { [BsonRepresentation(BsonType.ObjectId)] public String Id { get; set; } /// /// 给对象初值 /// public MDBBaseEntity() { Id = ObjectId.GenerateNewId().ToString(); } }