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.
98 lines
2.0 KiB
C#
98 lines
2.0 KiB
C#
using System;
|
|
using HcUtility.Core;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace DSWeb.MvcShipping.Models.UserBaseInfo
|
|
{
|
|
|
|
[JsonObject]
|
|
public class UserBaseInfoModel : ModelObjectBase
|
|
{
|
|
#region private Fields
|
|
|
|
private string _gid = string.Empty;
|
|
private string _userid = String.Empty;
|
|
private string _showname = string.Empty;
|
|
private string _companyname = String.Empty;
|
|
private string _deptname = String.Empty;
|
|
private string _OFFICEPHONE = String.Empty;
|
|
private string _MOBILE = String.Empty;
|
|
private string _FAX = String.Empty;
|
|
private string _EMAIL1 = String.Empty;
|
|
|
|
#endregion
|
|
|
|
#region Public Properties
|
|
|
|
[ModelDB]
|
|
public string GID
|
|
{
|
|
get { return _gid; }
|
|
set { _gid = value; }
|
|
}
|
|
|
|
|
|
[ModelDB]
|
|
public string USERID
|
|
{
|
|
get { return _userid; }
|
|
set { _userid = value; }
|
|
}
|
|
[ModelDB]
|
|
public string SHOWNAME
|
|
{
|
|
get { return _showname; }
|
|
set { _showname = value; }
|
|
}
|
|
[ModelDB]
|
|
public string COMPANYNAME
|
|
{
|
|
get { return _companyname; }
|
|
set { _companyname = value; }
|
|
}
|
|
|
|
public string DEPTNAME
|
|
{
|
|
get { return _deptname; }
|
|
set { _deptname = value; }
|
|
}
|
|
|
|
public string OFFICEPHONE
|
|
{
|
|
get { return _OFFICEPHONE; }
|
|
set { _OFFICEPHONE = value; }
|
|
}
|
|
public string MOBILE
|
|
{
|
|
get { return _MOBILE; }
|
|
set { _MOBILE = value; }
|
|
}
|
|
public string FAX
|
|
{
|
|
get { return _FAX; }
|
|
set { _FAX = value; }
|
|
}
|
|
public string EMAIL1
|
|
{
|
|
get { return _EMAIL1; }
|
|
set { _EMAIL1 = value; }
|
|
}
|
|
|
|
#endregion
|
|
|
|
public UserBaseInfoModel()
|
|
{
|
|
TableName = "user_baseinfo";
|
|
}
|
|
}
|
|
|
|
#region 参照部分
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
}
|