File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
csharp/ToolGood.Algorithm2 Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ public class ConditionCache
2020 /// 是否开启延迟加载
2121 /// 开启后,不会立即调取Parse
2222 /// </summary>
23- public bool LazyLoad = false ;
23+ public bool LazyLoad { get ; set ; } = false ;
2424
2525
2626 /// <summary>
Original file line number Diff line number Diff line change @@ -12,15 +12,15 @@ public class ConditionCacheInfo
1212 /// <summary>
1313 /// 类型名
1414 /// </summary>
15- public string CategoryName ;
15+ public string CategoryName { get ; internal set ; }
1616 /// <summary>
1717 /// 备注
1818 /// </summary>
19- public string Remark ;
19+ public string Remark { get ; internal set ; }
2020 /// <summary>
2121 /// 条件字符串
2222 /// </summary>
23- public string ConditionString ;
23+ public string ConditionString { get ; internal set ; }
2424
2525 private ProgContext _ConditionProg ;
2626 internal ProgContext ConditionProg {
You can’t perform that action at this time.
0 commit comments