2026-05-16 17:47:46 +08:00
|
|
|
using System;
|
2026-05-05 15:31:24 +08:00
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace TabletTester2025.Services
|
|
|
|
|
{
|
|
|
|
|
public class BalanceService
|
|
|
|
|
{
|
|
|
|
|
public async Task<double> ReadWeightAsync()
|
|
|
|
|
{
|
|
|
|
|
await Task.Delay(100);
|
2026-05-16 17:47:46 +08:00
|
|
|
throw new InvalidOperationException("天平真实通讯未接入,禁止返回模拟重量");
|
2026-05-05 15:31:24 +08:00
|
|
|
}
|
|
|
|
|
}
|
2026-05-16 17:47:46 +08:00
|
|
|
}
|