Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
performance
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
zry
performance
Commits
0c5cc3b8
Commit
0c5cc3b8
authored
Jul 24, 2019
by
李承祥
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
新增entity
parent
873936cb
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
316 additions
and
0 deletions
+316
-0
performance/Performance.EntityModels/Context/PerformanceDbContext.cs
+10
-0
performance/Performance.EntityModels/Entity/mod_extract.cs
+59
-0
performance/Performance.EntityModels/Entity/mod_item.cs
+54
-0
performance/Performance.EntityModels/Entity/mod_module.cs
+44
-0
performance/Performance.EntityModels/Entity/mod_special.cs
+49
-0
performance/Performance.Repository/Repository/PerforCofsinglefactorRepository.cs
+20
-0
performance/Performance.Repository/Repository/PerforModextractRepository.cs
+20
-0
performance/Performance.Repository/Repository/PerforModitemRepository.cs
+20
-0
performance/Performance.Repository/Repository/PerforModmoduleRepository.cs
+20
-0
performance/Performance.Repository/Repository/PerforModspecialRepository.cs
+20
-0
No files found.
performance/Performance.EntityModels/Context/PerformanceDbContext.cs
View file @
0c5cc3b8
...
@@ -42,6 +42,8 @@ public PerformanceDbContext(DbContextOptions<PerformanceDbContext> options)
...
@@ -42,6 +42,8 @@ public PerformanceDbContext(DbContextOptions<PerformanceDbContext> options)
public
virtual
DbSet
<
cof_drugtype
>
cof_drugtype
{
get
;
set
;
}
public
virtual
DbSet
<
cof_drugtype
>
cof_drugtype
{
get
;
set
;
}
/// <summary> ICU医生护士有效收入汇总计算系数 <summary>
/// <summary> ICU医生护士有效收入汇总计算系数 <summary>
public
virtual
DbSet
<
cof_income
>
cof_income
{
get
;
set
;
}
public
virtual
DbSet
<
cof_income
>
cof_income
{
get
;
set
;
}
/// <summary> 特殊绩效项指标 <summary>
public
virtual
DbSet
<
cof_singlefactor
>
cof_singlefactor
{
get
;
set
;
}
/// <summary> 工龄对应绩效系数配置 <summary>
/// <summary> 工龄对应绩效系数配置 <summary>
public
virtual
DbSet
<
cof_workyear
>
cof_workyear
{
get
;
set
;
}
public
virtual
DbSet
<
cof_workyear
>
cof_workyear
{
get
;
set
;
}
/// <summary> <summary>
/// <summary> <summary>
...
@@ -60,6 +62,14 @@ public PerformanceDbContext(DbContextOptions<PerformanceDbContext> options)
...
@@ -60,6 +62,14 @@ public PerformanceDbContext(DbContextOptions<PerformanceDbContext> options)
public
virtual
DbSet
<
log_check
>
log_check
{
get
;
set
;
}
public
virtual
DbSet
<
log_check
>
log_check
{
get
;
set
;
}
/// <summary> <summary>
/// <summary> <summary>
public
virtual
DbSet
<
log_dbug
>
log_dbug
{
get
;
set
;
}
public
virtual
DbSet
<
log_dbug
>
log_dbug
{
get
;
set
;
}
/// <summary> 医院数据提取脚本 <summary>
public
virtual
DbSet
<
mod_extract
>
mod_extract
{
get
;
set
;
}
/// <summary> <summary>
public
virtual
DbSet
<
mod_item
>
mod_item
{
get
;
set
;
}
/// <summary> <summary>
public
virtual
DbSet
<
mod_module
>
mod_module
{
get
;
set
;
}
/// <summary> <summary>
public
virtual
DbSet
<
mod_special
>
mod_special
{
get
;
set
;
}
/// <summary> <summary>
/// <summary> <summary>
public
virtual
DbSet
<
per_againallot
>
per_againallot
{
get
;
set
;
}
public
virtual
DbSet
<
per_againallot
>
per_againallot
{
get
;
set
;
}
/// <summary> 医院绩效分配 <summary>
/// <summary> 医院绩效分配 <summary>
...
...
performance/Performance.EntityModels/Entity/mod_extract.cs
0 → 100644
View file @
0c5cc3b8
//-----------------------------------------------------------------------
// <copyright file=" mod_extract.cs">
// * FileName: 医院数据提取脚本.cs
// </copyright>
//-----------------------------------------------------------------------
using
System
;
using
System.ComponentModel.DataAnnotations
;
using
System.ComponentModel.DataAnnotations.Schema
;
namespace
Performance.EntityModels
{
/// <summary>
/// 医院数据提取脚本
/// </summary>
[
Table
(
"mod_extract"
)]
public
class
mod_extract
{
/// <summary>
///
/// </summary>
[
Key
]
public
int
Id
{
get
;
set
;
}
/// <summary>
/// 医院ID
/// </summary>
public
Nullable
<
int
>
HospitalId
{
get
;
set
;
}
/// <summary>
/// 当前脚本提取内容名称
/// </summary>
public
string
EName
{
get
;
set
;
}
/// <summary>
/// 执行脚本
/// </summary>
public
string
ExecuteScript
{
get
;
set
;
}
/// <summary>
/// 当前脚本类型 1 收入整表 2 单项数据提取
/// </summary>
public
Nullable
<
int
>
ExecuteType
{
get
;
set
;
}
/// <summary>
/// 数据库来源类型 1 标准库 2 绩效库
/// </summary>
public
Nullable
<
int
>
SourceType
{
get
;
set
;
}
/// <summary>
/// 描述
/// </summary>
public
string
Description
{
get
;
set
;
}
/// <summary>
/// 是否可用 1 可用 2 不可用
/// </summary>
public
Nullable
<
int
>
IsEnable
{
get
;
set
;
}
}
}
performance/Performance.EntityModels/Entity/mod_item.cs
0 → 100644
View file @
0c5cc3b8
//-----------------------------------------------------------------------
// <copyright file=" mod_item.cs">
// * FileName: .cs
// </copyright>
//-----------------------------------------------------------------------
using
System
;
using
System.ComponentModel.DataAnnotations
;
using
System.ComponentModel.DataAnnotations.Schema
;
namespace
Performance.EntityModels
{
/// <summary>
///
/// </summary>
[
Table
(
"mod_item"
)]
public
class
mod_item
{
/// <summary>
///
/// </summary>
[
Key
]
public
int
Id
{
get
;
set
;
}
/// <summary>
///
/// </summary>
public
Nullable
<
int
>
ModuleId
{
get
;
set
;
}
/// <summary>
/// 绩效考核项
/// </summary>
public
string
ItemName
{
get
;
set
;
}
/// <summary>
/// 默认系数或医生系数
/// </summary>
public
Nullable
<
decimal
>
FactorValue1
{
get
;
set
;
}
/// <summary>
/// 护理系数
/// </summary>
public
Nullable
<
decimal
>
FactorValue2
{
get
;
set
;
}
/// <summary>
/// 抽取绩效值SQL
/// </summary>
public
Nullable
<
int
>
ExtractId
{
get
;
set
;
}
/// <summary>
/// 用户选定抽取范围
/// </summary>
public
string
SelectionRange
{
get
;
set
;
}
}
}
performance/Performance.EntityModels/Entity/mod_module.cs
0 → 100644
View file @
0c5cc3b8
//-----------------------------------------------------------------------
// <copyright file=" mod_module.cs">
// * FileName: .cs
// </copyright>
//-----------------------------------------------------------------------
using
System
;
using
System.ComponentModel.DataAnnotations
;
using
System.ComponentModel.DataAnnotations.Schema
;
namespace
Performance.EntityModels
{
/// <summary>
///
/// </summary>
[
Table
(
"mod_module"
)]
public
class
mod_module
{
/// <summary>
///
/// </summary>
[
Key
]
public
int
Id
{
get
;
set
;
}
/// <summary>
///
/// </summary>
public
Nullable
<
int
>
HospitalId
{
get
;
set
;
}
/// <summary>
///
/// </summary>
public
string
ModuleName
{
get
;
set
;
}
/// <summary>
///
/// </summary>
public
string
Description
{
get
;
set
;
}
/// <summary>
/// 提取脚本ID
/// </summary>
public
Nullable
<
int
>
ExtractId
{
get
;
set
;
}
}
}
performance/Performance.EntityModels/Entity/mod_special.cs
0 → 100644
View file @
0c5cc3b8
//-----------------------------------------------------------------------
// <copyright file=" mod_special.cs">
// * FileName: .cs
// </copyright>
//-----------------------------------------------------------------------
using
System
;
using
System.ComponentModel.DataAnnotations
;
using
System.ComponentModel.DataAnnotations.Schema
;
namespace
Performance.EntityModels
{
/// <summary>
///
/// </summary>
[
Table
(
"mod_special"
)]
public
class
mod_special
{
/// <summary>
///
/// </summary>
[
Key
]
public
int
Id
{
get
;
set
;
}
/// <summary>
///
/// </summary>
public
Nullable
<
int
>
HospitalId
{
get
;
set
;
}
/// <summary>
/// 科室
/// </summary>
public
string
Department
{
get
;
set
;
}
/// <summary>
/// 量化指标
/// </summary>
public
string
Target
{
get
;
set
;
}
/// <summary>
/// 量化指标绩效分值
/// </summary>
public
Nullable
<
decimal
>
TargetFactor
{
get
;
set
;
}
/// <summary>
/// 调节系数
/// </summary>
public
Nullable
<
decimal
>
AdjustFactor
{
get
;
set
;
}
}
}
performance/Performance.Repository/Repository/PerforCofsinglefactorRepository.cs
0 → 100644
View file @
0c5cc3b8
//-----------------------------------------------------------------------
// <copyright file=" cof_singlefactor.cs">
// * FileName: cof_singlefactor.cs
// </copyright>
//-----------------------------------------------------------------------
using
System
;
using
Performance.EntityModels
;
namespace
Performance.Repository
{
/// <summary>
/// cof_singlefactor Repository
/// </summary>
public
partial
class
PerforCofsinglefactorRepository
:
PerforRepository
<
cof_singlefactor
>
{
public
PerforCofsinglefactorRepository
(
PerformanceDbContext
context
)
:
base
(
context
)
{
}
}
}
performance/Performance.Repository/Repository/PerforModextractRepository.cs
0 → 100644
View file @
0c5cc3b8
//-----------------------------------------------------------------------
// <copyright file=" mod_extract.cs">
// * FileName: mod_extract.cs
// </copyright>
//-----------------------------------------------------------------------
using
System
;
using
Performance.EntityModels
;
namespace
Performance.Repository
{
/// <summary>
/// mod_extract Repository
/// </summary>
public
partial
class
PerforModextractRepository
:
PerforRepository
<
mod_extract
>
{
public
PerforModextractRepository
(
PerformanceDbContext
context
)
:
base
(
context
)
{
}
}
}
performance/Performance.Repository/Repository/PerforModitemRepository.cs
0 → 100644
View file @
0c5cc3b8
//-----------------------------------------------------------------------
// <copyright file=" mod_item.cs">
// * FileName: mod_item.cs
// </copyright>
//-----------------------------------------------------------------------
using
System
;
using
Performance.EntityModels
;
namespace
Performance.Repository
{
/// <summary>
/// mod_item Repository
/// </summary>
public
partial
class
PerforModitemRepository
:
PerforRepository
<
mod_item
>
{
public
PerforModitemRepository
(
PerformanceDbContext
context
)
:
base
(
context
)
{
}
}
}
performance/Performance.Repository/Repository/PerforModmoduleRepository.cs
0 → 100644
View file @
0c5cc3b8
//-----------------------------------------------------------------------
// <copyright file=" mod_module.cs">
// * FileName: mod_module.cs
// </copyright>
//-----------------------------------------------------------------------
using
System
;
using
Performance.EntityModels
;
namespace
Performance.Repository
{
/// <summary>
/// mod_module Repository
/// </summary>
public
partial
class
PerforModmoduleRepository
:
PerforRepository
<
mod_module
>
{
public
PerforModmoduleRepository
(
PerformanceDbContext
context
)
:
base
(
context
)
{
}
}
}
performance/Performance.Repository/Repository/PerforModspecialRepository.cs
0 → 100644
View file @
0c5cc3b8
//-----------------------------------------------------------------------
// <copyright file=" mod_special.cs">
// * FileName: mod_special.cs
// </copyright>
//-----------------------------------------------------------------------
using
System
;
using
Performance.EntityModels
;
namespace
Performance.Repository
{
/// <summary>
/// mod_special Repository
/// </summary>
public
partial
class
PerforModspecialRepository
:
PerforRepository
<
mod_special
>
{
public
PerforModspecialRepository
(
PerformanceDbContext
context
)
:
base
(
context
)
{
}
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment