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
0cad6bfb
Commit
0cad6bfb
authored
Jul 02, 2021
by
lcx
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
添加实体文件
parent
2e0dbf1c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
84 additions
and
0 deletions
+84
-0
performance/Performance.EntityModels/Entity/cof_drugtype_factor.cs
+64
-0
performance/Performance.Repository/Repository/PerforCofdrugtypefactorRepository.cs
+20
-0
No files found.
performance/Performance.EntityModels/Entity/cof_drugtype_factor.cs
0 → 100644
View file @
0cad6bfb
//-----------------------------------------------------------------------
// <copyright file=" cof_drugtype_factor.cs">
// * FileName: 药占比费用列头名称.cs
// </copyright>
//-----------------------------------------------------------------------
using
System
;
using
System.ComponentModel.DataAnnotations
;
using
System.ComponentModel.DataAnnotations.Schema
;
namespace
Performance.EntityModels
{
/// <summary>
/// 药占比费用列头名称
/// </summary>
[
Table
(
"cof_drugtype_factor"
)]
public
class
cof_drugtype_factor
{
/// <summary>
///
/// </summary>
[
Key
]
public
int
ID
{
get
;
set
;
}
/// <summary>
///
/// </summary>
public
Nullable
<
int
>
HospitalId
{
get
;
set
;
}
/// <summary>
///
/// </summary>
public
Nullable
<
int
>
AllotID
{
get
;
set
;
}
/// <summary>
/// 费用名称
/// </summary>
public
string
Charge
{
get
;
set
;
}
/// <summary>
/// 费用类别
/// </summary>
public
string
ChargeType
{
get
;
set
;
}
/// <summary>
/// 收入类型
/// </summary>
public
Nullable
<
int
>
ExModuleId
{
get
;
set
;
}
/// <summary>
/// 医生组
/// </summary>
public
Nullable
<
decimal
>
YSZ
{
get
;
set
;
}
/// <summary>
/// 护理组
/// </summary>
public
Nullable
<
decimal
>
HLZ
{
get
;
set
;
}
/// <summary>
/// 医技组
/// </summary>
public
Nullable
<
decimal
>
YJZ
{
get
;
set
;
}
}
}
performance/Performance.Repository/Repository/PerforCofdrugtypefactorRepository.cs
0 → 100644
View file @
0cad6bfb
//-----------------------------------------------------------------------
// <copyright file=" cof_drugtype_factor.cs">
// * FileName: cof_drugtype_factor.cs
// </copyright>
//-----------------------------------------------------------------------
using
System
;
using
Performance.EntityModels
;
namespace
Performance.Repository
{
/// <summary>
/// cof_drugtype_factor Repository
/// </summary>
public
partial
class
PerforCofdrugtypefactorRepository
:
PerforRepository
<
cof_drugtype_factor
>
{
public
PerforCofdrugtypefactorRepository
(
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