Files
Web_IoTBase_Sever_Prod/CommonEntity/CacheEntity/KongTiao_Cache.cs
2025-12-11 14:04:39 +08:00

71 lines
1.3 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using MemoryPack;
namespace CommonEntity.CacheEntity
{
[MemoryPackable()]
public partial class KongTiao_Cache
{
/// <summary>
/// 状态1开2关
/// </summary>
public virtual int Status
{
get;
set;
}
/// <summary>
/// 当前温度
/// </summary>
public virtual int CurrentTemp
{
get;
set;
}
/// <summary>
/// 设定温度
/// </summary>
public virtual int SettingTemp
{
get;
set;
}
/// <summary>
/// 风速
/// </summary>
public virtual int FanSpeed
{
get;
set;
}
/// <summary>
/// 模式
/// </summary>
public virtual int Mode
{
get;
set;
}
/// <summary>
/// 阀门
/// </summary>
public virtual int Valve
{
get;
set;
}
/// <summary>
/// 当天开启时长
/// </summary>
public virtual int Time
{
get;
set;
}
}
}