添加模块规则

This commit is contained in:
陈淳
2023-01-12 14:58:16 +08:00
parent ba84d0ead3
commit 7706126479
34 changed files with 293 additions and 134 deletions

View File

@@ -0,0 +1,19 @@
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Yi.Framework.Domain.Student.Entities
{
/// <summary>
/// 实体
/// </summary>
[SugarTable("Student")]
public class StudentEntity
{
public long Id { get; set; }
public string Name { get; set; } = string.Empty;
}
}