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
96cec430
Commit
96cec430
authored
Apr 02, 2019
by
ruyun.zhang@suvalue.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
开发到一半
parent
f6f59741
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
391 additions
and
0 deletions
+391
-0
performance/Performance.EntityModels/Entity/ag_data.cs
+79
-0
performance/Performance.EntityModels/Entity/ag_employee.cs
+104
-0
performance/Performance.EntityModels/Entity/ag_header.cs
+79
-0
performance/Performance.EntityModels/Entity/cof_again.cs
+49
-0
performance/Performance.Repository/Repository/PerforAgdataRepository.cs
+20
-0
performance/Performance.Repository/Repository/PerforAgemployeeRepository.cs
+20
-0
performance/Performance.Repository/Repository/PerforAgheaderRepository.cs
+20
-0
performance/Performance.Repository/Repository/PerforCofagainRepository.cs
+20
-0
No files found.
performance/Performance.EntityModels/Entity/ag_data.cs
0 → 100644
View file @
96cec430
//-----------------------------------------------------------------------
// <copyright file=" ag_data.cs">
// * FileName: 二次分配不固定数据.cs
// </copyright>
//-----------------------------------------------------------------------
using
System
;
using
System.ComponentModel.DataAnnotations
;
using
System.ComponentModel.DataAnnotations.Schema
;
namespace
Performance.EntityModels
{
/// <summary>
/// 二次分配不固定数据
/// </summary>
[
Table
(
"ag_data"
)]
public
class
ag_data
{
/// <summary>
///
/// </summary>
[
Key
]
public
int
ID
{
get
;
set
;
}
/// <summary>
///
/// </summary>
public
Nullable
<
int
>
AllotID
{
get
;
set
;
}
/// <summary>
///
/// </summary>
public
Nullable
<
int
>
AgainAllotID
{
get
;
set
;
}
/// <summary>
/// 行号
/// </summary>
public
Nullable
<
int
>
RowNumber
{
get
;
set
;
}
/// <summary>
/// 列头类型名称
/// </summary>
public
string
TypeName
{
get
;
set
;
}
/// <summary>
/// 单元格value
/// </summary>
public
Nullable
<
decimal
>
CellValue
{
get
;
set
;
}
/// <summary>
/// 1 汇总 2原始数据
/// </summary>
public
Nullable
<
int
>
IsTotal
{
get
;
set
;
}
/// <summary>
/// 是否带入系数计算 1 带入 2 不带入
/// </summary>
public
Nullable
<
int
>
IsFactor
{
get
;
set
;
}
/// <summary>
/// 系数值
/// </summary>
public
Nullable
<
decimal
>
FactorValue
{
get
;
set
;
}
/// <summary>
/// 单元格注释
/// </summary>
public
string
Annotation
{
get
;
set
;
}
/// <summary>
/// 单元格备注
/// </summary>
public
string
Remark
{
get
;
set
;
}
/// <summary>
///
/// </summary>
public
string
SignID
{
get
;
set
;
}
}
}
performance/Performance.EntityModels/Entity/ag_employee.cs
0 → 100644
View file @
96cec430
//-----------------------------------------------------------------------
// <copyright file=" ag_employee.cs">
// * FileName: 二次分配人员名单.cs
// </copyright>
//-----------------------------------------------------------------------
using
System
;
using
System.ComponentModel.DataAnnotations
;
using
System.ComponentModel.DataAnnotations.Schema
;
namespace
Performance.EntityModels
{
/// <summary>
/// 二次分配人员名单
/// </summary>
[
Table
(
"ag_employee"
)]
public
class
ag_employee
{
/// <summary>
///
/// </summary>
[
Key
]
public
int
ID
{
get
;
set
;
}
/// <summary>
///
/// </summary>
public
Nullable
<
int
>
AllotID
{
get
;
set
;
}
/// <summary>
///
/// </summary>
public
Nullable
<
int
>
AgainAllotID
{
get
;
set
;
}
/// <summary>
/// 姓名
/// </summary>
public
string
Name
{
get
;
set
;
}
/// <summary>
/// 职务
/// </summary>
public
string
JobTitle
{
get
;
set
;
}
/// <summary>
/// 职称系数
/// </summary>
public
Nullable
<
decimal
>
JobFactor
{
get
;
set
;
}
/// <summary>
/// 出勤
/// </summary>
public
Nullable
<
decimal
>
Attendance
{
get
;
set
;
}
/// <summary>
/// 年资
/// </summary>
public
Nullable
<
decimal
>
YearFactor
{
get
;
set
;
}
/// <summary>
/// 重点奖励
/// </summary>
public
Nullable
<
decimal
>
Award
{
get
;
set
;
}
/// <summary>
/// 管理津贴
/// </summary>
public
Nullable
<
decimal
>
Allowance
{
get
;
set
;
}
/// <summary>
/// 单独核算人员绩效
/// </summary>
public
Nullable
<
decimal
>
AlonePerfor
{
get
;
set
;
}
/// <summary>
/// 夜班费
/// </summary>
public
Nullable
<
decimal
>
NightShift
{
get
;
set
;
}
/// <summary>
/// 职称出勤系数(需计算)
/// </summary>
public
Nullable
<
decimal
>
JobAttendanceFactor
{
get
;
set
;
}
/// <summary>
/// 年资出勤系数(需计算)
/// </summary>
public
Nullable
<
decimal
>
YearAttendanceFactor
{
get
;
set
;
}
/// <summary>
/// 职称出勤绩效(需计算)
/// </summary>
public
Nullable
<
decimal
>
JobAttendancePerfor
{
get
;
set
;
}
/// <summary>
/// 应发绩效(需计算)
/// </summary>
public
Nullable
<
decimal
>
GiveFee
{
get
;
set
;
}
/// <summary>
/// 实发绩效(需计算)
/// </summary>
public
Nullable
<
decimal
>
RealGiveFee
{
get
;
set
;
}
}
}
performance/Performance.EntityModels/Entity/ag_header.cs
0 → 100644
View file @
96cec430
//-----------------------------------------------------------------------
// <copyright file=" ag_header.cs">
// * FileName: 二次分配不固定列头数据.cs
// </copyright>
//-----------------------------------------------------------------------
using
System
;
using
System.ComponentModel.DataAnnotations
;
using
System.ComponentModel.DataAnnotations.Schema
;
namespace
Performance.EntityModels
{
/// <summary>
/// 二次分配不固定列头数据
/// </summary>
[
Table
(
"ag_header"
)]
public
class
ag_header
{
/// <summary>
///
/// </summary>
[
Key
]
public
int
ID
{
get
;
set
;
}
/// <summary>
///
/// </summary>
public
Nullable
<
int
>
AllotID
{
get
;
set
;
}
/// <summary>
///
/// </summary>
public
Nullable
<
int
>
AgainAllotID
{
get
;
set
;
}
/// <summary>
///
/// </summary>
public
Nullable
<
int
>
ParentID
{
get
;
set
;
}
/// <summary>
/// 行坐标
/// </summary>
public
Nullable
<
int
>
PointRow
{
get
;
set
;
}
/// <summary>
/// 列坐标
/// </summary>
public
Nullable
<
int
>
PointCell
{
get
;
set
;
}
/// <summary>
/// 是否合并 1 合并 2 不合并
/// </summary>
public
Nullable
<
int
>
IsMerge
{
get
;
set
;
}
/// <summary>
/// 合并行
/// </summary>
public
Nullable
<
int
>
MergeRow
{
get
;
set
;
}
/// <summary>
/// 合并列
/// </summary>
public
Nullable
<
int
>
MergeCell
{
get
;
set
;
}
/// <summary>
/// 单元格内容
/// </summary>
public
string
CellValue
{
get
;
set
;
}
/// <summary>
///
/// </summary>
public
string
SignID
{
get
;
set
;
}
/// <summary>
/// 1 汇总 2原始数据
/// </summary>
public
Nullable
<
int
>
IsTotal
{
get
;
set
;
}
}
}
performance/Performance.EntityModels/Entity/cof_again.cs
0 → 100644
View file @
96cec430
//-----------------------------------------------------------------------
// <copyright file=" cof_again.cs">
// * FileName: .cs
// </copyright>
//-----------------------------------------------------------------------
using
System
;
using
System.ComponentModel.DataAnnotations
;
using
System.ComponentModel.DataAnnotations.Schema
;
namespace
Performance.EntityModels
{
/// <summary>
///
/// </summary>
[
Table
(
"cof_again"
)]
public
class
cof_again
{
/// <summary>
///
/// </summary>
[
Key
]
public
int
ID
{
get
;
set
;
}
/// <summary>
///
/// </summary>
public
Nullable
<
int
>
AllotID
{
get
;
set
;
}
/// <summary>
///
/// </summary>
public
Nullable
<
int
>
AgainAllotID
{
get
;
set
;
}
/// <summary>
/// 1 职称绩效 2 工作量绩效 3 满勤天数
/// </summary>
public
Nullable
<
int
>
Type
{
get
;
set
;
}
/// <summary>
/// 参数名称
/// </summary>
public
string
TypeName
{
get
;
set
;
}
/// <summary>
/// 参数值
/// </summary>
public
Nullable
<
decimal
>
Value
{
get
;
set
;
}
}
}
performance/Performance.Repository/Repository/PerforAgdataRepository.cs
0 → 100644
View file @
96cec430
//-----------------------------------------------------------------------
// <copyright file=" ag_data.cs">
// * FileName: ag_data.cs
// </copyright>
//-----------------------------------------------------------------------
using
System
;
using
Performance.EntityModels
;
namespace
Performance.Repository
{
/// <summary>
/// ag_data Repository
/// </summary>
public
partial
class
PerforAgdataRepository
:
PerforRepository
<
ag_data
>
{
public
PerforAgdataRepository
(
PerformanceDbContext
context
)
:
base
(
context
)
{
}
}
}
performance/Performance.Repository/Repository/PerforAgemployeeRepository.cs
0 → 100644
View file @
96cec430
//-----------------------------------------------------------------------
// <copyright file=" ag_employee.cs">
// * FileName: ag_employee.cs
// </copyright>
//-----------------------------------------------------------------------
using
System
;
using
Performance.EntityModels
;
namespace
Performance.Repository
{
/// <summary>
/// ag_employee Repository
/// </summary>
public
partial
class
PerforAgemployeeRepository
:
PerforRepository
<
ag_employee
>
{
public
PerforAgemployeeRepository
(
PerformanceDbContext
context
)
:
base
(
context
)
{
}
}
}
performance/Performance.Repository/Repository/PerforAgheaderRepository.cs
0 → 100644
View file @
96cec430
//-----------------------------------------------------------------------
// <copyright file=" ag_header.cs">
// * FileName: ag_header.cs
// </copyright>
//-----------------------------------------------------------------------
using
System
;
using
Performance.EntityModels
;
namespace
Performance.Repository
{
/// <summary>
/// ag_header Repository
/// </summary>
public
partial
class
PerforAgheaderRepository
:
PerforRepository
<
ag_header
>
{
public
PerforAgheaderRepository
(
PerformanceDbContext
context
)
:
base
(
context
)
{
}
}
}
performance/Performance.Repository/Repository/PerforCofagainRepository.cs
0 → 100644
View file @
96cec430
//-----------------------------------------------------------------------
// <copyright file=" cof_again.cs">
// * FileName: cof_again.cs
// </copyright>
//-----------------------------------------------------------------------
using
System
;
using
Performance.EntityModels
;
namespace
Performance.Repository
{
/// <summary>
/// cof_again Repository
/// </summary>
public
partial
class
PerforCofagainRepository
:
PerforRepository
<
cof_again
>
{
public
PerforCofagainRepository
(
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