SqlSugar/Src/Asp.NetCore2/SqlSugar.MongoDbCore/MongoDbBase.cs

13 lines
267 B
C#
Raw Normal View History

2025-05-05 11:34:24 +08:00
using System;
using System.Collections.Generic;
using System.Text;
2025-05-11 14:19:01 +08:00
namespace SqlSugar.MongoDb
2025-05-05 11:34:24 +08:00
{
public class MongoDbBase
{
[SugarColumn(IsPrimaryKey =true,IsOnlyIgnoreInsert =true,ColumnName ="_id")]
public string Id { get; set; }
}
}