12,166
社区成员




UserInfomation对象
[Serializable]
public class UserInfomation
{
private int _UserId;
private string _UserName;
private int _CompanyId;
private string _CompanyType;
private string _CompanyShortName;
private string _Password;
private int _result_code;
private string _result_remark;
public int UserId
{
get { return _UserId; }
set { _UserId = value; }
}
public string UserName
{
get { return _UserName; }
set { _UserName = value; }
}
public string CompanyType
{
get { return _CompanyType; }
set { _CompanyType = value; }
}
public int CompanyId
{
get { return _CompanyId; }
set { _CompanyId = value; }
}
public string CompanyShortName
{
get { return _CompanyShortName; }
set { _CompanyShortName = value; }
}
public string Password
{
get { return _Password; }
set { _Password = value; }
}
public int Result_Code
{
get { return _result_code; }
set { _result_code = value; }
}
public string Result_Remark
{
get { return _result_remark; }
set { _result_remark = value; }
}
public UserInfomation()
{ }
}