添加项目文件。

This commit is contained in:
xyy
2026-05-05 15:31:24 +08:00
parent 196fcc7822
commit 11bf3f4827
27 changed files with 1526 additions and 0 deletions

19
Models/TestBatch.cs Normal file
View 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; }
}
}