using System; namespace CallCenterApi.Model { /// /// T_Cus_AddressBook:实体类(属性说明自动提取数据库字段的描述信息) /// [Serializable] public partial class T_Cus_AddressBook { public T_Cus_AddressBook() { } #region Model private int _f_userid; private string _f_name; private string _f_sex; private DateTime? _f_birthday; private string _f_idcard; private string _f_address; private string _f_education; private string _f_email; private string _f_telephone; private string _f_mobile; private string _f_elsemobile; private int _f_companyid = 0; private int _f_departmentid = 0; private int _f_positionid = 0; private string _f_note; private DateTime? _f_createdate = DateTime.Now; private int _f_isdelete = 0; private string _f_company; private string _f_department; private string _f_position; /// /// 通讯录ID /// public int F_UserId { set { _f_userid = value; } get { return _f_userid; } } /// /// 姓名 /// public string F_Name { set { _f_name = value; } get { return _f_name; } } /// /// 性别 /// public string F_Sex { set { _f_sex = value; } get { return _f_sex; } } /// /// 生日 /// public DateTime? F_Birthday { set { _f_birthday = value; } get { return _f_birthday; } } /// /// 身份证 /// public string F_IDCard { set { _f_idcard = value; } get { return _f_idcard; } } /// /// 地址 /// public string F_Address { set { _f_address = value; } get { return _f_address; } } /// /// 学历 /// public string F_Education { set { _f_education = value; } get { return _f_education; } } /// /// 邮件 /// public string F_Email { set { _f_email = value; } get { return _f_email; } } /// /// 单位电话 /// public string F_Telephone { set { _f_telephone = value; } get { return _f_telephone; } } /// /// 手机号 /// public string F_Mobile { set { _f_mobile = value; } get { return _f_mobile; } } /// /// 其他电话 /// public string F_ElseMobile { set { _f_elsemobile = value; } get { return _f_elsemobile; } } /// /// 单位Id /// public int F_CompanyId { set { _f_companyid = value; } get { return _f_companyid; } } /// /// 部门Id /// public int F_DepartmentId { set { _f_departmentid = value; } get { return _f_departmentid; } } /// /// 职务Id /// public int F_PositionId { set { _f_positionid = value; } get { return _f_positionid; } } /// /// 备注 /// public string F_Note { set { _f_note = value; } get { return _f_note; } } /// /// 添加时间 /// public DateTime? F_CreateDate { set { _f_createdate = value; } get { return _f_createdate; } } /// /// 是否删除 /// public int F_IsDelete { set { _f_isdelete = value; } get { return _f_isdelete; } } /// /// /// public string F_Company { set { _f_company = value; } get { return _f_company; } } /// /// /// public string F_Department { set { _f_department = value; } get { return _f_department; } } /// /// /// public string F_Position { set { _f_position = value; } get { return _f_position; } } #endregion Model } }