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
99bf0116
Commit
99bf0116
authored
May 25, 2020
by
lcx
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
二次绩效工作量占比类型相关实体
parent
7aee75fa
Show whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
59 additions
and
3 deletions
+59
-3
performance/Performance.EntityModels/Context/PerformanceDbContext.cs
+2
-0
performance/Performance.EntityModels/Entity/ag_fixatitem.cs
+0
-0
performance/Performance.EntityModels/Entity/ag_tempitem.cs
+0
-0
performance/Performance.EntityModels/Entity/ag_workload.cs
+2
-2
performance/Performance.EntityModels/Entity/ag_workload_type.cs
+34
-0
performance/Performance.EntityModels/Entity/im_accountbasic.cs
+0
-0
performance/Performance.EntityModels/Entity/per_budget_amount.cs
+0
-0
performance/Performance.EntityModels/Entity/per_budget_ratio.cs
+0
-0
performance/Performance.EntityModels/Entity/per_budget_result.cs
+1
-1
performance/Performance.EntityModels/Entity/res_account.cs
+0
-0
performance/Performance.Repository/Repository/PerforAgworkloadtypeRepository.cs
+20
-0
No files found.
performance/Performance.EntityModels/Context/PerformanceDbContext.cs
View file @
99bf0116
...
@@ -38,6 +38,8 @@ public PerformanceDbContext(DbContextOptions<PerformanceDbContext> options)
...
@@ -38,6 +38,8 @@ public PerformanceDbContext(DbContextOptions<PerformanceDbContext> options)
public
virtual
DbSet
<
ag_usetemp
>
ag_usetemp
{
get
;
set
;
}
public
virtual
DbSet
<
ag_usetemp
>
ag_usetemp
{
get
;
set
;
}
/// <summary> 二次绩效工作量绩效 </summary>
/// <summary> 二次绩效工作量绩效 </summary>
public
virtual
DbSet
<
ag_workload
>
ag_workload
{
get
;
set
;
}
public
virtual
DbSet
<
ag_workload
>
ag_workload
{
get
;
set
;
}
/// <summary> </summary>
public
virtual
DbSet
<
ag_workload_type
>
ag_workload_type
{
get
;
set
;
}
/// <summary> 考核类别 </summary>
/// <summary> 考核类别 </summary>
public
virtual
DbSet
<
as_assess
>
as_assess
{
get
;
set
;
}
public
virtual
DbSet
<
as_assess
>
as_assess
{
get
;
set
;
}
/// <summary> 考核列头 </summary>
/// <summary> 考核列头 </summary>
...
...
performance/Performance.EntityModels/Entity/ag_fixatitem.cs
View file @
99bf0116
performance/Performance.EntityModels/Entity/ag_tempitem.cs
View file @
99bf0116
performance/Performance.EntityModels/Entity/ag_workload.cs
View file @
99bf0116
...
@@ -57,8 +57,8 @@ public class ag_workload
...
@@ -57,8 +57,8 @@ public class ag_workload
public
Nullable
<
decimal
>
Sort
{
get
;
set
;
}
public
Nullable
<
decimal
>
Sort
{
get
;
set
;
}
/// <summary>
/// <summary>
/// 1、
工作量 2、其他
/// 1、
单项奖励 2、工作量占比 ..(自定义占比)
/// </summary>
/// </summary>
public
int
Type
{
get
;
set
;
}
public
int
WorkTypeId
{
get
;
set
;
}
}
}
}
}
performance/Performance.EntityModels/Entity/ag_workload_type.cs
0 → 100644
View file @
99bf0116
//-----------------------------------------------------------------------
// <copyright file=" ag_workload_type.cs">
// * FileName: .cs
// </copyright>
//-----------------------------------------------------------------------
using
System
;
using
System.ComponentModel.DataAnnotations
;
using
System.ComponentModel.DataAnnotations.Schema
;
namespace
Performance.EntityModels
{
/// <summary>
///
/// </summary>
[
Table
(
"ag_workload_type"
)]
public
class
ag_workload_type
{
/// <summary>
///
/// </summary>
[
Key
]
public
int
Id
{
get
;
set
;
}
/// <summary>
///
/// </summary>
public
int
HospitalId
{
get
;
set
;
}
/// <summary>
///
/// </summary>
public
string
TypeName
{
get
;
set
;
}
}
}
performance/Performance.EntityModels/Entity/im_accountbasic.cs
View file @
99bf0116
performance/Performance.EntityModels/Entity/per_budget_amount.cs
View file @
99bf0116
performance/Performance.EntityModels/Entity/per_budget_ratio.cs
View file @
99bf0116
performance/Performance.EntityModels/Entity/per_budget_result.cs
View file @
99bf0116
...
@@ -152,7 +152,7 @@ public class per_budget_result
...
@@ -152,7 +152,7 @@ public class per_budget_result
public
Nullable
<
decimal
>
NoPerformanceExpenditureRatio
{
get
;
set
;
}
public
Nullable
<
decimal
>
NoPerformanceExpenditureRatio
{
get
;
set
;
}
/// <summary>
/// <summary>
/// 1.初始 2.
确认使用发放/调节系数 3.取消使用
/// 1.初始 2.
确认使用发放/调节系数
/// </summary>
/// </summary>
public
int
States
{
get
;
set
;
}
public
int
States
{
get
;
set
;
}
...
...
performance/Performance.EntityModels/Entity/res_account.cs
View file @
99bf0116
performance/Performance.Repository/Repository/PerforAgworkloadtypeRepository.cs
0 → 100644
View file @
99bf0116
//-----------------------------------------------------------------------
// <copyright file=" ag_workload_type.cs">
// * FileName: ag_workload_type.cs
// </copyright>
//-----------------------------------------------------------------------
using
System
;
using
Performance.EntityModels
;
namespace
Performance.Repository
{
/// <summary>
/// ag_workload_type Repository
/// </summary>
public
partial
class
PerforAgworkloadtypeRepository
:
PerforRepository
<
ag_workload_type
>
{
public
PerforAgworkloadtypeRepository
(
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