mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-06-28 13:34:32 +08:00
13 lines
267 B
C#
13 lines
267 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace SqlSugar.MongoDb
|
|
{
|
|
public class MongoDbBase
|
|
{
|
|
[SugarColumn(IsPrimaryKey =true,IsOnlyIgnoreInsert =true,ColumnName ="_id")]
|
|
public string Id { get; set; }
|
|
}
|
|
}
|