mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-05-16 04:59:34 +08:00
13 lines
271 B
C#
13 lines
271 B
C#
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; }
|
|
}
|
|
}
|