tableentity.cs

来自「2007年华中科技大学数据库课程设计参考程序[图书销售系统]+报告」· CS 代码 · 共 30 行

CS
30
字号
using System;
using System.Data;

namespace OnlineBookSell.SQLServerDAL
{
    public class TableEntity
    {
        public string name;
        public SqlDbType type;
        public int length;

        public TableEntity()
        {
        }

        public TableEntity(string name, SqlDbType type)
        {
            this.name = name;
            this.type = type;
        }

        public TableEntity(string name, SqlDbType type, int length)
        {
            this.name = name;
            this.type = type;
            this.length = length;
        }
    }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?