using System;
using Abp.AutoMapper;
using System.ComponentModel.DataAnnotations;
using IwbZero.AppServiceBase;
using WeOnlineApp.Configuration;
namespace WeOnlineApp.Question.Dto
{
///
/// 问题
///
[AutoMapTo(typeof(QuestionInfo))]
public class QuestionCreateDto:IwbEntityDto
{
///
/// 课程类型
///
[Required]
[StringLength(IwbConsts.PrimaryKey)]
public string SubjectCategoryNo { get; set; }
[StringLength(IwbConsts.PrimaryKey)]
public string CampNo { get; set; }
///
/// 问题标题
///
[Required]
[StringLength(QuestionInfo.TitleLength)]
public string Title { get; set; }
///
/// 问题内容
///
[Required]
[StringLength(QuestionInfo.ContentLength)]
public string ContentInfo { get; set; }
///
/// 问题状态
///
public int QuestionState { get; set; }
///
/// 解答时间
///
public DateTime? AnswerDateTime { get; set; }
}
}