-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
c longc
committed
Jul 25, 2023
1 parent
878239d
commit 1b0c39f
Showing
14 changed files
with
273 additions
and
139 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace DragonKing.Model | ||
{ | ||
public class RecordListItemModel | ||
{ | ||
public int Id { get; set; } | ||
public int SampleId { get; set; } | ||
public string Index { get; set; } | ||
|
||
public string Channel { get; set; } | ||
/// <summary> | ||
/// 加样孔 | ||
/// </summary> | ||
public string SampleIndex { get; set; } | ||
public string SampleBarCode { get; set; } | ||
public string ExperimentName { get; set; } | ||
/// <summary> | ||
/// 项目Id | ||
/// </summary> | ||
public int ProjectId { get; set; } | ||
/// <summary> | ||
/// 项目名称 | ||
/// </summary> | ||
public string Project { get; set; } | ||
/// <summary> | ||
/// 检测时间 | ||
/// </summary> | ||
public DateTime DetectionTime { get; set; } | ||
|
||
/// <summary> | ||
/// 结果,是否有效 | ||
/// </summary> | ||
|
||
public string Result { get; set; } | ||
public string OperatorName { get; set; }//操作人员 | ||
|
||
//public CommonLibrary.SampleType SampleType { get; set; }//样本类型 | ||
public string SampleType { get; set; }//样本类型 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,5 +28,6 @@ public ResultView() | |
this.DataContext = App.Current._host.Services.GetService<ResultViewModel>(); | ||
|
||
} | ||
|
||
} | ||
} |
Oops, something went wrong.