<output id="qn6qe"></output>

    1. <output id="qn6qe"><tt id="qn6qe"></tt></output>
    2. <strike id="qn6qe"></strike>

      亚洲 日本 欧洲 欧美 视频,日韩中文字幕有码av,一本一道av中文字幕无码,国产线播放免费人成视频播放,人妻少妇偷人无码视频,日夜啪啪一区二区三区,国产尤物精品自在拍视频首页,久热这里只有精品12

      Slash

      習慣在追逐的過程中不斷去完善自己;當你不再去追逐,你自我完善的腳步也就停滯下來了。

      導航

      UserData.cs

        1/////////////////////////////
        2//File:UserData.cs
        3//Data Created:2006年10月2日
        4//Created by:Slash
        5/////////////////////////////
        6namespace FreeZone.Common.Data 
        7{
        8    using System;
        9    using System.Data;
       10    using System.Runtime.Serialization;
       11    
       12    /// <summary>
       13    ///     A custom serializable dataset containing order information.
       14    ///     <remarks>
       15    ///         This class is used to define the shape of OrderData.
       16    ///     </remarks>
       17    ///     <remarks>
       18    ///         The serializale constructor allows objects of type OrderData to be remoted.
       19    ///     </remarks>
       20    /// </summary>

       21    [System.ComponentModel.DesignerCategoryAttribute("Code")]
       22    [SerializableAttribute]
       23    public class UserData : DataSet
       24    {
       25        
       26        
       27        //
       28        //User items table constants
       29        //
       30        ///<value>The constant used for User table.</value>
       31        public const String USER_TABLE = "User";
       32        ///<value>The constant used for PKID field in the User table.</value>
       33        public const String PKID_FIELD = "PKID";        
       34        ///<value>The constant used for UserName field in the User table.</value>
       35        public const String USERNAME_FIELD = "UserName";        
       36        ///<value>The constant used for Password field in the User table.</value>
       37        public const String PASSWORD_FIELD = "Password";        
       38        ///<value>The constant used for NickName field in the User table.</value>
       39        public const String NICKNAME_FIELD = "NickName";        
       40        ///<value>The constant used for Sex field in the User table.</value>
       41        public const String SEX_FIELD = "Sex";        
       42        ///<value>The constant used for Email field in the User table.</value>
       43        public const String EMAIL_FIELD = "Email";        
       44        ///<value>The constant used for Face field in the User table.</value>
       45        public const String FACE_FIELD = "Face";        
       46        ///<value>The constant used for EMoney field in the User table.</value>
       47        public const String EMONEY_FIELD = "EMoney";        
       48        ///<value>The constant used for Score field in the User table.</value>
       49        public const String SCORE_FIELD = "Score";        
       50        ///<value>The constant used for Credit field in the User table.</value>
       51        public const String CREDIT_FIELD = "Credit";        
       52        ///<value>The constant used for LevelUp field in the User table.</value>
       53        public const String LEVELUP_FIELD = "LevelUp";        
       54        ///<value>The constant used for UpdateTime field in the User table.</value>
       55        public const String UPDATETIME_FIELD = "UpdateTime";        
       56        ///<value>The constant used for IsAvailable field in the User table.</value>
       57        public const String ISAVAILABLE_FIELD = "IsAvailable";        
       58        ///<value>The constant used for RoleID field in the User table.</value>
       59        public const String ROLEID_FIELD = "RoleID";        
       60        
       61        //
       62        //UserInfo items table constants
       63        //
       64        ///<value>The constant used for UserInfo table.</value>
       65        public const String USERINFO_TABLE = "UserInfo";
       66        ///<value>The constant used for PKID field in the UserInfo table.</value>
       67        public const String PKID_FIELD = "PKID";        
       68        ///<value>The constant used for UserID field in the UserInfo table.</value>
       69        public const String USERID_FIELD = "UserID";        
       70        ///<value>The constant used for Name field in the UserInfo table.</value>
       71        public const String NAME_FIELD = "Name";        
       72        ///<value>The constant used for Oicq field in the UserInfo table.</value>
       73        public const String OICQ_FIELD = "Oicq";        
       74        ///<value>The constant used for MSN field in the UserInfo table.</value>
       75        public const String MSN_FIELD = "MSN";        
       76        ///<value>The constant used for InTime field in the UserInfo table.</value>
       77        public const String INTIME_FIELD = "InTime";        
       78        ///<value>The constant used for TotalLogins field in the UserInfo table.</value>
       79        public const String TOTALLOGINS_FIELD = "TotalLogins";        
       80        ///<value>The constant used for TotalTopics field in the UserInfo table.</value>
       81        public const String TOTALTOPICS_FIELD = "TotalTopics";        
       82        ///<value>The constant used for TotalReplys field in the UserInfo table.</value>
       83        public const String TOTALREPLYS_FIELD = "TotalReplys";        
       84        
       85        //
       86        //UserOnLine items table constants
       87        //
       88        ///<value>The constant used for UserOnLine table.</value>
       89        public const String USERONLINE_TABLE = "UserOnLine";
       90        ///<value>The constant used for UserID field in the UserOnLine table.</value>
       91        public const String USERID_FIELD = "UserID";        
       92        ///<value>The constant used for LastActivity field in the UserOnLine table.</value>
       93        public const String LASTACTIVITY_FIELD = "LastActivity";        
       94        ///<value>The constant used for IPAddress field in the UserOnLine table.</value>
       95        public const String IPADDRESS_FIELD = "IPAddress";        
       96        
       97        /// <summary>
       98        ///     Constructor to support serialization.
       99        ///     <remarks>Constructor that supports serialization.</remarks> 
      100        ///     <param name="info">The SerializationInfo object to read from.</param>
      101        ///     <param name="context">Information on who is calling this method.</param>
      102        /// </summary>

      103        private UserData(SerializationInfo info,StreamingContext context):base(info,context)
      104        {
      105        }

      106        
      107        /// <summary>
      108        ///     Constructor for UserData.  
      109        ///     <remarks>Initialize a UserDatainstance by building the table schema.</remarks> 
      110        /// </summary>

      111        public UserData
      112        {
      113            //
      114            //Create the tables in the dataset
      115            //
      116            BuildDataTables();
      117        }

      118        
      119        ///----------------------------------------------------------------
      120        /// Sub BuildDataTables:
      121        ///  Creates the following datatables:  OrderItems, OrderSummary, 
      122        ///   Customer, ShippingAddress, Payment, Order
      123        ///----------------------------------------------------------------

      124        private void BuildDataTables()
      125        {
      126            ///
      127            ///create the User items table.
      128            ///

      129            DataTable table=new DataTable(User);
      130            DataColumnCollection columns=table.Columns;
      131            
      132                columns.Add(PKID,typeof(System.Int32));
      133                columns.Add(UserName,typeof(System.String));
      134                columns.Add(Password,typeof(System.String));
      135                columns.Add(NickName,typeof(System.String));
      136                columns.Add(Sex,typeof(System.Boolean));
      137                columns.Add(Email,typeof(System.String));
      138                columns.Add(Face,typeof(System.String));
      139                columns.Add(EMoney,typeof(System.Int32));
      140                columns.Add(Score,typeof(System.Int32));
      141                columns.Add(Credit,typeof(System.Int32));
      142                columns.Add(LevelUp,typeof(System.Int32));
      143                columns.Add(UpdateTime,typeof(System.DataTime));
      144                columns.Add(IsAvailable,typeof(System.Boolean));
      145                columns.Add(RoleID,typeof(System.Int32));
      146                columns.Add(PKID,typeof(System.Int32));
      147                columns.Add(UserID,typeof(System.Int32));
      148                columns.Add(Name,typeof(System.String));
      149                columns.Add(Oicq,typeof(System.String));
      150                columns.Add(MSN,typeof(System.String));
      151                columns.Add(InTime,typeof(System.DataTime));
      152                columns.Add(TotalLogins,typeof(System.Int32));
      153                columns.Add(TotalTopics,typeof(System.Int32));
      154                columns.Add(TotalReplys,typeof(System.Int32));
      155                columns.Add(UserID,typeof(System.Int32));
      156                columns.Add(LastActivity,typeof(System.DataTime));
      157                columns.Add(IPAddress,typeof(System.String));
      158            this.Tables.Add(table);
      159        }

      160            
      161    }

      162}

      163

      posted on 2006-10-02 16:53  Slash  閱讀(532)  評論(0)    收藏  舉報

      主站蜘蛛池模板: gogogo高清在线播放免费| 清水河县| 欧美一进一出抽搐大尺度视频| 福利一区二区视频在线| 国产成人无码区免费内射一片色欲| 97在线碰| 国产成人精品一区二区三区| 午夜福利日本一区二区无码| 野花香视频在线观看免费高清版| 国产偷国产偷亚洲高清午夜| 国产精品无码成人午夜电影| 精品无码国产日韩制服丝袜| 免费无遮挡毛片中文字幕| 在线中文字幕亚洲日韩2020| 国产日韩av二区三区| 免费人妻无码不卡中文字幕18禁| 国产亚洲综合一区二区三区| 久久精品夜夜夜夜夜久久| 久久国产精品伊人青青草| 亚洲国产精品久久久天堂麻豆宅男 | 中年国产丰满熟女乱子正在播放| 果冻传媒一区二区天美传媒| 综合色久七七综合尤物| 亚洲欧美高清在线精品一区二区 | 天堂影院一区二区三区四区| 免费看黄片一区二区三区| 亚洲日韩国产二区无码| 中文字幕在线精品视频入口一区| 2020精品自拍视频曝光| 国产精品国产三级国产专业| 毛多水多高潮高清视频| 色综合久久夜色精品国产| 成人国产精品一区二区网站公司| 乱人伦人妻中文字幕| 久操热在线视频免费观看 | 中文日产幕无线码一区中文| 国产精品午夜福利精品| 亚洲欧洲av一区二区久久| 人人妻人人妻人人片色av| 激情 自拍 另类 亚洲| 国内少妇人妻偷人精品|