mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-07-15 14:04:44 +08:00
32 lines
559 B
C#
32 lines
559 B
C#
using System;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace MyTest
|
|
{
|
|
///<summary>
|
|
///
|
|
///</summary>
|
|
public partial class School
|
|
{
|
|
public School(){
|
|
|
|
|
|
}
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
public int Id {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string Name {get;set;}
|
|
|
|
}
|
|
}
|