| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- 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 CmmLoadinfoEntity
- {
- /// <summary>
- /// 登录IP
- /// </summary>
- private string loadip = "";
- /// <summary>
- /// 登录磅房号
- /// </summary>
- private string baseSpotNo = "";
- /// <summary>
- /// 最后在线时间
- /// </summary>
- private string updateTime = "";
- /// <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; }
- }
- }
- }
|