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 AddGroupTaskResultDto { /// /// 任务Id /// public int GroupTaskId { get; set; } /// /// 数据来源 /// public DataSourceType DataSource { get; set; } /// /// 模式类型 /// public WorkModeType WorkModeType { get; set; } /// /// 模式类型名称 /// public string WorkModeTypeName { get; set; } /// /// 作业时长 /// public int Duration { get; set; } /// /// 作业数量 /// public int Amount { get; set; } } }