142 lines
3.1 KiB
C#
142 lines
3.1 KiB
C#
using System;
|
||
namespace Mtxfw.Model
|
||
{
|
||
/// <summary>
|
||
/// user_bank:实体类(属性说明自动提取数据库字段的描述信息)
|
||
/// </summary>
|
||
[Serializable]
|
||
public partial class user_address
|
||
{
|
||
#region Model
|
||
private int _id;
|
||
private int _UserID;
|
||
private string _Contactname;
|
||
private string _Contacttel;
|
||
private string _Province;
|
||
private string _City;
|
||
private string _County;
|
||
private int _IFFill;//是否手动填写街道或乡镇0否1是
|
||
private string _Tradingarea;
|
||
private string _Address;
|
||
private string _Zipcode;
|
||
private string _Guests;
|
||
private int _IFIndex;//是否是默认地址:0否1是
|
||
private int _gtype;
|
||
/// <summary>
|
||
///
|
||
/// </summary>
|
||
public int Id
|
||
{
|
||
set{ _id=value;}
|
||
get{return _id;}
|
||
}
|
||
/// <summary>
|
||
///
|
||
/// </summary>
|
||
public int UserID
|
||
{
|
||
set { _UserID = value; }
|
||
get { return _UserID; }
|
||
}
|
||
/// <summary>
|
||
///
|
||
/// </summary>
|
||
public string Contactname
|
||
{
|
||
set { _Contactname = value; }
|
||
get { return _Contactname; }
|
||
}
|
||
/// <summary>
|
||
///
|
||
/// </summary>
|
||
public string Contacttel
|
||
{
|
||
set { _Contacttel = value; }
|
||
get { return _Contacttel; }
|
||
}
|
||
/// <summary>
|
||
///
|
||
/// </summary>
|
||
public string Province
|
||
{
|
||
set { _Province = value; }
|
||
get { return _Province; }
|
||
}
|
||
/// <summary>
|
||
///
|
||
/// </summary>
|
||
public string City
|
||
{
|
||
set { _City = value; }
|
||
get { return _City; }
|
||
}
|
||
/// <summary>
|
||
///
|
||
/// </summary>
|
||
public string County
|
||
{
|
||
set { _County = value; }
|
||
get { return _County; }
|
||
}
|
||
/// <summary>
|
||
///
|
||
/// </summary>
|
||
public int IFFill
|
||
{
|
||
set { _IFFill = value; }
|
||
get { return _IFFill; }
|
||
}
|
||
/// <summary>
|
||
///
|
||
/// </summary>
|
||
public string Tradingarea
|
||
{
|
||
set { _Tradingarea = value; }
|
||
get { return _Tradingarea; }
|
||
}
|
||
/// <summary>
|
||
///
|
||
/// </summary>
|
||
public string Address
|
||
{
|
||
set { _Address = value; }
|
||
get { return _Address; }
|
||
}
|
||
/// <summary>
|
||
///
|
||
/// </summary>
|
||
public string Zipcode
|
||
{
|
||
set { _Zipcode = value; }
|
||
get { return _Zipcode; }
|
||
}
|
||
/// <summary>
|
||
///
|
||
/// </summary>
|
||
public string Guests
|
||
{
|
||
set { _Guests = value; }
|
||
get { return _Guests; }
|
||
}
|
||
/// <summary>
|
||
///
|
||
/// </summary>
|
||
public int IFIndex
|
||
{
|
||
set { _IFIndex = value; }
|
||
get { return _IFIndex; }
|
||
}
|
||
/// <summary>
|
||
///
|
||
/// </summary>
|
||
public int gtype
|
||
{
|
||
set { _gtype = value; }
|
||
get { return _gtype; }
|
||
}
|
||
#endregion Model
|
||
|
||
}
|
||
}
|
||
|