using System;
namespace Basic.Model
{
[Serializable]
public partial class address
{
private string _shi;
private string _xian;
private int _status;
private int _id;
private int _user_id;
private string _sheng;
private string _mobile;
private string _dmobile;
private string _phone;
private string _email;
private string _name;
private string _dname;
private string _ssx;
private string _xaddress;
private string _dxaddress;
///
/// 市
///
public string shi
{
set { _shi = value; }
get { return _shi; }
}
///
/// 县
///
public string xian
{
set { _xian = value; }
get { return _xian; }
}
///
/// 状态(0正常/1默认收货地址)
///
public int status
{
set { _status = value; }
get { return _status; }
}
///
/// 自增阿弟
///
public int id
{
set { _id = value; }
get { return _id; }
}
///
/// 用户阿弟
///
public int user_id
{
set { _user_id = value; }
get { return _user_id; }
}
///
/// 省
///
public string sheng
{
set { _sheng = value; }
get { return _sheng; }
}
///
/// 订货人-省
///
///
/// 手机
///
public string mobile
{
set { _mobile = value; }
get { return _mobile; }
}
///
/// 订货人-手机
///
public string dmobile
{
set { _dmobile = value; }
get { return _dmobile; }
}
///
/// 固话
///
public string phone
{
set { _phone = value; }
get { return _phone; }
}
///
/// 收货人邮箱
///
public string email
{
set { _email = value; }
get { return _email; }
}
///
/// 收货人姓名
///
public string name
{
set { _name = value; }
get { return _name; }
}
///
/// 订货人-姓名
///
public string dname
{
set { _dname = value; }
get { return _dname; }
}
///
/// 省市县
///
public string ssx
{
set { _ssx = value; }
get { return _ssx; }
}
///
/// 详细地址
///
public string xaddress
{
set { _xaddress = value; }
get { return _xaddress; }
}
///
/// 订货人-详细地址
///
public string dxaddress
{
set { _dxaddress = value; }
get { return _dxaddress; }
}
}
}