Commit 99bf0116 by lcx

二次绩效工作量占比类型相关实体

parent 7aee75fa
...@@ -38,6 +38,8 @@ public PerformanceDbContext(DbContextOptions<PerformanceDbContext> options) ...@@ -38,6 +38,8 @@ public PerformanceDbContext(DbContextOptions<PerformanceDbContext> options)
public virtual DbSet<ag_usetemp> ag_usetemp { get; set; } public virtual DbSet<ag_usetemp> ag_usetemp { get; set; }
/// <summary> 二次绩效工作量绩效 </summary> /// <summary> 二次绩效工作量绩效 </summary>
public virtual DbSet<ag_workload> ag_workload { get; set; } public virtual DbSet<ag_workload> ag_workload { get; set; }
/// <summary> </summary>
public virtual DbSet<ag_workload_type> ag_workload_type { get; set; }
/// <summary> 考核类别 </summary> /// <summary> 考核类别 </summary>
public virtual DbSet<as_assess> as_assess { get; set; } public virtual DbSet<as_assess> as_assess { get; set; }
/// <summary> 考核列头 </summary> /// <summary> 考核列头 </summary>
......
...@@ -70,7 +70,7 @@ public class ag_fixatitem ...@@ -70,7 +70,7 @@ public class ag_fixatitem
/// 1 自动带出 2 计算得出 /// 1 自动带出 2 计算得出
/// </summary> /// </summary>
public Nullable<int> SourceType { get; set; } public Nullable<int> SourceType { get; set; }
/// <summary> /// <summary>
/// 1 value相加值为1 /// 1 value相加值为1
/// </summary> /// </summary>
......
...@@ -7,55 +7,55 @@ ...@@ -7,55 +7,55 @@
using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema; using System.ComponentModel.DataAnnotations.Schema;
namespace Performance.EntityModels namespace Performance.EntityModels
{ {
/// <summary> /// <summary>
/// 二次绩效模板项 /// 二次绩效模板项
/// </summary> /// </summary>
[Table("ag_tempitem")] [Table("ag_tempitem")]
public class ag_tempitem public class ag_tempitem
{ {
/// <summary> /// <summary>
/// ///
/// </summary> /// </summary>
[Key] [Key]
public int Id { get; set; } public int Id { get; set; }
/// <summary> /// <summary>
/// 模板ID /// 模板ID
/// </summary> /// </summary>
public Nullable<int> TempId { get; set; } public Nullable<int> TempId { get; set; }
/// <summary> /// <summary>
/// 字段ID /// 字段ID
/// </summary> /// </summary>
public string FiledId { get; set; } public string FiledId { get; set; }
/// <summary> /// <summary>
/// 字段名称 /// 字段名称
/// </summary> /// </summary>
public string FiledName { get; set; } public string FiledName { get; set; }
/// <summary> /// <summary>
/// ///
/// </summary> /// </summary>
public Nullable<decimal> Sort { get; set; } public Nullable<decimal> Sort { get; set; }
/// <summary> /// <summary>
/// 字段类型 1 顶部概况 2 表格固定 /// 字段类型 1 顶部概况 2 表格固定
/// </summary> /// </summary>
public Nullable<int> Type { get; set; } public Nullable<int> Type { get; set; }
/// <summary> /// <summary>
/// 1 自动带出 2 计算得出 /// 1 自动带出 2 计算得出
/// </summary> /// </summary>
public Nullable<int> SourceType { get; set; } public Nullable<int> SourceType { get; set; }
/// <summary> /// <summary>
/// 1 带出历史数据 2不带出 /// 1 带出历史数据 2不带出
/// </summary> /// </summary>
public Nullable<int> IsBring { get; set; } public Nullable<int> IsBring { get; set; }
/// <summary> /// <summary>
/// 1 value相加值为1 /// 1 value相加值为1
/// </summary> /// </summary>
......
...@@ -55,10 +55,10 @@ public class ag_workload ...@@ -55,10 +55,10 @@ public class ag_workload
/// ///
/// </summary> /// </summary>
public Nullable<decimal> Sort { get; set; } public Nullable<decimal> Sort { get; set; }
/// <summary> /// <summary>
/// 1、工作量 2、其他 /// 1、单项奖励 2、工作量占比 ..(自定义占比)
/// </summary> /// </summary>
public int Type { get; set; } public int WorkTypeId { get; set; }
} }
} }
//-----------------------------------------------------------------------
// <copyright file=" ag_workload_type.cs">
// * FileName: .cs
// </copyright>
//-----------------------------------------------------------------------
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace Performance.EntityModels
{
/// <summary>
///
/// </summary>
[Table("ag_workload_type")]
public class ag_workload_type
{
/// <summary>
///
/// </summary>
[Key]
public int Id { get; set; }
/// <summary>
///
/// </summary>
public int HospitalId { get; set; }
/// <summary>
///
/// </summary>
public string TypeName { get; set; }
}
}
...@@ -105,17 +105,17 @@ public class im_accountbasic ...@@ -105,17 +105,17 @@ public class im_accountbasic
/// 其他绩效2 /// 其他绩效2
/// </summary> /// </summary>
public Nullable<decimal> DoctorOtherPerfor2 { get; set; } public Nullable<decimal> DoctorOtherPerfor2 { get; set; }
/// <summary> /// <summary>
/// 药占比奖罚 /// 药占比奖罚
/// </summary> /// </summary>
public Nullable<decimal> MedicineExtra { get; set; } public Nullable<decimal> MedicineExtra { get; set; }
/// <summary> /// <summary>
/// 材料占比奖罚 /// 材料占比奖罚
/// </summary> /// </summary>
public Nullable<decimal> MaterialsExtra { get; set; } public Nullable<decimal> MaterialsExtra { get; set; }
/// <summary> /// <summary>
/// 医院奖罚 /// 医院奖罚
/// </summary> /// </summary>
......
...@@ -25,12 +25,12 @@ public class per_budget_amount ...@@ -25,12 +25,12 @@ public class per_budget_amount
/// ///
/// </summary> /// </summary>
public int HospitalId { get; set; } public int HospitalId { get; set; }
/// <summary> /// <summary>
/// 根据该年份测算下一年 /// 根据该年份测算下一年
/// </summary> /// </summary>
public int MainYear { get; set; } public int MainYear { get; set; }
/// <summary> /// <summary>
/// 实际年份、预算年份 /// 实际年份、预算年份
/// </summary> /// </summary>
......
...@@ -25,12 +25,12 @@ public class per_budget_ratio ...@@ -25,12 +25,12 @@ public class per_budget_ratio
/// ///
/// </summary> /// </summary>
public int HospitalId { get; set; } public int HospitalId { get; set; }
/// <summary> /// <summary>
/// 根据该年份测算下一年 /// 根据该年份测算下一年
/// </summary> /// </summary>
public int MainYear { get; set; } public int MainYear { get; set; }
/// <summary> /// <summary>
/// 实际年份、预算年份 /// 实际年份、预算年份
/// </summary> /// </summary>
......
...@@ -140,22 +140,22 @@ public class per_budget_result ...@@ -140,22 +140,22 @@ public class per_budget_result
/// 成本合计实际比例 /// 成本合计实际比例
/// </summary> /// </summary>
public Nullable<decimal> TheCostCombinedRatio { get; set; } public Nullable<decimal> TheCostCombinedRatio { get; set; }
/// <summary> /// <summary>
/// 人员经费(不含绩效) /// 人员经费(不含绩效)
/// </summary> /// </summary>
public Nullable<decimal> NoPerformanceExpenditure { get; set; } public Nullable<decimal> NoPerformanceExpenditure { get; set; }
/// <summary> /// <summary>
/// 人员经费(不含绩效)实际比例 /// 人员经费(不含绩效)实际比例
/// </summary> /// </summary>
public Nullable<decimal> NoPerformanceExpenditureRatio { get; set; } public Nullable<decimal> NoPerformanceExpenditureRatio { get; set; }
/// <summary> /// <summary>
/// 1.初始 2.确认使用发放/调节系数 3.取消使用 /// 1.初始 2. 确认使用发放/调节系数
/// </summary> /// </summary>
public int States { get; set; } public int States { get; set; }
/// <summary> /// <summary>
/// ///
/// </summary> /// </summary>
......
...@@ -100,17 +100,17 @@ public class res_account ...@@ -100,17 +100,17 @@ public class res_account
/// 其他绩效2 /// 其他绩效2
/// </summary> /// </summary>
public Nullable<decimal> OtherPerfor2 { get; set; } public Nullable<decimal> OtherPerfor2 { get; set; }
/// <summary> /// <summary>
/// 药占比奖罚 /// 药占比奖罚
/// </summary> /// </summary>
public Nullable<decimal> MedicineExtra { get; set; } public Nullable<decimal> MedicineExtra { get; set; }
/// <summary> /// <summary>
/// 材料占比奖罚 /// 材料占比奖罚
/// </summary> /// </summary>
public Nullable<decimal> MaterialsExtra { get; set; } public Nullable<decimal> MaterialsExtra { get; set; }
/// <summary> /// <summary>
/// 医院奖罚 /// 医院奖罚
/// </summary> /// </summary>
......
//-----------------------------------------------------------------------
// <copyright file=" ag_workload_type.cs">
// * FileName: ag_workload_type.cs
// </copyright>
//-----------------------------------------------------------------------
using System;
using Performance.EntityModels;
namespace Performance.Repository
{
/// <summary>
/// ag_workload_type Repository
/// </summary>
public partial class PerforAgworkloadtypeRepository : PerforRepository<ag_workload_type>
{
public PerforAgworkloadtypeRepository(PerformanceDbContext context) : base(context)
{
}
}
}
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