iditem.cs
来自「.net的数据持久层」· CS 代码 · 共 27 行
CS
27 行
using System;
namespace Platform.Data {
public class IdItem {
private string _TableName;
private int _Id;
public IdItem() { }
public IdItem(string tableName, int id) {
this.TableName = tableName;
this.Id = id;
}
public string TableName {
get { return _TableName; }
set { _TableName = value; }
}
public int Id {
get { return _Id; }
set { _Id = value; }
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?