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.
DS7/DSWebMobileService/UserInfomationModule.cs

225 lines
6.2 KiB
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace DSWebMobileService
{
public class UserInfomationModule
{
private string _gid = string.Empty;
private string _username = string.Empty;
private string _codename = string.Empty;
private string _password = string.Empty;
private string _showname = string.Empty;
private DateTime _enrolltime = DateTime.Now;
private string _createuser = string.Empty;
private string _modifieduser = string.Empty;
private DateTime _modifiedtime = DateTime.Now;
private bool _isdeleted = false;
private bool _isdisable = false;
private string _deleteuser = string.Empty;
private DateTime _deletetime = DateTime.Now;
private string _year = string.Empty;
private string _month = string.Empty;
private string _day = string.Empty;
private string _hours = string.Empty;
private string _companyid = string.Empty;
private string _companyname = string.Empty;
private string _deptid = string.Empty;
private string _deptname = string.Empty;
private string _qq = string.Empty;
private string _msn = string.Empty;
private string _officephone = string.Empty;
private string _homephone = string.Empty;
private string _mobile = string.Empty;
private string _fax = string.Empty;
private string _email = string.Empty;
private string _emailbackup = string.Empty;
private string _homeaddress = string.Empty;
private string _remark = string.Empty;
private string _emerguser = string.Empty;
private string _emergphone = string.Empty;
private string _emergemail = string.Empty;
private string _postcode = string.Empty;
public string GID
{
get { return _gid; }
set { _gid = value; }
}
public string UserName
{
get { return _username; }
set { _username = value; }
}
public string CodeName
{
get { return _codename; }
set { _codename = value; }
}
public string Password
{
get { return _password; }
set { _password = value; }
}
public string ShowName
{
get { return _showname; }
set { _showname = value; }
}
public DateTime EnrollTime
{
get { return _enrolltime; }
set { _enrolltime = value; }
}
public string CreateUser
{
get { return _createuser; }
set { _createuser = value; }
}
public string ModifiedUser
{
get { return _modifieduser; }
set { _modifieduser = value; }
}
public DateTime ModifiedTime
{
get { return _modifiedtime; }
set { _modifiedtime = value; }
}
public bool IsDeleted
{
get { return _isdeleted; }
set { _isdeleted = value; }
}
public bool IsDisable
{
get { return _isdisable; }
set { _isdisable = value; }
}
public string DeleteUser
{
get { return _deleteuser; }
set { _deleteuser = value; }
}
public DateTime DeleteTime
{
get { return _deletetime; }
set { _deletetime = value; }
}
public string Year
{
get { return _year; }
set { _year = value; }
}
public string Month
{
get { return _month; }
set { _month = value; }
}
public string Day
{
get { return _day; }
set { _day = value; }
}
public string Hours
{
get { return _hours; }
set { _hours = value; }
}
public string CompanyID
{
get { return _companyid; }
set { _companyid = value; }
}
public string CompanyName
{
get { return _companyname; }
set { _companyname = value; }
}
public string DeptID
{
get { return _deptid; }
set { _deptid = value; }
}
public string DeptName
{
get { return _deptname; }
set { _deptname = value; }
}
public string QQ
{
get { return _qq; }
set { _qq = value; }
}
public string MSN
{
get { return _msn; }
set { _msn = value; }
}
public string OfficePhone
{
get { return _officephone; }
set { _officephone = value; }
}
public string HomePhone
{
get { return _homephone; }
set { _homephone = value; }
}
public string Mobile
{
get { return _mobile; }
set { _mobile = value; }
}
public string Fax
{
get { return _fax; }
set { _fax = value; }
}
public string Email
{
get { return _email; }
set { _email = value; }
}
public string EmailBackup
{
get { return _emailbackup; }
set { _emailbackup = value; }
}
public string HomeAddress
{
get { return _homeaddress; }
set { _homeaddress = value; }
}
public string Remark
{
get { return _remark; }
set { _remark = value; }
}
public string EmergUser
{
get { return _emerguser; }
set { _emerguser = value; }
}
public string EmergPhone
{
get { return _emergphone; }
set { _emergphone = value; }
}
public string EmergEmail
{
get { return _emergemail; }
set { _emergemail = value; }
}
public string PostCode
{
get { return _postcode; }
set { _postcode = value; }
}
}
}