Blame view

sys/Hh.Mes.POJO/WebEntity/tool/TableColumnInfo.cs 735 Bytes
赖素文 authored
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
using System;
using System.Collections.Generic;
using System.Text;

namespace Hh.Mes.POJO.WebEntity.tool
{
    public class TableColumnInfo
    {
        /// <summary>
        /// 列名
        /// </summary>
        public string ColumnName { get; set; }

        /// <summary>
        /// 数据类型
        /// </summary>
        public string TypeName { get; set; }

        /// <summary>
        /// 数据长度
        /// </summary>
        public int TypeLenght { get; set; }

        /// <summary>
        /// 注释
        /// </summary>
        public string ColumnDescription { get; set; }

        /// <summary>
        /// 是否可为空
        /// </summary>
        public bool NullAble { get; set; }
    }
}