添加项目文件。
This commit is contained in:
19
Models/TestBatch.cs
Normal file
19
Models/TestBatch.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using System;
|
||||
|
||||
namespace TabletTester2025.Models
|
||||
{
|
||||
public class TestBatch
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public DateTime TestTime { get; set; }
|
||||
public int StationId { get; set; }
|
||||
public string SampleName { get; set; }
|
||||
public double HardnessAvg { get; set; }
|
||||
public double HardnessRSD { get; set; }
|
||||
public double FriabilityLoss { get; set; }
|
||||
public double DisintegrationTimeSec { get; set; }
|
||||
public int RemainingTubesAtEnd { get; set; } // 未崩解管数
|
||||
public double DissolutionRate30Min { get; set; }
|
||||
public bool IsQualified { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user