Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
R
ReportingSystemAPI
概览
Overview
Details
Activity
Cycle Analytics
版本库
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
问题
0
Issues
0
列表
Board
标记
里程碑
合并请求
0
Merge Requests
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
Snippets
成员
Collapse sidebar
Close sidebar
活动
图像
聊天
创建新问题
作业
提交
Issue Boards
Open sidebar
刘军
ReportingSystemAPI
Commits
c460347e
Commit
c460347e
authored
Dec 24, 2019
by
刘军
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
暂时提交
parent
a0d3f41a
隐藏空白字符变更
内嵌
并排
正在显示
8 个修改的文件
包含
71 行增加
和
5 行删除
+71
-5
Common.Unit/0.Common.Unit.csproj
+2
-3
Common.Unit/Word/CreateWordReport.cs
+13
-0
G.MES.API/Controllers/ChemotherapyController.cs
+25
-0
G.MES.API/G.MES.API.csproj
+1
-0
G.MES.Business/G.BaseInfo/G.Buss.BaseInfo.csproj
+1
-0
G.MES.Business/G.BaseInfo/Services/ChemotherapySVC/ChemotherapySvc.cs
+26
-0
G.MES.Business/G.BaseInfo/Services/GeneCorrelationSVC/GeneCorrelationSVC.cs
+2
-2
G.MES.DbAdapter/DBModel1.Context1.cs
+1
-0
没有找到文件。
Common.Unit/0.Common.Unit.csproj
查看文件 @
c460347e
...
...
@@ -146,6 +146,7 @@
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="SqlHelper.cs" />
<Compile Include="VerCodeHelp.cs" />
<Compile Include="Word\CreateWordReport.cs" />
</ItemGroup>
<ItemGroup>
<None Include="app.config" />
...
...
@@ -164,9 +165,7 @@
<ItemGroup>
<Content Include="Chloe.Extension\Chloe.Extension.csproj" />
</ItemGroup>
<ItemGroup>
<Folder Include="Word\" />
</ItemGroup>
<ItemGroup />
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
...
...
Common.Unit/Word/CreateWordReport.cs
0 → 100644
查看文件 @
c460347e
using
System
;
using
System.Collections.Generic
;
using
System.Linq
;
using
System.Text
;
using
System.Threading.Tasks
;
namespace
Common.Unit.Word
{
public
class
CreateWordReport
{
}
}
G.MES.API/Controllers/ChemotherapyController.cs
0 → 100644
查看文件 @
c460347e
using
G.Buss.BaseInfo.Services.ChemotherapySVC
;
using
G.MES.DataModel
;
using
System
;
using
System.Collections.Generic
;
using
System.Linq
;
using
System.Web
;
namespace
G.MES.API.Controllers
{
/// <summary>
/// 化疗结果
/// </summary>
public
class
ChemotherapyController
:
BasicController
{
private
readonly
ChemotherapySvc
svc
=
new
ChemotherapySvc
();
/// <summary>
/// 获取化药结果
/// </summary>
public
List
<
Chemotherapy
>
GetChemotherapy
()
{
return
svc
.
GetChemotherapy
();
}
}
}
\ No newline at end of file
G.MES.API/G.MES.API.csproj
查看文件 @
c460347e
...
...
@@ -244,6 +244,7 @@
<Compile Include="Areas\HelpPage\XmlDocumentationProvider.cs" />
<Compile Include="Base\BasicController.cs" />
<Compile Include="Controllers\ChemicalDrugReferencesController.cs" />
<Compile Include="Controllers\ChemotherapyController.cs" />
<Compile Include="Controllers\ClientInfoController.cs" />
<Compile Include="Controllers\CodeTableController.cs" />
<Compile Include="Controllers\GeneController.cs" />
...
...
G.MES.Business/G.BaseInfo/G.Buss.BaseInfo.csproj
查看文件 @
c460347e
...
...
@@ -93,6 +93,7 @@
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Services\AuditLogDetailedSVC\AuditLogDetailedOperaSVC.cs" />
<Compile Include="Services\ChemicalDrugReferencesSVC\ChemicalDrugReferencesSVC.cs" />
<Compile Include="Services\ChemotherapySVC\ChemotherapySvc.cs" />
<Compile Include="Services\ClientInfoSVC\ClientInfoSVC.cs" />
<Compile Include="Services\CodeTableSVC\CodeTableOperaSVC.cs" />
<Compile Include="Services\ExportWordSVC\ReportDataSvc.cs" />
...
...
G.MES.Business/G.BaseInfo/Services/ChemotherapySVC/ChemotherapySvc.cs
0 → 100644
查看文件 @
c460347e
using
Chloe.SqlServer
;
using
G.MES.DataModel
;
using
System
;
using
System.Collections.Generic
;
using
System.Linq
;
using
System.Text
;
using
System.Threading.Tasks
;
namespace
G.Buss.BaseInfo.Services.ChemotherapySVC
{
public
class
ChemotherapySvc
:
BaseSvc
{
/// <summary>
/// 获取化药结果
/// </summary>
/// <returns></returns>
public
List
<
Chemotherapy
>
GetChemotherapy
()
{
using
(
var
context
=
new
MsSqlContext
(
sqlConn
))
{
List
<
Chemotherapy
>
chemotherapies
=
context
.
Query
<
Chemotherapy
>().
ToList
();
return
chemotherapies
;
}
}
}
}
G.MES.Business/G.BaseInfo/Services/GeneCorrelationSVC/GeneCorrelationSVC.cs
查看文件 @
c460347e
...
...
@@ -95,7 +95,7 @@ namespace G.Buss.BaseInfo.Services.GeneCorrelationSVC
context
.
TrackEntity
(
nowSam
);
nowSam
.
GeneName
=
GeneCorrelation
.
GeneName
;
nowSam
.
SortNo
=
GeneCorrelation
.
SortNo
;
nowSam
.
Type
=
Convert
.
ToInt32
(
GeneCorrelation
.
Type
)
;
nowSam
.
Type
=
GeneCorrelation
.
Type
;
UpSysField
(
nowSam
,
user
);
context
.
Update
(
nowSam
);
}
...
...
@@ -106,7 +106,7 @@ namespace G.Buss.BaseInfo.Services.GeneCorrelationSVC
nowSam
.
GeneCorrelationOID
=
GeneCorrelation
.
GeneCorrelationOID
;
nowSam
.
GeneName
=
GeneCorrelation
.
GeneName
;
nowSam
.
SortNo
=
GeneCorrelation
.
SortNo
;
nowSam
.
Type
=
Convert
.
ToInt32
(
GeneCorrelation
.
Type
)
;
nowSam
.
Type
=
GeneCorrelation
.
Type
;
InsertSysField
(
nowSam
,
user
);
context
.
Insert
(
nowSam
);
}
...
...
G.MES.DbAdapter/DBModel1.Context1.cs
查看文件 @
c460347e
...
...
@@ -9,6 +9,7 @@
namespace
G.MES.DataAdapter
{
using
G.MES.DataModel
;
using
System
;
using
System.Data.Entity
;
using
System.Data.Entity.Infrastructure
;
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论