using SqlSugar;
using System;
using System.Collections.Generic;
using System.Text;
namespace WCS.Data.Models
{
public class MatureRoomInfo
{
///
/// 熟化房编号
///
[SugarColumn(IsPrimaryKey = true, IsIdentity = false)]
public string MatureRoomNo { get; set; }
///
/// 熟化房名称
///
public string MatureRoomName { get; set; }
///
/// 熟化房温度
///
public decimal MatureRoomTemperat { get; set; }
///
/// 熟化房时长(单位小时)
///
public decimal MatureRoomDate { get; set; }
///
/// 是否在线(0.离线;1.在线;)
///
public bool MatureRoomIsOnLine { get; set; }
///
/// 熟化房模式(1.自动;2.手动;3.半自动;)
///
public int MatureRoomMode { get; set; }
///
/// 切线状态(1.切线中;2.切线完成)
///
public int MatureRoomTangentStatus { get; set; }
///
/// 熟化房报警信息
///
public string MatureRoomAlaramsMsg { get; set; }
public string MatureRoomNotes { get; set; }
}
}