using System.Collections.Generic; namespace WeEngine.CommonDto { public class RunStartPackageDto { /// /// 方案包编号 /// public string PackageId { get; set; } /// /// 分组编号 /// public List GroupNos { get; set; } /// /// 考核角色 /// public List AssessRoles { get; set; } /// /// 未考核分数自动运行(满分) /// public bool AssessAuto { get; set; } /// /// 自动下一轮 /// public bool AutoNextRound { get; set; } /// /// 轮次总分 /// public decimal RoundScore { get; set; } public string TargetClientId { get; set; } public string Variable { get; set; } } public class ReStartPackageDto { /// /// 方案包编号 /// public string PackageId { get; set; } public string TargetClientId { get; set; } /// /// 运行信息 /// public string RunningInfo { get; set; } /// /// 自动下一轮 /// public bool AutoNextRound { get; set; } } }