Commit 8a4e754e by 李承祥

no message

parent c52d13a2
...@@ -20,8 +20,16 @@ public PerformanceDbContext(DbContextOptions<PerformanceDbContext> options) ...@@ -20,8 +20,16 @@ public PerformanceDbContext(DbContextOptions<PerformanceDbContext> options)
public virtual DbSet<ag_employee> ag_employee { get; set; } public virtual DbSet<ag_employee> ag_employee { get; set; }
/// <summary> 二次分配不固定列头数据 <summary> /// <summary> 二次分配不固定列头数据 <summary>
public virtual DbSet<ag_header> ag_header { get; set; } public virtual DbSet<ag_header> ag_header { get; set; }
/// <summary> 考核类别 <summary>
public virtual DbSet<as_assess> as_assess { get; set; }
/// <summary> 考核列头 <summary>
public virtual DbSet<as_columns> as_columns { get; set; }
/// <summary> 考核数据 <summary>
public virtual DbSet<as_data> as_data { get; set; }
/// <summary> <summary> /// <summary> <summary>
public virtual DbSet<cof_again> cof_again { get; set; } public virtual DbSet<cof_again> cof_again { get; set; }
/// <summary> 上传excel文件校验配置 <summary>
public virtual DbSet<cof_check> cof_check { get; set; }
/// <summary> 规模绩效、效率绩效计算系数配置 <summary> /// <summary> 规模绩效、效率绩效计算系数配置 <summary>
public virtual DbSet<cof_director> cof_director { get; set; } public virtual DbSet<cof_director> cof_director { get; set; }
/// <summary> 工作量门诊药占比系数 <summary> /// <summary> 工作量门诊药占比系数 <summary>
...@@ -41,6 +49,8 @@ public PerformanceDbContext(DbContextOptions<PerformanceDbContext> options) ...@@ -41,6 +49,8 @@ public PerformanceDbContext(DbContextOptions<PerformanceDbContext> options)
/// <summary> 特殊科室核算 <summary> /// <summary> 特殊科室核算 <summary>
public virtual DbSet<im_specialunit> im_specialunit { get; set; } public virtual DbSet<im_specialunit> im_specialunit { get; set; }
/// <summary> <summary> /// <summary> <summary>
public virtual DbSet<log_check> log_check { get; set; }
/// <summary> <summary>
public virtual DbSet<log_dbug> log_dbug { get; set; } public virtual DbSet<log_dbug> log_dbug { get; set; }
/// <summary> <summary> /// <summary> <summary>
public virtual DbSet<per_againallot> per_againallot { get; set; } public virtual DbSet<per_againallot> per_againallot { get; set; }
......
//-----------------------------------------------------------------------
// <copyright file=" as_assess.cs">
// * FileName: 考核类别.cs
// </copyright>
//-----------------------------------------------------------------------
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace Performance.EntityModels
{
/// <summary>
/// 考核类别
/// </summary>
[Table("as_assess")]
public class as_assess
{
/// <summary>
///
/// </summary>
[Key]
public int ID { get; set; }
/// <summary>
/// 考核类别
/// </summary>
public string AssessType { get; set; }
}
}
//-----------------------------------------------------------------------
// <copyright file=" as_columns.cs">
// * FileName: 考核列头.cs
// </copyright>
//-----------------------------------------------------------------------
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace Performance.EntityModels
{
/// <summary>
/// 考核列头
/// </summary>
[Table("as_columns")]
public class as_columns
{
/// <summary>
///
/// </summary>
[Key]
public int ID { get; set; }
/// <summary>
/// 考核类别
/// </summary>
public Nullable<int> AssessID { get; set; }
/// <summary>
/// 父级列头ID
/// </summary>
public Nullable<int> ParentID { get; set; }
/// <summary>
/// 列头名称
/// </summary>
public string ColumnName { get; set; }
}
}
//-----------------------------------------------------------------------
// <copyright file=" as_data.cs">
// * FileName: 考核数据.cs
// </copyright>
//-----------------------------------------------------------------------
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace Performance.EntityModels
{
/// <summary>
/// 考核数据
/// </summary>
[Table("as_data")]
public class as_data
{
/// <summary>
///
/// </summary>
[Key]
public int ID { get; set; }
/// <summary>
/// 考核类别ID
/// </summary>
public Nullable<int> AssessID { get; set; }
/// <summary>
/// 科室
/// </summary>
public string Department { get; set; }
/// <summary>
/// 行数据JSON
/// </summary>
public string RowData { get; set; }
}
}
//-----------------------------------------------------------------------
// <copyright file=" cof_check.cs">
// * FileName: 上传excel文件校验配置.cs
// </copyright>
//-----------------------------------------------------------------------
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace Performance.EntityModels
{
/// <summary>
/// 上传excel文件校验配置
/// </summary>
[Table("cof_check")]
public class cof_check
{
/// <summary>
///
/// </summary>
[Key]
public int ID { get; set; }
/// <summary>
/// sheet类型。1、无法识别,2、医院人员名单,3、收入,4、其他收入,5、支出,6、加班,7、工作量,8、特殊核算单元,9、临床科室医护绩效测算基础
/// </summary>
public Nullable<int> Type { get; set; }
/// <summary>
/// 单元格列头名称
/// </summary>
public string CellName { get; set; }
}
}
//-----------------------------------------------------------------------
// <copyright file=" log_check.cs">
// * FileName: .cs
// </copyright>
//-----------------------------------------------------------------------
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace Performance.EntityModels
{
/// <summary>
///
/// </summary>
[Table("log_check")]
public class log_check
{
/// <summary>
///
/// </summary>
[Key]
public int ID { get; set; }
/// <summary>
///
/// </summary>
public Nullable<int> AllotID { get; set; }
/// <summary>
///
/// </summary>
public Nullable<DateTime> CreateTime { get; set; }
/// <summary>
///
/// </summary>
public Nullable<int> Type { get; set; }
/// <summary>
///
/// </summary>
public string Titile { get; set; }
/// <summary>
///
/// </summary>
public string Message { get; set; }
}
}
//-----------------------------------------------------------------------
// <copyright file=" as_assess.cs">
// * FileName: as_assess.cs
// </copyright>
//-----------------------------------------------------------------------
using System;
using Performance.EntityModels;
namespace Performance.Repository
{
/// <summary>
/// as_assess Repository
/// </summary>
public partial class PerforAsassessRepository : PerforRepository<as_assess>
{
public PerforAsassessRepository(PerformanceDbContext context) : base(context)
{
}
}
}
//-----------------------------------------------------------------------
// <copyright file=" as_columns.cs">
// * FileName: as_columns.cs
// </copyright>
//-----------------------------------------------------------------------
using System;
using Performance.EntityModels;
namespace Performance.Repository
{
/// <summary>
/// as_columns Repository
/// </summary>
public partial class PerforAscolumnsRepository : PerforRepository<as_columns>
{
public PerforAscolumnsRepository(PerformanceDbContext context) : base(context)
{
}
}
}
//-----------------------------------------------------------------------
// <copyright file=" as_data.cs">
// * FileName: as_data.cs
// </copyright>
//-----------------------------------------------------------------------
using System;
using Performance.EntityModels;
namespace Performance.Repository
{
/// <summary>
/// as_data Repository
/// </summary>
public partial class PerforAsdataRepository : PerforRepository<as_data>
{
public PerforAsdataRepository(PerformanceDbContext context) : base(context)
{
}
}
}
//-----------------------------------------------------------------------
// <copyright file=" cof_check.cs">
// * FileName: cof_check.cs
// </copyright>
//-----------------------------------------------------------------------
using System;
using Performance.EntityModels;
namespace Performance.Repository
{
/// <summary>
/// cof_check Repository
/// </summary>
public partial class PerforCofcheckRepository : PerforRepository<cof_check>
{
public PerforCofcheckRepository(PerformanceDbContext context) : base(context)
{
}
}
}
//-----------------------------------------------------------------------
// <copyright file=" log_check.cs">
// * FileName: log_check.cs
// </copyright>
//-----------------------------------------------------------------------
using System;
using Performance.EntityModels;
namespace Performance.Repository
{
/// <summary>
/// log_check Repository
/// </summary>
public partial class PerforLogcheckRepository : PerforRepository<log_check>
{
public PerforLogcheckRepository(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