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
05252f98
Commit
05252f98
authored
Apr 01, 2019
by
ruyun.zhang@suvalue.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
二次分配
parent
99ba5e8c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
88 additions
and
0 deletions
+88
-0
performance/Performance.Api/Controllers/AgainAllotController.cs
+74
-0
performance/Performance.DtoModels/PerExcel/ExcelEnum.cs
+14
-0
No files found.
performance/Performance.Api/Controllers/AgainAllotController.cs
0 → 100644
View file @
05252f98
using
FluentValidation.AspNetCore
;
using
Hangfire
;
using
Microsoft.AspNetCore.Hosting
;
using
Microsoft.AspNetCore.Http
;
using
Microsoft.AspNetCore.Http.Internal
;
using
Microsoft.AspNetCore.Mvc
;
using
Microsoft.Extensions.Logging
;
using
Performance.DtoModels
;
using
Performance.EntityModels
;
using
Performance.Infrastructure
;
using
Performance.Services
;
using
System
;
using
System.Collections.Generic
;
using
System.IO
;
using
System.Linq
;
using
System.Linq.Expressions
;
using
System.Threading.Tasks
;
// For more information on enabling Web API for empty projects, visit https://go.microsoft.com/fwlink/?LinkID=397860
namespace
Performance.Api.Controllers
{
/// <summary>
/// 科室二次分配
/// </summary>
[
Route
(
"api/[controller]"
)]
public
class
AgainAllotController
:
Controller
{
public
AgainAllotController
()
{
}
/// <summary>
/// 返回二次分配绩效列表
/// </summary>
/// <returns></returns>
[
Route
(
"list"
)]
[
HttpPost
]
public
ApiResponse
List
()
{
throw
new
NotImplementedException
();
}
/// <summary>
/// 返回当前用户医院下绩效下拉列表
/// </summary>
/// <returns></returns>
[
Route
(
"allotlist"
)]
[
HttpPost
]
public
ApiResponse
AllotList
()
{
throw
new
NotImplementedException
();
}
/// <summary>
/// 上传文件
/// </summary>
/// <param name="form"></param>
/// <returns></returns>
[
Route
(
"import"
)]
[
HttpPost
]
public
ApiResponse
Import
([
FromForm
]
IFormCollection
form
)
{
throw
new
NotImplementedException
();
}
[
Route
(
"generate"
)]
[
HttpPost
]
public
ApiResponse
Generate
()
{
throw
new
NotImplementedException
();
}
}
}
performance/Performance.DtoModels/PerExcel/ExcelEnum.cs
View file @
05252f98
...
...
@@ -13,33 +13,47 @@ public enum ExcelVersion
public
enum
SheetType
{
/// <summary> 无法识别 </summary>
[
Description
(
"无法识别"
)]
Unidentifiable
=
1
,
/// <summary> 医院人员名单 </summary>
[
Description
(
"医院人员名单"
)]
Employee
=
2
,
/// <summary> 收入 </summary>
[
Description
(
"收入"
)]
Income
=
3
,
/// <summary> 其他收入 </summary>
[
Description
(
"其他收入"
)]
OtherIncome
=
4
,
/// <summary> 支出 </summary>
[
Description
(
"支出"
)]
Expend
=
5
,
/// <summary> 加班 </summary>
[
Description
(
"加班"
)]
Overtime
=
6
,
/// <summary> 工作量 </summary>
[
Description
(
"工作量"
)]
Workload
=
7
,
/// <summary> 特殊核算单元 </summary>
[
Description
(
"特殊核算单元"
)]
SpecialUnit
=
8
,
/// <summary> 临床科室医护绩效测算基础 </summary>
[
Description
(
"临床科室医护绩效测算基础"
)]
AccountBasic
=
9
,
/// <summary> 科室经济核算汇总表 </summary>
[
Description
(
"科室经济核算汇总表"
)]
ComputeEconomic
=
10
,
/// <summary> 医生工作量计算 </summary>
[
Description
(
"医生工作量计算"
)]
ComputeDoctorWorkload
=
11
,
/// <summary> 护士工作量计算 </summary>
[
Description
(
"护士工作量计算"
)]
ComputeNurseWorkload
=
12
,
/// <summary> 临床科室医生绩效测算表 </summary>
[
Description
(
"临床科室医生绩效测算表"
)]
ComputeDoctorAccount
=
13
,
/// <summary> 临床科室护士绩效测算表 </summary>
[
Description
(
"临床科室护士绩效测算表"
)]
ComputeNurseAccount
=
14
,
}
...
...
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