using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using Core.Mes.Client.Comm.Attribute;
namespace Core.StlMes.Client.LgResMgt.Mcms.entity
{
///
/// 数据库表CMM_LOADINFO所对应的实体类(生成工具:代码生成工具3.0)
/// 作者:LAPTOP-23SFAF86 时间:2021-12-22
///
public class CmmLoadinfoCEntity
{
///
/// 登录IP
///
private string loadip = "";
///
/// 登录磅房号
///
private string baseSpotNo = "";
///
/// 最后在线时间
///
private string updateTime = "";
///
/// 现在时间
///
private string actualtime = "";
///
/// 登录IP
///
[Description("登录IP")]
[Nullable(false)]
[DataLength(20)]
public string Loadip
{
get { return loadip; }
set { loadip = value; }
}
///
/// 登录磅房号
///
[Description("登录磅房号")]
[Nullable(false)]
[DataLength(20)]
public string BaseSpotNo
{
get { return baseSpotNo; }
set { baseSpotNo = value; }
}
///
/// 最后在线时间
///
[Description("最后在线时间")]
[Nullable(true)]
public string UpdateTime
{
get { return updateTime; }
set { updateTime = value; }
}
///
/// 最后在线时间
///
[Description("现在时间")]
[Nullable(true)]
public string Actualtime
{
get { return actualtime; }
set { actualtime = value; }
}
}
}