Files
Sleep-Multi-functionality/Constant/CSConstant.cs

30 lines
724 B
C#
Raw Normal View History

2026-05-04 14:46:58 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ShanghaiEnvironmentalTechnology
{
public static class CSConstant
{
public static string DbConnectionString = "Data Source=FlowPressure.db;Version=3;";
}
/// <summary>
/// 排气流表映射
/// </summary>
public class FlowPressureRecord
{
public int Id { get; set; }
public double Flow { get; set; }
public double Pressure { get; set; }
public double BeginCO2 { get; set; }
public double EndCO2 { get; set; }
public double CO2Added { get; set; }
public DateTime RecordTime { get; set; }
}
}