| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- 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
- {
- /// <summary>
- /// 数据库表CMM_LOADINFO所对应的实体类(生成工具:代码生成工具3.0)
- /// 作者:LAPTOP-23SFAF86 时间:2021-12-22
- /// </summary>
- public class CmmLoadinfoCEntity
- {
- /// <summary>
- /// 登录IP
- /// </summary>
- private string loadip = "";
- /// <summary>
- /// 登录磅房号
- /// </summary>
- private string baseSpotNo = "";
- /// <summary>
- /// 最后在线时间
- /// </summary>
- private string updateTime = "";
- /// <summary>
- /// 现在时间
- /// </summary>
- private string actualtime = "";
- /// <summary>
- /// 登录IP
- /// </summary>
- [Description("登录IP")]
- [Nullable(false)]
- [DataLength(20)]
- public string Loadip
- {
- get { return loadip; }
- set { loadip = value; }
- }
- /// <summary>
- /// 登录磅房号
- /// </summary>
- [Description("登录磅房号")]
- [Nullable(false)]
- [DataLength(20)]
- public string BaseSpotNo
- {
- get { return baseSpotNo; }
- set { baseSpotNo = value; }
- }
- /// <summary>
- /// 最后在线时间
- /// </summary>
- [Description("最后在线时间")]
- [Nullable(true)]
- public string UpdateTime
- {
- get { return updateTime; }
- set { updateTime = value; }
- }
- /// <summary>
- /// 最后在线时间
- /// </summary>
- [Description("现在时间")]
- [Nullable(true)]
- public string Actualtime
- {
- get { return actualtime; }
- set { actualtime = value; }
- }
- }
- }
|