| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace RMYY_CallCenter_Api.Model
- {
- public 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
- }
- }
|