This commit is contained in:
2025-12-15 11:02:14 +08:00
parent a2f2bee5b9
commit 32d2008212
2 changed files with 55 additions and 0 deletions
+18
View File
@@ -463112,6 +463112,8 @@ namespace Model
private string _ProblemTypes;
private string _RiskLevel;
private System.Nullable<int> _SortIndex;
private string _Situation;
@@ -463436,6 +463438,22 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_RiskLevel", DbType="NVarChar(50)")]
public string RiskLevel
{
get
{
return this._RiskLevel;
}
set
{
if ((this._RiskLevel != value))
{
this._RiskLevel = value;
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SortIndex", DbType="Int")]
public System.Nullable<int> SortIndex
{