ch
2022-05-30 f9ef44a67fbf73f073efe65600bc25e204fde04f
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
using System;
using System.Collections.Generic;
using System.Text;
 
namespace DBUtility
{
    public class ClsGy_SelfEntry 
    { 
 
        public Int64 HSno;                    //´ÎÐò
        public string HType;                //ÀàÐÍ
        public string HCaption;                //varchar(50)    --×Ö¶ÎÃèÊö
        public string HSQLColumnName;        //varchar(50)    --×Ö¶ÎÃû³Æ
        public string HDataType;            //varchar(50) --Êý¾ÝÀàÐÍ£¨×Ö·û£¬ÊµÊý£¬½ð¶î£¬Âß¼­,ÈÕÆÚ£¬ÕûÊý£©
        public Int64 HLength;                    //int    --³¤¶È 
        public int HDisplayNo;              //ÏÔʾÁкÅ
 
        public bool HSys;                    //    bit    --ϵͳ×Ö¶Î
        public string HDefaultValue;        //    varchar(50)    --ĬÈÏÖµ
        public string HSearch;                //    varchar(10)    --»ù´¡×ÊÁÏË÷Òý
        public bool HMustSave;                //    bit    --±ØÂ¼Ïî
        public string HSearchTable;            //    varchar(50)    --Ë÷Òý±í
        public string HTable;                //    varchar(50)    --Êý¾Ý±í
    }
}