CmmLoadinfoCEntity.cs 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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 CmmLoadinfoCEntity
  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. /// 现在时间
  29. /// </summary>
  30. private string actualtime = "";
  31. /// <summary>
  32. /// 登录IP
  33. /// </summary>
  34. [Description("登录IP")]
  35. [Nullable(false)]
  36. [DataLength(20)]
  37. public string Loadip
  38. {
  39. get { return loadip; }
  40. set { loadip = value; }
  41. }
  42. /// <summary>
  43. /// 登录磅房号
  44. /// </summary>
  45. [Description("登录磅房号")]
  46. [Nullable(false)]
  47. [DataLength(20)]
  48. public string BaseSpotNo
  49. {
  50. get { return baseSpotNo; }
  51. set { baseSpotNo = value; }
  52. }
  53. /// <summary>
  54. /// 最后在线时间
  55. /// </summary>
  56. [Description("最后在线时间")]
  57. [Nullable(true)]
  58. public string UpdateTime
  59. {
  60. get { return updateTime; }
  61. set { updateTime = value; }
  62. }
  63. /// <summary>
  64. /// 最后在线时间
  65. /// </summary>
  66. [Description("现在时间")]
  67. [Nullable(true)]
  68. public string Actualtime
  69. {
  70. get { return actualtime; }
  71. set { actualtime = value; }
  72. }
  73. }
  74. }