| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace CallCenterApi.Model
- {
- /// <summary>
- /// 分数答案表
- /// </summary>
- 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;
- /// <summary>
- /// Id
- /// </summary>
- public long Id
- {
- set { _id = value; }
- get { return _id; }
- }
- /// <summary>
- /// 工单号
- /// </summary>
- public string WorkOrderId
- {
- set { _workorderid = value; }
- get { return _workorderid; }
- }
- /// <summary>
- /// 问题Id
- /// </summary>
- public int? QuestionId
- {
- set { _questionid = value; }
- get { return _questionid; }
- }
- /// <summary>
- /// 答案Id
- /// </summary>
- public int? QuestionIId
- {
- set { _questioniid = value; }
- get { return _questioniid; }
- }
- /// <summary>
- /// 问题满分分数
- /// </summary>
- public int? TotalScore
- {
- set { _totalscore = value; }
- get { return _totalscore; }
- }
- /// <summary>
- /// 答案分数
- /// </summary>
- public int? Score
- {
- set { _score = value; }
- get { return _score; }
- }
- /// <summary>
- ///
- /// </summary>
- public string CreateBy
- {
- set { _createby = value; }
- get { return _createby; }
- }
- /// <summary>
- /// 问答项
- /// </summary>
- public string AnswersTitle
- {
- set { _answersyitle = value; }
- get { return _answersyitle; }
- }
- /// <summary>
- ///
- /// </summary>
- public DateTime? CreateTime
- {
- set { _createtime = value; }
- get { return _createtime; }
- }
- #endregion Model
- }
- }
|