You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
155 lines
4.0 KiB
C#
155 lines
4.0 KiB
C#
using System;
|
|
using System.Text;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
namespace DSWeb.SoftMng.Model{
|
|
//user
|
|
public class user
|
|
{
|
|
/// <summary>
|
|
/// GID
|
|
/// </summary>
|
|
private string _gid;
|
|
public string GID
|
|
{
|
|
get{ return _gid; }
|
|
set{ _gid = value; }
|
|
}
|
|
/// <summary>
|
|
/// USERNAME
|
|
/// </summary>
|
|
private string _username;
|
|
public string USERNAME
|
|
{
|
|
get{ return _username; }
|
|
set{ _username = value; }
|
|
}
|
|
/// <summary>
|
|
/// CODENAME
|
|
/// </summary>
|
|
private string _codename;
|
|
public string CODENAME
|
|
{
|
|
get{ return _codename; }
|
|
set{ _codename = value; }
|
|
}
|
|
/// <summary>
|
|
/// PASSWORD
|
|
/// </summary>
|
|
private string _password;
|
|
public string PASSWORD
|
|
{
|
|
get{ return _password; }
|
|
set{ _password = value; }
|
|
}
|
|
/// <summary>
|
|
/// SHOWNAME
|
|
/// </summary>
|
|
private string _showname;
|
|
public string SHOWNAME
|
|
{
|
|
get{ return _showname; }
|
|
set{ _showname = value; }
|
|
}
|
|
/// <summary>
|
|
/// ENROLLTIME
|
|
/// </summary>
|
|
private DateTime? _enrolltime;
|
|
public DateTime? ENROLLTIME
|
|
{
|
|
get{ return _enrolltime; }
|
|
set{ _enrolltime = value; }
|
|
}
|
|
/// <summary>
|
|
/// CREATEUSER
|
|
/// </summary>
|
|
private string _createuser;
|
|
public string CREATEUSER
|
|
{
|
|
get{ return _createuser; }
|
|
set{ _createuser = value; }
|
|
}
|
|
/// <summary>
|
|
/// MODIFIEDUSER
|
|
/// </summary>
|
|
private string _modifieduser;
|
|
public string MODIFIEDUSER
|
|
{
|
|
get{ return _modifieduser; }
|
|
set{ _modifieduser = value; }
|
|
}
|
|
/// <summary>
|
|
/// MODIFIEDTIME
|
|
/// </summary>
|
|
private DateTime? _modifiedtime;
|
|
public DateTime? MODIFIEDTIME
|
|
{
|
|
get{ return _modifiedtime; }
|
|
set{ _modifiedtime = value; }
|
|
}
|
|
/// <summary>
|
|
/// ISDELETED
|
|
/// </summary>
|
|
private bool? _isdeleted;
|
|
public bool? ISDELETED
|
|
{
|
|
get{ return _isdeleted; }
|
|
set{ _isdeleted = value; }
|
|
}
|
|
/// <summary>
|
|
/// ISDISABLE
|
|
/// </summary>
|
|
private bool? _isdisable;
|
|
public bool? ISDISABLE
|
|
{
|
|
get{ return _isdisable; }
|
|
set{ _isdisable = value; }
|
|
}
|
|
/// <summary>
|
|
/// DELETEUSER
|
|
/// </summary>
|
|
private string _deleteuser;
|
|
public string DELETEUSER
|
|
{
|
|
get{ return _deleteuser; }
|
|
set{ _deleteuser = value; }
|
|
}
|
|
/// <summary>
|
|
/// DELETETIME
|
|
/// </summary>
|
|
private DateTime? _deletetime;
|
|
public DateTime? DELETETIME
|
|
{
|
|
get{ return _deletetime; }
|
|
set{ _deletetime = value; }
|
|
}
|
|
/// <summary>
|
|
/// NOCODE
|
|
/// </summary>
|
|
private string _nocode;
|
|
public string NOCODE
|
|
{
|
|
get{ return _nocode; }
|
|
set{ _nocode = value; }
|
|
}
|
|
/// <summary>
|
|
/// OPENID
|
|
/// </summary>
|
|
private string _openid;
|
|
public string OPENID
|
|
{
|
|
get{ return _openid; }
|
|
set{ _openid = value; }
|
|
}
|
|
/// <summary>
|
|
/// WeChatAccount
|
|
/// </summary>
|
|
private string _wechataccount;
|
|
public string WeChatAccount
|
|
{
|
|
get{ return _wechataccount; }
|
|
set{ _wechataccount = value; }
|
|
}
|
|
}
|
|
}
|