📄 model.cs
字号:
using System;
using System.Collections.Generic;
using System.Text;
namespace 异库数据导出工具
{
class Model
{
private string _Name="";
private int _Len=0;
private string _Type="";
private string _OldName="";
private int _OldLen=0;
private string _OldType="";
/// <summary>
/// 目标源——字段名
/// </summary>
public string Name
{
get
{
return _Name;
}
set
{
_Name = value;
}
}
/// <summary>
/// 目标源——长度
/// </summary>
public int Len
{
get
{
return _Len;
}
set
{
_Len = value;
}
}
/// <summary>
/// 目标源——类型
/// </summary>
public string Type
{
get
{
return _Type;
}
set
{
_Type = value;
}
}
/// <summary>
/// 原始数据源——字段名
/// </summary>
public string OldName
{
get
{
return _OldName;
}
set
{
_OldName = value;
}
}
/// <summary>
/// 原始数据源——长度
/// </summary>
public int OldLen
{
get
{
return _OldLen;
}
set
{
_OldLen = value;
}
}
/// <summary>
/// 原始数据源——类型
/// </summary>
public string OldType
{
get
{
return _OldType;
}
set
{
_OldType = value;
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -