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.ClientSide
{
///
/// 创建群任务
///
public class CreateGroupTaskDto
{
///
/// 群组Id
///
public int UserGroupId { get; set; }
///
///任务名称
///
public string GroupTaskName { get; set; }
///
/// 模式类型
///
public WorkModeType WorkModeType { get; set; }
///
/// 模式类型名称
///
public string WorkModeTypeName { get; set; }
///
/// 作业类型名称
///
//public string WorkTypeName { get; set; }
///
/// 任务时长
///
public int Duration { get; set; }
///
/// 任务数量
///
public int Amount { get; set; }
///
/// 是否重复
///
public bool IsRepeat { get; set; }
///
///重复周期
///
//public string RepetitionPeriod { get; set; }
///
///重复周期
///
public List WeekList { get; set; }
///
///
///开始时间
///
public DateTime StartTime { get; set; }
///
///结束时间
///
public DateTime EndTime { get; set; }
}
}