101 lines
2.5 KiB
C#
101 lines
2.5 KiB
C#
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using SqlSugar;
|
||
using LearningOfficer.OA.Core.Entities;
|
||
|
||
namespace LearningOfficer.OA.Core.Entities.OA.Solution
|
||
{
|
||
/// <summary>
|
||
/// 解决方案-问题记录
|
||
///</summary>
|
||
[SugarTable("question_info")]
|
||
public class QuestionInfo : BaseEntity
|
||
{
|
||
|
||
|
||
|
||
|
||
/// <summary>
|
||
/// 备 注:任务id
|
||
/// 默认值:
|
||
///</summary>
|
||
[SugarColumn(ColumnName = "task_id" )]
|
||
public long TaskId { get; set; }
|
||
|
||
|
||
/// <summary>
|
||
/// 备 注:任务类型枚举值
|
||
/// 默认值:
|
||
///</summary>
|
||
[SugarColumn(ColumnName = "task_enum" )]
|
||
public int TaskEnum { get; set; }
|
||
|
||
|
||
/// <summary>
|
||
/// 备 注:问题枚举值
|
||
/// 默认值:
|
||
///</summary>
|
||
[SugarColumn(ColumnName = "pvalue" )]
|
||
public long Pvalue { get; set; }
|
||
|
||
|
||
/// <summary>
|
||
/// 备 注:问题类型;1:学生;2:老师;
|
||
/// 默认值:
|
||
///</summary>
|
||
[SugarColumn(ColumnName = "question_type" )]
|
||
public int QuestionType { get; set; }
|
||
|
||
|
||
/// <summary>
|
||
/// 备 注:问题教师/学生id
|
||
/// 默认值:
|
||
///</summary>
|
||
[SugarColumn(ColumnName = "question_userid" )]
|
||
public long QuestionUserid { get; set; }
|
||
|
||
|
||
/// <summary>
|
||
/// 备 注:年份
|
||
/// 默认值:
|
||
///</summary>
|
||
[SugarColumn(ColumnName = "question_year" )]
|
||
public int QuestionYear { get; set; }
|
||
|
||
|
||
/// <summary>
|
||
/// 备 注:月份
|
||
/// 默认值:
|
||
///</summary>
|
||
[SugarColumn(ColumnName = "question_month" )]
|
||
public int QuestionMonth { get; set; }
|
||
|
||
|
||
/// <summary>
|
||
/// 备 注:问题发生时间
|
||
/// 默认值:
|
||
///</summary>
|
||
[SugarColumn(ColumnName = "addtime" )]
|
||
public DateTime Addtime { get; set; }
|
||
|
||
|
||
/// <summary>
|
||
/// 备 注:用户id
|
||
/// 默认值:
|
||
///</summary>
|
||
[SugarColumn(ColumnName = "adduser_id" )]
|
||
public long AdduserId { get; set; }
|
||
|
||
|
||
/// <summary>
|
||
/// 备 注:学生问题班级id
|
||
/// 默认值:
|
||
///</summary>
|
||
[SugarColumn(ColumnName = "question_class_id" )]
|
||
public long? QuestionClassId { get; set; }
|
||
|
||
|
||
}
|
||
|
||
} |