Update unit test

This commit is contained in:
sunkaixuna
2022-01-04 13:08:05 +08:00
parent c2ef56a223
commit 1b6c6dc4fb
5 changed files with 956 additions and 0 deletions

View File

@@ -0,0 +1,38 @@
using System;
using System.Linq;
using System.Text;
namespace F9.DataEntity.Entity
{
///<summary>
///
///</summary>
public partial class ExToCon
{
public ExToCon(){
}
/// <summary>
/// Desc:
/// Default:
/// Nullable:False
/// </summary>
public string Id {get;set;}
/// <summary>
/// Desc:
/// Default:
/// Nullable:False
/// </summary>
public string ExId {get;set;}
/// <summary>
/// Desc:
/// Default:
/// Nullable:False
/// </summary>
public string LcId {get;set;}
}
}