|
@@ -14,9 +14,17 @@ namespace TEAMModelOS.SDK.Models
|
|
|
// code :"ArtSetting"
|
|
|
//pk :"ArtSetting"
|
|
|
public List<ArtDimension> dimensions { get; set; } = new List<ArtDimension>();
|
|
|
- public List<ArtKnowledge> knowledges { get; set; }= new List<ArtKnowledge>();
|
|
|
- }
|
|
|
+ public List<ArtKnowledge> knowledges { get; set; }= new List<ArtKnowledge>();
|
|
|
+ public List<ArtQuota> quotas { get; set; } = new List<ArtQuota>();
|
|
|
|
|
|
+ }
|
|
|
+ public class ArtQuota
|
|
|
+ {
|
|
|
+ public string id { get; set; }
|
|
|
+ public string name { get; set; }
|
|
|
+ public double percent { get; set; }
|
|
|
+ public List<ArtQuota> children { get; set; }=new List<ArtQuota>();
|
|
|
+ }
|
|
|
|
|
|
public class ArtKnowledge{
|
|
|
/// <summary>
|