namespace SHJX.Service.Model.CRUDModules
{
[Table("position_hotlist")]
public class PositionHotlist
{
///
/// 主键自增
///
[Key]
public int SerialKey { get; set; }
///
/// 位置名称
///
public string PositionName { get; set; }
///
/// 当前占用
///
public string CurrentOccupy { get; set; }
///
/// 是否可用
///
public bool Enable { get; set; }
}
}