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
40e5f020
Commit
40e5f020
authored
Mar 01, 2019
by
zry
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
run
parent
878d9d79
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
13 additions
and
84 deletions
+13
-84
performance/Performance.EntityModels/Allot.cs
+0
-19
performance/Performance.EntityModels/Context/PerformanceDbContext.cs
+7
-8
performance/Performance.EntityModels/Entity/Sys_User.cs
+6
-3
performance/Performance.EntityModels/Im_Expend.cs
+0
-18
performance/Performance.EntityModels/Im_SheetData.cs
+0
-14
performance/Performance.EntityModels/Performance.EntityModels.csproj
+0
-5
performance/Performance.EntityModels/Sys_Hosptail.cs
+0
-17
No files found.
performance/Performance.EntityModels/Allot.cs
deleted
100644 → 0
View file @
878d9d79
using
System
;
using
System.Collections.Generic
;
using
System.Text
;
namespace
Performance.EntityModels
{
public
class
Allot
{
public
int
ID
{
get
;
set
;
}
public
int
HospitalId
{
get
;
set
;
}
public
int
Year
{
get
;
set
;
}
public
int
Month
{
get
;
set
;
}
public
decimal
AllocationFee
{
get
;
set
;
}
public
DateTime
CreateDatetime
{
get
;
set
;
}
public
string
Path
{
get
;
set
;
}
public
DateTime
UploadDate
{
get
;
set
;
}
public
int
States
{
get
;
set
;
}
}
}
performance/Performance.EntityModels/
Db
Context/PerformanceDbContext.cs
→
performance/Performance.EntityModels/Context/PerformanceDbContext.cs
View file @
40e5f020
using
JetBrains.Annotations
;
using
Microsoft.EntityFrameworkCore
;
using
Microsoft.EntityFrameworkCore
;
using
Microsoft.EntityFrameworkCore.Metadata
;
using
Performance.EntityModels
;
using
System
;
using
System
;
using
System.Collections.Generic
;
using
System.Text
;
namespace
Performance.EntityModels
namespace
Performance.EntityModels
{
{
public
class
PerformanceDbContext
:
DbContext
public
partial
class
PerformanceDbContext
:
DbContext
{
{
public
PerformanceDbContext
(
DbContextOptions
options
)
:
base
(
options
)
public
PerformanceDbContext
(
DbContextOptions
<
PerformanceDbContext
>
options
)
:
base
(
options
)
{
{
}
}
public
DbSet
<
Sys_User
>
Sys_User
{
get
;
set
;
}
public
virtual
DbSet
<
Sys_User
>
Sys_User
{
get
;
set
;
}
}
}
}
}
performance/Performance.EntityModels/Sys_User.cs
→
performance/Performance.EntityModels/
Entity/
Sys_User.cs
View file @
40e5f020
using
System
;
using
System
;
using
System.Collections.Generic
;
namespace
Performance.EntityModels
namespace
Performance.EntityModels
{
{
public
class
Sys_User
public
partial
class
Sys_User
{
{
public
int
ID
{
get
;
set
;
}
public
int
ID
{
get
;
set
;
}
public
DateTime
?
CreatDate
{
get
;
set
;
}
public
int
?
CreateUser
{
get
;
set
;
}
public
string
RealName
{
get
;
set
;
}
public
string
RealName
{
get
;
set
;
}
public
string
Mobile
{
get
;
set
;
}
public
string
Login
{
get
;
set
;
}
public
string
Login
{
get
;
set
;
}
public
string
Password
{
get
;
set
;
}
public
string
Password
{
get
;
set
;
}
public
string
Mail
{
get
;
set
;
}
public
string
Mail
{
get
;
set
;
}
public
string
Mobile
{
get
;
set
;
}
public
int
?
States
{
get
;
set
;
}
public
int
States
{
get
;
set
;
}
}
}
}
}
performance/Performance.EntityModels/Im_Expend.cs
deleted
100644 → 0
View file @
878d9d79
using
System
;
using
System.Collections.Generic
;
using
System.Text
;
namespace
Performance.EntityModels
{
public
class
Im_Expend
{
public
int
ID
{
get
;
set
;
}
public
int
SheetID
{
get
;
set
;
}
public
string
StandardName
{
get
;
set
;
}
public
string
Department
{
get
;
set
;
}
public
string
TypeName
{
get
;
set
;
}
public
string
ParentType
{
get
;
set
;
}
public
decimal
CellValue
{
get
;
set
;
}
public
string
Annotation
{
get
;
set
;
}
}
}
performance/Performance.EntityModels/Im_SheetData.cs
deleted
100644 → 0
View file @
878d9d79
using
System
;
using
System.Collections.Generic
;
using
System.Text
;
namespace
Performance.EntityModels
{
public
class
Im_SheetData
{
public
int
ID
{
get
;
set
;
}
public
int
AllotID
{
get
;
set
;
}
public
string
SheetName
{
get
;
set
;
}
public
int
SheetType
{
get
;
set
;
}
}
}
performance/Performance.EntityModels/Performance.EntityModels.csproj
View file @
40e5f020
...
@@ -12,11 +12,6 @@
...
@@ -12,11 +12,6 @@
<ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="2.2.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="2.2.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="2.2.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="2.2.0" />
</ItemGroup>
</ItemGroup>
<ItemGroup>
<ItemGroup>
...
...
performance/Performance.EntityModels/Sys_Hosptail.cs
deleted
100644 → 0
View file @
878d9d79
using
System
;
using
System.Collections.Generic
;
using
System.Text
;
namespace
Performance.EntityModels
{
public
class
Sys_Hosptail
{
public
int
ID
{
get
;
set
;
}
public
string
HospitalName
{
get
;
set
;
}
public
string
ShortName
{
get
;
set
;
}
public
string
AreaCode
{
get
;
set
;
}
public
int
HospitalLevel
{
get
;
set
;
}
public
int
HospitalType
{
get
;
set
;
}
public
int
States
{
get
;
set
;
}
}
}
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