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
34d80dd9
Commit
34d80dd9
authored
Jun 02, 2020
by
lcx
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
实体修改
parent
33389d8a
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
123 additions
and
2 deletions
+123
-2
performance/Performance.EntityModels/Context/PerformanceDbContext.cs
+2
-0
performance/Performance.EntityModels/Entity/cof_depttype.cs
+39
-0
performance/Performance.EntityModels/Entity/im_accountbasic.cs
+10
-0
performance/Performance.EntityModels/Entity/im_data.cs
+10
-0
performance/Performance.EntityModels/Entity/im_employee.cs
+10
-0
performance/Performance.EntityModels/Entity/im_employee_clinic.cs
+10
-0
performance/Performance.EntityModels/Entity/im_header.cs
+10
-0
performance/Performance.EntityModels/Entity/im_specialunit.cs
+10
-0
performance/Performance.EntityModels/Entity/per_allot.cs
+1
-1
performance/Performance.EntityModels/Entity/sys_hospital.cs
+1
-1
performance/Performance.Repository/Repository/PerforCofdepttypeRepository.cs
+20
-0
No files found.
performance/Performance.EntityModels/Context/PerformanceDbContext.cs
View file @
34d80dd9
...
...
@@ -54,6 +54,8 @@ public PerformanceDbContext(DbContextOptions<PerformanceDbContext> options)
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_depttype
>
cof_depttype
{
get
;
set
;
}
/// <summary> 规模绩效、效率绩效计算系数配置 </summary>
public
virtual
DbSet
<
cof_director
>
cof_director
{
get
;
set
;
}
/// <summary> 工作量门诊药占比系数 </summary>
...
...
performance/Performance.EntityModels/Entity/cof_depttype.cs
0 → 100644
View file @
34d80dd9
//-----------------------------------------------------------------------
// <copyright file=" cof_depttype.cs">
// * FileName: 科室类型.cs
// </copyright>
//-----------------------------------------------------------------------
using
System
;
using
System.ComponentModel.DataAnnotations
;
using
System.ComponentModel.DataAnnotations.Schema
;
namespace
Performance.EntityModels
{
/// <summary>
/// 科室类型
/// </summary>
[
Table
(
"cof_depttype"
)]
public
class
cof_depttype
{
/// <summary>
///
/// </summary>
[
Key
]
public
int
ID
{
get
;
set
;
}
/// <summary>
///
/// </summary>
public
Nullable
<
int
>
AllotID
{
get
;
set
;
}
/// <summary>
/// 科室
/// </summary>
public
string
Charge
{
get
;
set
;
}
/// <summary>
/// 可是分类
/// </summary>
public
string
ChargeType
{
get
;
set
;
}
}
}
performance/Performance.EntityModels/Entity/im_accountbasic.cs
View file @
34d80dd9
...
...
@@ -205,5 +205,15 @@ public class im_accountbasic
/// 工作量倾斜系数
/// </summary>
public
Nullable
<
decimal
>
WorkSlopeFactor
{
get
;
set
;
}
/// <summary>
///
/// </summary>
public
Nullable
<
DateTime
>
UpdateDate
{
get
;
set
;
}
/// <summary>
///
/// </summary>
public
Nullable
<
int
>
UpdateUser
{
get
;
set
;
}
}
}
performance/Performance.EntityModels/Entity/im_data.cs
View file @
34d80dd9
...
...
@@ -95,5 +95,15 @@ public class im_data
///
/// </summary>
public
string
SignID
{
get
;
set
;
}
/// <summary>
///
/// </summary>
public
Nullable
<
DateTime
>
UpdateDate
{
get
;
set
;
}
/// <summary>
///
/// </summary>
public
Nullable
<
int
>
UpdateUser
{
get
;
set
;
}
}
}
performance/Performance.EntityModels/Entity/im_employee.cs
View file @
34d80dd9
...
...
@@ -125,5 +125,15 @@ public class im_employee
/// 发放系数
/// </summary>
public
Nullable
<
decimal
>
Grant
{
get
;
set
;
}
/// <summary>
///
/// </summary>
public
Nullable
<
DateTime
>
UpdateDate
{
get
;
set
;
}
/// <summary>
///
/// </summary>
public
Nullable
<
int
>
UpdateUser
{
get
;
set
;
}
}
}
performance/Performance.EntityModels/Entity/im_employee_clinic.cs
View file @
34d80dd9
...
...
@@ -130,5 +130,15 @@ public class im_employee_clinic
/// 发放系数
/// </summary>
public
Nullable
<
decimal
>
Grant
{
get
;
set
;
}
/// <summary>
///
/// </summary>
public
Nullable
<
DateTime
>
UpdateDate
{
get
;
set
;
}
/// <summary>
///
/// </summary>
public
Nullable
<
int
>
UpdateUser
{
get
;
set
;
}
}
}
performance/Performance.EntityModels/Entity/im_header.cs
View file @
34d80dd9
...
...
@@ -75,5 +75,15 @@ public class im_header
/// 1 汇总 2原始数据
/// </summary>
public
Nullable
<
int
>
IsTotal
{
get
;
set
;
}
/// <summary>
///
/// </summary>
public
Nullable
<
DateTime
>
UpdateDate
{
get
;
set
;
}
/// <summary>
///
/// </summary>
public
Nullable
<
int
>
UpdateUser
{
get
;
set
;
}
}
}
performance/Performance.EntityModels/Entity/im_specialunit.cs
View file @
34d80dd9
...
...
@@ -80,5 +80,15 @@ public class im_specialunit
/// 调节系数
/// </summary>
public
Nullable
<
decimal
>
Adjust
{
get
;
set
;
}
/// <summary>
///
/// </summary>
public
Nullable
<
DateTime
>
UpdateDate
{
get
;
set
;
}
/// <summary>
///
/// </summary>
public
Nullable
<
int
>
UpdateUser
{
get
;
set
;
}
}
}
performance/Performance.EntityModels/Entity/per_allot.cs
View file @
34d80dd9
...
...
@@ -80,7 +80,7 @@ public class per_allot
/// 是否在抽取数据0 否、1 是、2 抽取成功、3 抽取失败
/// </summary>
public
Nullable
<
int
>
IsExtracting
{
get
;
set
;
}
/// <summary>
/// 1、人事科提交重新生成
/// </summary>
...
...
performance/Performance.EntityModels/Entity/sys_hospital.cs
View file @
34d80dd9
...
...
@@ -80,7 +80,7 @@ public class sys_hospital
/// 是否开启规模/效率绩效 1 启用 2 禁用
/// </summary>
public
Nullable
<
int
>
IsOpenDirector
{
get
;
set
;
}
/// <summary>
/// 是否显示绩效合计 1 显示绩效合计 2 显示管理绩效
/// </summary>
...
...
performance/Performance.Repository/Repository/PerforCofdepttypeRepository.cs
0 → 100644
View file @
34d80dd9
//-----------------------------------------------------------------------
// <copyright file=" cof_depttype.cs">
// * FileName: cof_depttype.cs
// </copyright>
//-----------------------------------------------------------------------
using
System
;
using
Performance.EntityModels
;
namespace
Performance.Repository
{
/// <summary>
/// cof_depttype Repository
/// </summary>
public
partial
class
PerforCofdepttypeRepository
:
PerforRepository
<
cof_depttype
>
{
public
PerforCofdepttypeRepository
(
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