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
c3f25536
Commit
c3f25536
authored
Jun 03, 2020
by
lcx
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
增加实体
parent
33389d8a
Show whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
370 additions
and
0 deletions
+370
-0
performance/Performance.EntityModels/Context/PerformanceDbContext.cs
+10
-0
performance/Performance.EntityModels/Entity/ex_item.cs
+64
-0
performance/Performance.EntityModels/Entity/ex_module.cs
+59
-0
performance/Performance.EntityModels/Entity/ex_result.cs
+49
-0
performance/Performance.EntityModels/Entity/ex_script.cs
+44
-0
performance/Performance.EntityModels/Entity/ex_type.cs
+44
-0
performance/Performance.Repository/Repository/PerforExitemRepository.cs
+20
-0
performance/Performance.Repository/Repository/PerforExmoduleRepository.cs
+20
-0
performance/Performance.Repository/Repository/PerforExresultRepository.cs
+20
-0
performance/Performance.Repository/Repository/PerforExscriptRepository.cs
+20
-0
performance/Performance.Repository/Repository/PerforExtypeRepository.cs
+20
-0
No files found.
performance/Performance.EntityModels/Context/PerformanceDbContext.cs
View file @
c3f25536
...
@@ -71,6 +71,16 @@ public PerformanceDbContext(DbContextOptions<PerformanceDbContext> options)
...
@@ -71,6 +71,16 @@ public PerformanceDbContext(DbContextOptions<PerformanceDbContext> options)
/// <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>
public
virtual
DbSet
<
ex_item
>
ex_item
{
get
;
set
;
}
/// <summary> </summary>
public
virtual
DbSet
<
ex_module
>
ex_module
{
get
;
set
;
}
/// <summary> </summary>
public
virtual
DbSet
<
ex_result
>
ex_result
{
get
;
set
;
}
/// <summary> </summary>
public
virtual
DbSet
<
ex_script
>
ex_script
{
get
;
set
;
}
/// <summary> </summary>
public
virtual
DbSet
<
ex_type
>
ex_type
{
get
;
set
;
}
/// <summary> </summary>
public
virtual
DbSet
<
hos_personfee
>
hos_personfee
{
get
;
set
;
}
public
virtual
DbSet
<
hos_personfee
>
hos_personfee
{
get
;
set
;
}
/// <summary> 科室核算导入信息 </summary>
/// <summary> 科室核算导入信息 </summary>
public
virtual
DbSet
<
im_accountbasic
>
im_accountbasic
{
get
;
set
;
}
public
virtual
DbSet
<
im_accountbasic
>
im_accountbasic
{
get
;
set
;
}
...
...
performance/Performance.EntityModels/Entity/ex_item.cs
0 → 100644
View file @
c3f25536
//-----------------------------------------------------------------------
// <copyright file=" ex_item.cs">
// * FileName: .cs
// </copyright>
//-----------------------------------------------------------------------
using
System
;
using
System.ComponentModel.DataAnnotations
;
using
System.ComponentModel.DataAnnotations.Schema
;
namespace
Performance.EntityModels
{
/// <summary>
///
/// </summary>
[
Table
(
"ex_item"
)]
public
class
ex_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>
/// 医技系数
/// </summary>
public
Nullable
<
decimal
>
FactorValue3
{
get
;
set
;
}
/// <summary>
/// 抽取绩效值SQL
/// </summary>
public
Nullable
<
int
>
ExtractId
{
get
;
set
;
}
/// <summary>
/// 数据库地址
/// </summary>
public
Nullable
<
int
>
ConfigId
{
get
;
set
;
}
/// <summary>
/// 只读 0、否 1、是
/// </summary>
public
Nullable
<
int
>
ReadOnly
{
get
;
set
;
}
}
}
performance/Performance.EntityModels/Entity/ex_module.cs
0 → 100644
View file @
c3f25536
//-----------------------------------------------------------------------
// <copyright file=" ex_module.cs">
// * FileName: .cs
// </copyright>
//-----------------------------------------------------------------------
using
System
;
using
System.ComponentModel.DataAnnotations
;
using
System.ComponentModel.DataAnnotations.Schema
;
namespace
Performance.EntityModels
{
/// <summary>
///
/// </summary>
[
Table
(
"ex_module"
)]
public
class
ex_module
{
/// <summary>
///
/// </summary>
[
Key
]
public
int
Id
{
get
;
set
;
}
/// <summary>
///
/// </summary>
public
Nullable
<
int
>
HospitalId
{
get
;
set
;
}
/// <summary>
///
/// </summary>
public
Nullable
<
int
>
SheetType
{
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
;
}
/// <summary>
/// 数据库地址
/// </summary>
public
Nullable
<
int
>
ConfigId
{
get
;
set
;
}
/// <summary>
/// 只读 0、否 1、是
/// </summary>
public
Nullable
<
int
>
ReadOnly
{
get
;
set
;
}
}
}
performance/Performance.EntityModels/Entity/ex_result.cs
0 → 100644
View file @
c3f25536
//-----------------------------------------------------------------------
// <copyright file=" ex_result.cs">
// * FileName: .cs
// </copyright>
//-----------------------------------------------------------------------
using
System
;
using
System.ComponentModel.DataAnnotations
;
using
System.ComponentModel.DataAnnotations.Schema
;
namespace
Performance.EntityModels
{
/// <summary>
///
/// </summary>
[
Table
(
"ex_result"
)]
public
class
ex_result
{
/// <summary>
///
/// </summary>
[
Key
]
public
int
Id
{
get
;
set
;
}
/// <summary>
/// 科室
/// </summary>
public
string
Department
{
get
;
set
;
}
/// <summary>
/// 费用类型
/// </summary>
public
string
Category
{
get
;
set
;
}
/// <summary>
/// 费用
/// </summary>
public
Nullable
<
decimal
>
Fee
{
get
;
set
;
}
/// <summary>
/// 来源
/// </summary>
public
int
Source
{
get
;
set
;
}
/// <summary>
/// 数据库类型1、Sql Server 2、Orcale
/// </summary>
public
int
DatabaseType
{
get
;
set
;
}
}
}
performance/Performance.EntityModels/Entity/ex_script.cs
0 → 100644
View file @
c3f25536
//-----------------------------------------------------------------------
// <copyright file=" ex_script.cs">
// * FileName: .cs
// </copyright>
//-----------------------------------------------------------------------
using
System
;
using
System.ComponentModel.DataAnnotations
;
using
System.ComponentModel.DataAnnotations.Schema
;
namespace
Performance.EntityModels
{
/// <summary>
///
/// </summary>
[
Table
(
"ex_script"
)]
public
class
ex_script
{
/// <summary>
///
/// </summary>
[
Key
]
public
int
Id
{
get
;
set
;
}
/// <summary>
/// 执行sql
/// </summary>
public
string
ExecScript
{
get
;
set
;
}
/// <summary>
/// 数据库类型1、Sql Server 2、Orcale
/// </summary>
public
int
DatabaseType
{
get
;
set
;
}
/// <summary>
/// ExTypeId
/// </summary>
public
int
TypeId
{
get
;
set
;
}
/// <summary>
/// 是否可用 1 可用 2 不可用
/// </summary>
public
int
IsEnable
{
get
;
set
;
}
}
}
performance/Performance.EntityModels/Entity/ex_type.cs
0 → 100644
View file @
c3f25536
//-----------------------------------------------------------------------
// <copyright file=" ex_type.cs">
// * FileName: .cs
// </copyright>
//-----------------------------------------------------------------------
using
System
;
using
System.ComponentModel.DataAnnotations
;
using
System.ComponentModel.DataAnnotations.Schema
;
namespace
Performance.EntityModels
{
/// <summary>
///
/// </summary>
[
Table
(
"ex_type"
)]
public
class
ex_type
{
/// <summary>
///
/// </summary>
[
Key
]
public
int
Id
{
get
;
set
;
}
/// <summary>
/// 医院Id
/// </summary>
public
int
HospitalId
{
get
;
set
;
}
/// <summary>
/// 名称
/// </summary>
public
string
EName
{
get
;
set
;
}
/// <summary>
/// 描述
/// </summary>
public
string
Description
{
get
;
set
;
}
/// <summary>
/// 来源
/// </summary>
public
int
Source
{
get
;
set
;
}
}
}
performance/Performance.Repository/Repository/PerforExitemRepository.cs
0 → 100644
View file @
c3f25536
//-----------------------------------------------------------------------
// <copyright file=" ex_item.cs">
// * FileName: ex_item.cs
// </copyright>
//-----------------------------------------------------------------------
using
System
;
using
Performance.EntityModels
;
namespace
Performance.Repository
{
/// <summary>
/// ex_item Repository
/// </summary>
public
partial
class
PerforExitemRepository
:
PerforRepository
<
ex_item
>
{
public
PerforExitemRepository
(
PerformanceDbContext
context
)
:
base
(
context
)
{
}
}
}
performance/Performance.Repository/Repository/PerforExmoduleRepository.cs
0 → 100644
View file @
c3f25536
//-----------------------------------------------------------------------
// <copyright file=" ex_module.cs">
// * FileName: ex_module.cs
// </copyright>
//-----------------------------------------------------------------------
using
System
;
using
Performance.EntityModels
;
namespace
Performance.Repository
{
/// <summary>
/// ex_module Repository
/// </summary>
public
partial
class
PerforExmoduleRepository
:
PerforRepository
<
ex_module
>
{
public
PerforExmoduleRepository
(
PerformanceDbContext
context
)
:
base
(
context
)
{
}
}
}
performance/Performance.Repository/Repository/PerforExresultRepository.cs
0 → 100644
View file @
c3f25536
//-----------------------------------------------------------------------
// <copyright file=" ex_result.cs">
// * FileName: ex_result.cs
// </copyright>
//-----------------------------------------------------------------------
using
System
;
using
Performance.EntityModels
;
namespace
Performance.Repository
{
/// <summary>
/// ex_result Repository
/// </summary>
public
partial
class
PerforExresultRepository
:
PerforRepository
<
ex_result
>
{
public
PerforExresultRepository
(
PerformanceDbContext
context
)
:
base
(
context
)
{
}
}
}
performance/Performance.Repository/Repository/PerforExscriptRepository.cs
0 → 100644
View file @
c3f25536
//-----------------------------------------------------------------------
// <copyright file=" ex_script.cs">
// * FileName: ex_script.cs
// </copyright>
//-----------------------------------------------------------------------
using
System
;
using
Performance.EntityModels
;
namespace
Performance.Repository
{
/// <summary>
/// ex_script Repository
/// </summary>
public
partial
class
PerforExscriptRepository
:
PerforRepository
<
ex_script
>
{
public
PerforExscriptRepository
(
PerformanceDbContext
context
)
:
base
(
context
)
{
}
}
}
performance/Performance.Repository/Repository/PerforExtypeRepository.cs
0 → 100644
View file @
c3f25536
//-----------------------------------------------------------------------
// <copyright file=" ex_type.cs">
// * FileName: ex_type.cs
// </copyright>
//-----------------------------------------------------------------------
using
System
;
using
Performance.EntityModels
;
namespace
Performance.Repository
{
/// <summary>
/// ex_type Repository
/// </summary>
public
partial
class
PerforExtypeRepository
:
PerforRepository
<
ex_type
>
{
public
PerforExtypeRepository
(
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