架构B/S四 Model 实体类

来源:互联网 发布:表白扣字软件 编辑:程序博客网 时间:2024/05/16 17:56

2008-04-10 10:30

using System;
namespace CoalTraffic.Model
{
///


/// 实体类T_User 。(属性说明自动提取数据库字段的描述信息)
///

public class T_User
{
   public T_User()
   {}
   #region Model
   private string _usercode;
   private string _username;
   private string _passwd;
   private string _sex;
   private string _usertype;
   private string _position;
   private string _telephone;
   private string _email;
   private string _address;
   private string _departcode;
   private string _systype;
   private string _isforbid;
   private string _remark;
   ///
   ///
   ///

   public string UserCode
   {
   set{ _usercode=value;}
   get{return _usercode;}
   }
   ///
   ///
   ///

   public string UserName
   {
   set{ _username=value;}
   get{return _username;}
   }
   ///
   ///
   ///

   public string Passwd
   {
   set{ _passwd=value;}
   get{return _passwd;}
   }
   ///
   ///
   ///

   public string Sex
   {
   set{ _sex=value;}
   get{return _sex;}
   }
   ///
   ///
   ///

   public string UserType
   {
   set{ _usertype=value;}
   get{return _usertype;}
   }
   ///
   ///
   ///

   public string Position
   {
   set{ _position=value;}
   get{return _position;}
   }
   ///
   ///
   ///

   public string Telephone
   {
   set{ _telephone=value;}
   get{return _telephone;}
   }
   ///
   ///
   ///

   public string Email
   {
   set{ _email=value;}
   get{return _email;}
   }
   ///
   ///
   ///

   public string Address
   {
   set{ _address=value;}
   get{return _address;}
   }
   ///
   ///
   ///

   public string DepartCode
   {
   set{ _departcode=value;}
   get{return _departcode;}
   }
   ///
   ///
   ///

   public string SysType
   {
   set{ _systype=value;}
   get{return _systype;}
   }
   ///
   ///
   ///

   public string IsForbid
   {
   set{ _isforbid=value;}
   get{return _isforbid;}
   }
   ///
   ///
   ///

   public string Remark
   {
   set{ _remark=value;}
   get{return _remark;}
   }
   #endregion Model

}
}