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,25 @@
using SqlSugar;
using System.ComponentModel.DataAnnotations.Schema;
namespace TestDemo.Entitys
{
[SugarTable("person_job_title")]
public class PersonJobTitle
{
[SugarColumn(ColumnName = "id", IsPrimaryKey = true)]
public int Id { get; set; }
/// <summary>
/// 人员Id
/// </summary>
[SugarColumn(ColumnName = "person_id")]
public int PersonId { get; set; }
/// <summary>
/// 证书编号
///</summary>
[SugarColumn(ColumnName = "cert_no")]
public string CertNo { get; set; }
}
}