Update Mongodb

This commit is contained in:
sunkaixuan
2025-05-05 11:34:24 +08:00
parent 2b2add7e5a
commit 21accea1bc
4 changed files with 88 additions and 205 deletions

View File

@@ -0,0 +1,12 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace SqlSugar.MongoDbCore
{
public class MongoDbBase
{
[SugarColumn(IsPrimaryKey =true,IsOnlyIgnoreInsert =true,ColumnName ="_id")]
public string Id { get; set; }
}
}