feat: 优化UI

This commit is contained in:
GukSang.Jin
2026-02-27 09:38:42 +08:00
parent 1e37d8056e
commit 14118f4f9a
6 changed files with 568 additions and 78 deletions

View File

@@ -9,4 +9,16 @@ public class ConfigurationService
public int PaymentCheckIntervalSeconds { get; set; } = 2;
public int WashSimulationSeconds { get; set; } = 10;
// 洗护流程时间参数(单位:分钟)
public int FirstSprayWaterTime { get; set; } = 2; // 首次喷水时间
public int AfterShampoo1SprayTime { get; set; } = 2; // 沐浴1后喷水时间
public int AfterShampoo2SprayTime { get; set; } = 2; // 沐浴2后喷水时间
public int AfterShampoo3SprayTime { get; set; } = 2; // 沐浴3后喷水时间
public int SprayShampoo1Time { get; set; } = 1; // 喷沐浴露1时间
public int SprayShampoo2Time { get; set; } = 1; // 喷沐浴露2时间
public int SprayShampoo3Time { get; set; } = 1; // 喷沐浴露3时间
public int SprayWaterTime { get; set; } = 2; // 喷水时间(保留用于兼容)
public int ColdAirTime { get; set; } = 2; // 冷风机时间
public int HotAirTime { get; set; } = 5; // 热风机时间
}