sunkaixuan
8 years ago
3 changed files with 59 additions and 0 deletions
@ -0,0 +1,44 @@ |
|||
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;} |
|||
|
|||
} |
|||
} |
Loading…
Reference in new issue