Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
T
Thick-Common
Project
Project
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
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
潘栩锋
Thick-Common
Commits
2270e8fb
Commit
2270e8fb
authored
Jul 06, 2021
by
潘栩锋
🚴
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
GetSample 添加 更多报警
parent
9671ddff
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
403 additions
and
377 deletions
+403
-377
PgGetSample.xaml
Project.FLY.Thick.Base/FLY.Thick.Base.UI/PgGetSample.xaml
+231
-219
PgGetSample.xaml.cs
Project.FLY.Thick.Base/FLY.Thick.Base.UI/PgGetSample.xaml.cs
+158
-154
GetSampleServiceClient.cs
...hick.Base/FLY.Thick.Base/Client/GetSampleServiceClient.cs
+9
-0
IGetSampleService.cs
...Y.Thick.Base/FLY.Thick.Base/IService/IGetSampleService.cs
+3
-0
GetSample.cs
Project.FLY.Thick.Base/FLY.Thick.Base/Server/GetSample.cs
+2
-4
No files found.
Project.FLY.Thick.Base/FLY.Thick.Base.UI/PgGetSample.xaml
View file @
2270e8fb
This diff is collapsed.
Click to expand it.
Project.FLY.Thick.Base/FLY.Thick.Base.UI/PgGetSample.xaml.cs
View file @
2270e8fb
This diff is collapsed.
Click to expand it.
Project.FLY.Thick.Base/FLY.Thick.Base/Client/GetSampleServiceClient.cs
View file @
2270e8fb
using
FLY.Thick.Base.IService
;
using
FObjBase
;
using
FObjBase.Reflect
;
using
System
;
using
System.Collections.Generic
;
using
System.Linq
;
namespace
FLY.Thick.Base.Client
...
...
@@ -90,6 +93,12 @@ namespace FLY.Thick.Base.Client
{
Call
(
nameof
(
Apply
));
}
[
Call
(
typeof
(
List
<
List
<
TempFilterData
>>))]
public
void
GetTempFilterDatas
(
AsyncCBHandler
asyncDelegate
,
object
asyncContext
)
{
Call
(
nameof
(
GetTempFilterDatas
),
null
,
asyncDelegate
,
asyncContext
);
}
#
endregion
}
...
...
Project.FLY.Thick.Base/FLY.Thick.Base/IService/IGetSampleService.cs
View file @
2270e8fb
...
...
@@ -90,6 +90,9 @@ namespace FLY.Thick.Base.IService
/// 应用
/// </summary>
void
Apply
();
[
Call
(
typeof
(
List
<
List
<
TempFilterData
>>))]
void
GetTempFilterDatas
(
AsyncCBHandler
asyncDelegate
,
object
asyncContext
);
}
...
...
Project.FLY.Thick.Base/FLY.Thick.Base/Server/GetSample.cs
View file @
2270e8fb
...
...
@@ -707,17 +707,15 @@ _end:
/// </summary>
/// <param name="asyncCB"></param>
/// <param name="asyncContext"></param>
public
void
GetTempFilterDatas
(
AsyncCBHandler
async
CB
,
object
asyncContext
)
public
void
GetTempFilterDatas
(
AsyncCBHandler
async
Delegate
,
object
asyncContext
)
{
List
<
List
<
TempFilterData
>>
ret
=
new
List
<
List
<
TempFilterData
>>();
for
(
int
i
=
0
;
i
<
Samples
.
Count
();
i
++)
{
SampleCell
sample
=
Samples
[
i
];
if
(
sample
.
Enable
)
ret
.
Add
(
tempFilters
[
i
].
GetDatas
());
else
ret
.
Add
(
null
);
}
async
CB
(
asyncContext
,
ret
);
async
Delegate
(
asyncContext
,
ret
);
}
...
...
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