mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-04-24 18:04:52 +08:00
45 lines
930 B
C#
45 lines
930 B
C#
![]() |
using System;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace OrmTest.Models
|
|||
|
{
|
|||
|
///<summary>
|
|||
|
///
|
|||
|
///</summary>
|
|||
|
public class DataTestInfo2
|
|||
|
{
|
|||
|
public DataTestInfo2(){
|
|||
|
|
|||
|
}
|
|||
|
/// <summary>
|
|||
|
/// Desc:
|
|||
|
/// Default:
|
|||
|
/// Nullable:False
|
|||
|
/// </summary>
|
|||
|
public Guid PK {get;set;}
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Desc:
|
|||
|
/// Default:
|
|||
|
/// Nullable:False
|
|||
|
/// </summary>
|
|||
|
public bool Bool1 {get;set;}
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Desc:
|
|||
|
/// Default:
|
|||
|
/// Nullable:True
|
|||
|
/// </summary>
|
|||
|
public bool? Bool2 {get;set;}
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Desc:
|
|||
|
/// Default:
|
|||
|
/// Nullable:True
|
|||
|
/// </summary>
|
|||
|
public string Text1 {get;set;}
|
|||
|
|
|||
|
}
|
|||
|
}
|