第一步:BusinessEntity层 实例 BC_USER用户表

2008-01-12 16:44

using System;
using System.Collections.Generic;
using System.Text;

namespace BusinessEntity
{
    ///
    /// 用户表BC_USER
    ///
    /// 程序作者:蓝鱼寻找
    public class BC_USEREntity
    {

        private string _I_id;
        private string _S_loginName;
        private string _S_password;
        private string _S_name;
        private string _S_sex;
        private string _S_type;
        private string _S_position;
        private string _S_birthday;
        private string _S_tel;
        private string _S_mob;
        private string _S_card;
        private string _S_mail;
        private string _S_address;
        private string _i_shop;
        private string _S_deFlag;
        private string _i_CompanyID;
        private string _S_pswState;
        private string _I_FunctionID;
        private string _s_mymemo;
        private string _S_State;
        private string _S_AddressNow;
        private string _S_UpdateDate;
        private string _S_AuditingMoney;

        ///
        /// 获取或设置
        ///
        public string I_id
        {
            get { return _I_id; }
            set { _I_id = value; }
        }

        ///
        /// 获取或设置
        ///
        public string S_loginName
        {
            get { return _S_loginName; }
            set { _S_loginName = value; }
        }

        ///
        /// 获取或设置
        ///
        public string S_password
        {
            get { return _S_password; }
            set { _S_password = value; }
        }

        ///
        /// 获取或设置
        ///
        public string S_name
        {
            get { return _S_name; }
            set { _S_name = value; }
        }

        ///
        /// 获取或设置
        ///
        public string S_sex
        {
            get { return _S_sex; }
            set { _S_sex = value; }
        }

        ///
        /// 获取或设置
        ///
        public string S_type
        {
            get { return _S_type; }
            set { _S_type = value; }
        }

        ///
        /// 获取或设置
        ///
        public string S_position
        {
            get { return _S_position; }
            set { _S_position = value; }
        }

        ///
        /// 获取或设置
        ///
        public string S_birthday
        {
            get { return _S_birthday; }
            set { _S_birthday = value; }
        }

        ///
        /// 获取或设置
        ///
        public string S_tel
        {
            get { return _S_tel; }
            set { _S_tel = value; }
        }

        ///
        /// 获取或设置
        ///
        public string S_mob
        {
            get { return _S_mob; }
            set { _S_mob = value; }
        }

        ///
        /// 获取或设置
        ///
        public string S_card
        {
            get { return _S_card; }
            set { _S_card = value; }
        }

        ///
        /// 获取或设置
        ///
        public string S_mail
        {
            get { return _S_mail; }
            set { _S_mail = value; }
        }

        ///
        /// 获取或设置
        ///
        public string S_address
        {
            get { return _S_address; }
            set { _S_address = value; }
        }

        ///
        /// 获取或设置
        ///
        public string i_shop
        {
            get { return _i_shop; }
            set { _i_shop = value; }
        }

        ///
        /// 获取或设置
        ///
        public string S_deFlag
        {
            get { return _S_deFlag; }
            set { _S_deFlag = value; }
        }

        ///
        /// 获取或设置
        ///
        public string i_CompanyID
        {
            get { return _i_CompanyID; }
            set { _i_CompanyID = value; }
        }

        ///
        /// 获取或设置
        ///
        public string S_pswState
        {
            get { return _S_pswState; }
            set { _S_pswState = value; }
        }

        ///
        /// 获取或设置
        ///
        public string I_FunctionID
        {
            get { return _I_FunctionID; }
            set { _I_FunctionID = value; }
        }

        ///
        /// 获取或设置
        ///
        public string s_mymemo
        {
            get { return _s_mymemo; }
            set { _s_mymemo = value; }
        }

        ///
        /// 获取或设置
        ///
        public string S_State
        {
            get { return _S_State; }
            set { _S_State = value; }
        }

        ///
        /// 获取或设置
        ///
        public string S_AddressNow
        {
            get { return _S_AddressNow; }
            set { _S_AddressNow = value; }
        }

        ///
        /// 获取或设置
        ///
        public string S_UpdateDate
        {
            get { return _S_UpdateDate; }
            set { _S_UpdateDate = value; }
        }

        ///
        /// 获取或设置
        ///
        public string S_AuditingMoney
        {
            get { return _S_AuditingMoney; }
            set { _S_AuditingMoney = value; }
        }

       }

你可能感兴趣的:(第一步:BusinessEntity层 实例 BC_USER用户表)