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
8a4e754e
Commit
8a4e754e
authored
Apr 09, 2019
by
李承祥
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
no message
parent
c52d13a2
Show whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
300 additions
and
0 deletions
+300
-0
performance/Performance.EntityModels/Context/PerformanceDbContext.cs
+10
-0
performance/Performance.EntityModels/Entity/as_assess.cs
+29
-0
performance/Performance.EntityModels/Entity/as_columns.cs
+39
-0
performance/Performance.EntityModels/Entity/as_data.cs
+39
-0
performance/Performance.EntityModels/Entity/cof_check.cs
+34
-0
performance/Performance.EntityModels/Entity/log_check.cs
+49
-0
performance/Performance.Repository/Repository/PerforAsassessRepository.cs
+20
-0
performance/Performance.Repository/Repository/PerforAscolumnsRepository.cs
+20
-0
performance/Performance.Repository/Repository/PerforAsdataRepository.cs
+20
-0
performance/Performance.Repository/Repository/PerforCofcheckRepository.cs
+20
-0
performance/Performance.Repository/Repository/PerforLogcheckRepository.cs
+20
-0
No files found.
performance/Performance.EntityModels/Context/PerformanceDbContext.cs
View file @
8a4e754e
...
...
@@ -20,8 +20,16 @@ public PerformanceDbContext(DbContextOptions<PerformanceDbContext> options)
public
virtual
DbSet
<
ag_employee
>
ag_employee
{
get
;
set
;
}
/// <summary> 二次分配不固定列头数据 <summary>
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>
public
virtual
DbSet
<
cof_again
>
cof_again
{
get
;
set
;
}
/// <summary> 上传excel文件校验配置 <summary>
public
virtual
DbSet
<
cof_check
>
cof_check
{
get
;
set
;
}
/// <summary> 规模绩效、效率绩效计算系数配置 <summary>
public
virtual
DbSet
<
cof_director
>
cof_director
{
get
;
set
;
}
/// <summary> 工作量门诊药占比系数 <summary>
...
...
@@ -41,6 +49,8 @@ public PerformanceDbContext(DbContextOptions<PerformanceDbContext> options)
/// <summary> 特殊科室核算 <summary>
public
virtual
DbSet
<
im_specialunit
>
im_specialunit
{
get
;
set
;
}
/// <summary> <summary>
public
virtual
DbSet
<
log_check
>
log_check
{
get
;
set
;
}
/// <summary> <summary>
public
virtual
DbSet
<
log_dbug
>
log_dbug
{
get
;
set
;
}
/// <summary> <summary>
public
virtual
DbSet
<
per_againallot
>
per_againallot
{
get
;
set
;
}
...
...
performance/Performance.EntityModels/Entity/as_assess.cs
0 → 100644
View file @
8a4e754e
//-----------------------------------------------------------------------
// <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
;
}
}
}
performance/Performance.EntityModels/Entity/as_columns.cs
0 → 100644
View file @
8a4e754e
//-----------------------------------------------------------------------
// <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
;
}
}
}
performance/Performance.EntityModels/Entity/as_data.cs
0 → 100644
View file @
8a4e754e
//-----------------------------------------------------------------------
// <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
;
}
}
}
performance/Performance.EntityModels/Entity/cof_check.cs
0 → 100644
View file @
8a4e754e
//-----------------------------------------------------------------------
// <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
;
}
}
}
performance/Performance.EntityModels/Entity/log_check.cs
0 → 100644
View file @
8a4e754e
//-----------------------------------------------------------------------
// <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
;
}
}
}
performance/Performance.Repository/Repository/PerforAsassessRepository.cs
0 → 100644
View file @
8a4e754e
//-----------------------------------------------------------------------
// <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
)
{
}
}
}
performance/Performance.Repository/Repository/PerforAscolumnsRepository.cs
0 → 100644
View file @
8a4e754e
//-----------------------------------------------------------------------
// <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
)
{
}
}
}
performance/Performance.Repository/Repository/PerforAsdataRepository.cs
0 → 100644
View file @
8a4e754e
//-----------------------------------------------------------------------
// <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
)
{
}
}
}
performance/Performance.Repository/Repository/PerforCofcheckRepository.cs
0 → 100644
View file @
8a4e754e
//-----------------------------------------------------------------------
// <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
)
{
}
}
}
performance/Performance.Repository/Repository/PerforLogcheckRepository.cs
0 → 100644
View file @
8a4e754e
//-----------------------------------------------------------------------
// <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
)
{
}
}
}
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