|
@@ -832,6 +832,7 @@ namespace TEAMModelOS.SDK.Models
|
|
|
public double score { get; set; }
|
|
|
public string nickname { get; set; }
|
|
|
public string picture { get; set; }
|
|
|
+ public string comment { get; set; }
|
|
|
public List<RuleConfig> detailScore { get; set; } = new List<RuleConfig>();
|
|
|
}
|
|
|
/// <summary>
|
|
@@ -963,6 +964,10 @@ namespace TEAMModelOS.SDK.Models
|
|
|
public class ReviewScoreData
|
|
|
{
|
|
|
public double score { get; set; } = -1;
|
|
|
+ /// <summary>
|
|
|
+ /// 评语
|
|
|
+ /// </summary>
|
|
|
+ public string comment { get; set; }
|
|
|
public List<RuleConfigTree> detailScore { get; set; } = new List<RuleConfigTree>();
|
|
|
public string uploadId { get; set; }
|
|
|
}
|
|
@@ -1018,6 +1023,7 @@ namespace TEAMModelOS.SDK.Models
|
|
|
/// </summary>
|
|
|
public int status { get; set; } = -1;
|
|
|
public double score { get; set; } = -1;
|
|
|
+ public string comment { get; set; }
|
|
|
/// <summary>
|
|
|
/// 评分依据规则的细项得分,score 专家对细项的评分
|
|
|
/// </summary>
|