This commit is contained in:
xyy
2026-03-23 10:18:09 +08:00
parent 052af5f895
commit 4d15257e9b
2 changed files with 199 additions and 202 deletions

View File

@@ -268,6 +268,18 @@ standarderror)
}
}
public void DeleteTestAllItems(int id)
{
using (var connection = new MySqlConnection(_connectionString))
{
connection.Open();
var sql = @"delete from normaltemperature where id=@id
";
connection.Execute(sql, new { id });
}
}
public List<ScanData> GetScanDataBylldh_jh(string jh)
{
using (var connection = new MySqlConnection(_connectionString))