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