using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using YD_WeChatApplet.Commons.Enum;
namespace YD_WeChatApplet.Commons.Dto.Patriarch
{
///
/// 家长端作业详情
///
public class PatriarchHomeWorkDetailsDto
{
public int Id { get; set; }
///
///作业名称
///
public string WorkName { get; set; }
///
///作业内容
///
public string WorkText { get; set; }
///
/// 作业类型
///
public int WorkType { get; set; }
///
/// 作业类型名称
///
public string WorkTypeName { get; set; }
///
/// 模式类型
///
public WorkModeType WorkModeType { get; set; }
///
/// 模式类型名称
///
public string WorkModeTypeName { get; set; }
///
/// 作业时长
///
public int Duration { get; set; }
///
/// 作业数量
///
public int Amount { get; set; }
///
/// 组数量
///
public int GroupNumber { get; set; }
///
/// 是否重复
///
[Editable(true)]
public bool IsRepeat { get; set; }
///
///重复周期
///
public string RepetitionPeriod { get; set; }
///
/// 作业状态
///
public int WorkStatus { get; set; }
///
///开始时间
///
public DateTime StartTime { get; set; }
///
///结束时间
///
public DateTime EndTime { get; set; }
}
}