This commit is contained in:
sunkaixuan
2025-08-15 09:19:41 +08:00
parent a6e33b73de
commit 02eac0e48f
7 changed files with 171 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
using SqlSugar;
using System.ComponentModel.DataAnnotations.Schema;
namespace TestDemo.Entitys
{
[SugarTable("credit_confirm_level")]
public class PersonCreditLevel
{
[SugarColumn(ColumnName = "id", IsPrimaryKey = true)]
public int Id { get; set; }
/// <summary>
/// 身份证号码
///</summary>
[SugarColumn(ColumnName = "id_card")]
public string IdCard { get; set; }
/// <summary>
/// 信用等级
///</summary>
[SugarColumn(ColumnName = "level")]
public int Level { get; set; }
}
}