using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CallCenterApi.Model { /// /// T_Cus_CustomerBase:实体类(属性说明自动提取数据库字段的描述信息) /// [Serializable] public partial class T_Cus_CustomerBase { public T_Cus_CustomerBase() { } #region Model public string F_Id { get; set; } public string F_Name { get; set; } public string F_PhoneNum1 { get; set; } public string F_PhoneNum2 { get; set; } public string F_Address { get; set; } public int? F_CusType { get; set; } public int F_AddAgentId { get; set; } public DateTime F_AddTime { get; set; } public string F_Remark { get; set; } public int? F_YHFKId { get; set; } public string F_YHFKName { get; set; } public int? F_DeptId { get; set; } public int F_DeleteFlag { get; set; } public string F_AddAgentName { get; set; } #endregion Model } }