using System; using System.Collections.Generic; using System.Data; using System.Linq; namespace OpenAuth.Domain { /// /// 用户ID /// public partial class UserExt { /// /// 用户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; } 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; } } }