using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CallCenterApi.Model { /// /// T_QC_IndexRes:实体类(属性说明自动提取数据库字段的描述信息) /// [Serializable] public partial class T_QC_IndexRes { public T_QC_IndexRes() { } #region Model private int _f_id; private int? _callrecordsid; private int? _f_indexid; private int? _f_score = 0; private int? _f_qcscore = 0; private string _f_remark; /// /// 质检结果Id /// public int F_Id { set { _f_id = value; } get { return _f_id; } } /// /// 通话记录Id /// public int? CallRecordsId { set { _callrecordsid = value; } get { return _callrecordsid; } } /// /// 指标Id /// public int? F_IndexId { set { _f_indexid = value; } get { return _f_indexid; } } /// /// 指标分值 /// public int? F_Score { set { _f_score = value; } get { return _f_score; } } /// /// 质检分值 /// public int? F_QCScore { set { _f_qcscore = value; } get { return _f_qcscore; } } /// /// 指标备注 /// public string F_Remark { set { _f_remark = value; } get { return _f_remark; } } #endregion Model } }