公告板
版本库
filestore
活动
搜索
登录
main
/
RRHaig_MVC
仁慧眼_系统后端
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
Initial Backup
admin
2024-09-20
8b7b39172ee548ff303dbd73816cb7c1071f7887
[RRHaig_MVC.git]
/
RiskControl.NewService
/
Entity
/
BaseEntity.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
using SqlSugar;
namespace RiskControl.NewService.Entity
{
public class BaseEntity
{
/// <summary>
/// 自增主键
/// </summary>
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int Id { get; set; }
}
}