Commit 4405724b by 李承祥

特殊科室

parent 7f51942a
...@@ -2120,6 +2120,11 @@ ...@@ -2120,6 +2120,11 @@
只读 0、否 1、是 只读 0、否 1、是
</summary> </summary>
</member> </member>
<member name="P:Performance.EntityModels.mod_item.ConfigId">
<summary>
数据库地址
</summary>
</member>
<member name="T:Performance.EntityModels.mod_module"> <member name="T:Performance.EntityModels.mod_module">
<summary> <summary>
...@@ -2165,6 +2170,11 @@ ...@@ -2165,6 +2170,11 @@
是否生成Item 0、否 1、是 是否生成Item 0、否 1、是
</summary> </summary>
</member> </member>
<member name="P:Performance.EntityModels.mod_module.ConfigId">
<summary>
数据库地址
</summary>
</member>
<member name="T:Performance.EntityModels.mod_special"> <member name="T:Performance.EntityModels.mod_special">
<summary> <summary>
...@@ -2200,6 +2210,16 @@ ...@@ -2200,6 +2210,16 @@
调节系数 调节系数
</summary> </summary>
</member> </member>
<member name="P:Performance.EntityModels.mod_special.ExtractId">
<summary>
抽取绩效值SQL
</summary>
</member>
<member name="P:Performance.EntityModels.mod_special.ConfigId">
<summary>
数据库地址
</summary>
</member>
<member name="T:Performance.EntityModels.per_againallot"> <member name="T:Performance.EntityModels.per_againallot">
<summary> <summary>
......
...@@ -60,5 +60,10 @@ public class mod_item ...@@ -60,5 +60,10 @@ public class mod_item
/// 只读 0、否 1、是 /// 只读 0、否 1、是
/// </summary> /// </summary>
public Nullable<int> ReadOnly { get; set; } public Nullable<int> ReadOnly { get; set; }
/// <summary>
/// 数据库地址
/// </summary>
public Nullable<int> ConfigId { get; set; }
} }
} }
...@@ -55,5 +55,10 @@ public class mod_module ...@@ -55,5 +55,10 @@ public class mod_module
/// 是否生成Item 0、否 1、是 /// 是否生成Item 0、否 1、是
/// </summary> /// </summary>
public Nullable<int> IsGenerated { get; set; } public Nullable<int> IsGenerated { get; set; }
/// <summary>
/// 数据库地址
/// </summary>
public Nullable<int> ConfigId { get; set; }
} }
} }
...@@ -45,5 +45,15 @@ public class mod_special ...@@ -45,5 +45,15 @@ public class mod_special
/// 调节系数 /// 调节系数
/// </summary> /// </summary>
public Nullable<decimal> AdjustFactor { get; set; } public Nullable<decimal> AdjustFactor { get; set; }
/// <summary>
/// 抽取绩效值SQL
/// </summary>
public Nullable<int> ExtractId { get; set; }
/// <summary>
/// 数据库地址
/// </summary>
public Nullable<int> ConfigId { get; set; }
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment