using System;
using System.ComponentModel.DataAnnotations;
using WIDESEA_Entity.SystemModels;
namespace WIDESEA_Entity.DomainModels
{
public class dt_stationinfo : BaseEntity
{
///
/// 主键
///
[Key]
public Guid id { get; set; }
[Editable(true)]
///
/// 缓存架编号
///
public string stationCode { get; set; }
///
/// 缓存架类型
///
public string stationType { get; set; }
///
/// 区域
///
public string area { get; set; }
///
/// 是否启用
///
public bool enable { get; set; }
///
/// 缓存架状态
///
// public string location_state { get; set; }
///
/// 最后放入或取走时间
///
public DateTime? lastUpdateTime { get; set; }
///
/// 绿色按钮触发时间
///
public DateTime greenbuttontime { get; set; }
///
/// 备注
///
public string remark { get; set; }
///
/// winfrom更新的状态
///
public int getStatus { get; set; }
///
/// winfrom最后更新的时间
///
public DateTime getLastTime { get; set; }
///
/// 放置顺序
///
public int sort { get; set; }
///
/// 托盘光电
///
public bool tpgd { get; set; }
///
/// 物料光电
///
public bool wlgd { get; set; }
///
/// 绿色按钮(呼叫)
///
public bool greenbutton { get; set; }
///
/// 复位按钮(黄色)
///
public bool YellowButton { get; set; }
///
/// 报警按钮(红色)
///
public bool RedButton { get; set; }
///
/// 红灯
///
public bool LampRed { get; set; }
///
/// 绿灯
///
public bool LampGreen { get; set; }
///
/// 黄灯
///
public bool LampYellow { get; set; }
[Editable(true)]
///
/// 任务是否存在
///
public bool task { get; set; }
///
/// 通讯(是否掉线)
///
public bool connect { get; set; }
}
}