mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-05-17 05:29:33 +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; }
|
|||
|
}
|
|||
|
}
|