//------------------------------------------------------------------------------
//
// This code was generated by a CodeSmith Template.
//
// DO NOT MODIFY contents of this file. Changes to this
// file will be lost if the code is regenerated.
// Author:Yubao Li
//
//------------------------------------------------------------------------------
using System;
using System.Collections.Generic;
using System.Text;
namespace OpenAuth.Domain
{
///
/// 用户扩展信息表
///
public partial class UserExt
{
public UserExt()
{
this.Id= 0;
this.Email= string.Empty;
this.Phone= string.Empty;
this.Mobile= string.Empty;
this.Address= string.Empty;
this.Zip= string.Empty;
this.Birthday= string.Empty;
this.IdCard= string.Empty;
this.Qq= string.Empty;
this.DynamicField= string.Empty;
this.ByteArrayId= 0;
this.Remark= string.Empty;
this.Field1= string.Empty;
this.Field2= string.Empty;
this.Field3= string.Empty;
}
///
/// 用户ID
///
public int Id { get; set; }
///
/// 电子邮件
///
public string Email { get; set; }
///
/// 固定电话
///
public string Phone { get; set; }
///
/// 移动电话
///
public string Mobile { get; set; }
///
/// 联系地址
///
public string Address { get; set; }
///
/// 邮编
///
public string Zip { get; set; }
///
/// 生日
///
public string Birthday { get; set; }
///
/// 身份证号
///
public string IdCard { get; set; }
///
/// QQ
///
public string Qq { get; set; }
///
/// 动态扩展字段
///
public string DynamicField { get; set; }
///
/// 用户头像流文件ID
///
public int ByteArrayId { get; set; }
///
/// 备注
///
public string Remark { get; set; }
///
/// 静态扩展字段1
///
public string Field1 { get; set; }
///
/// 静态扩展字段2
///
public string Field2 { get; set; }
///
/// 静态扩展字段3
///
public string Field3 { get; set; }
}
}