You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
758 B
38 lines
758 B
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;}
|
|
|
|
}
|
|
}
|
|
|