CmmLoadinfoEntity.cs 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Linq;
  5. using System.Text;
  6. using Core.Mes.Client.Comm.Attribute;
  7. namespace Core.StlMes.Client.LgResMgt.Mcms.entity
  8. {
  9. /// <summary>
  10. /// 数据库表CMM_LOADINFO所对应的实体类(生成工具:代码生成工具3.0)
  11. /// 作者:LAPTOP-23SFAF86 时间:2021-12-22
  12. /// </summary>
  13. public class CmmLoadinfoEntity
  14. {
  15. /// <summary>
  16. /// 登录IP
  17. /// </summary>
  18. private string loadip = "";
  19. /// <summary>
  20. /// 登录磅房号
  21. /// </summary>
  22. private string baseSpotNo = "";
  23. /// <summary>
  24. /// 最后在线时间
  25. /// </summary>
  26. private string updateTime = "";
  27. /// <summary>
  28. /// 登录IP
  29. /// </summary>
  30. [Description("登录IP")]
  31. [Nullable(false)]
  32. [DataLength(20)]
  33. public string Loadip
  34. {
  35. get { return loadip; }
  36. set { loadip = value; }
  37. }
  38. /// <summary>
  39. /// 登录磅房号
  40. /// </summary>
  41. [Description("登录磅房号")]
  42. [Nullable(false)]
  43. [DataLength(20)]
  44. public string BaseSpotNo
  45. {
  46. get { return baseSpotNo; }
  47. set { baseSpotNo = value; }
  48. }
  49. /// <summary>
  50. /// 最后在线时间
  51. /// </summary>
  52. [Description("最后在线时间")]
  53. [Nullable(true)]
  54. public string UpdateTime
  55. {
  56. get { return updateTime; }
  57. set { updateTime = value; }
  58. }
  59. }
  60. }