mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-04-29 19:56:43 +08:00
39 lines
758 B
C#
39 lines
758 B
C#
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;}
|
|
|
|
}
|
|
}
|