using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CallCenterApi.Model { /// /// 分数答案表 /// public partial class T_Que_Question_Map { public T_Que_Question_Map() { } #region Model private long _id; private string _workorderid; private int? _questionid; private int? _questioniid; private int? _totalscore; private int? _score; private string _createby; private string _answersyitle; private DateTime? _createtime; /// /// Id /// public long Id { set { _id = value; } get { return _id; } } /// /// 工单号 /// public string WorkOrderId { set { _workorderid = value; } get { return _workorderid; } } /// /// 问题Id /// public int? QuestionId { set { _questionid = value; } get { return _questionid; } } /// /// 答案Id /// public int? QuestionIId { set { _questioniid = value; } get { return _questioniid; } } /// /// 问题满分分数 /// public int? TotalScore { set { _totalscore = value; } get { return _totalscore; } } /// /// 答案分数 /// public int? Score { set { _score = value; } get { return _score; } } /// /// /// public string CreateBy { set { _createby = value; } get { return _createby; } } /// /// 问答项 /// public string AnswersTitle { set { _answersyitle = value; } get { return _answersyitle; } } /// /// /// public DateTime? CreateTime { set { _createtime = value; } get { return _createtime; } } #endregion Model } }