SqlSugar/Src/Asp.NetCore2/XuGuTest/T_User2.cs

20 lines
487 B
C#
Raw Permalink Normal View History

2024-12-09 16:38:40 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Data.Model
{
2024-12-12 13:53:01 +08:00
[SqlSugar.SugarTable("T_User2222")]
2024-12-09 16:38:40 +08:00
public class T_User2
{
2024-12-12 13:53:01 +08:00
[SqlSugar.SugarColumn(IsPrimaryKey =true,IsIdentity =true)]
public int id { get; set; }
2024-12-09 17:07:27 +08:00
[SqlSugar.SugarColumn(DefaultValue = "0", ColumnDescription = "aaa")]
public int number { get; set; }
2024-12-12 13:53:01 +08:00
public string table { get; set; }
2024-12-09 16:38:40 +08:00
}
}