BasDeviceKindDto.cs 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Model.Dto
  7. {
  8. internal class BasDeviceKindDto : BaseDto
  9. { /// <summary>
  10. /// Desc:设备类型编号
  11. /// Default:
  12. /// Nullable:False
  13. /// </summary>
  14. private string deviceKindNo { get; set; }
  15. public string DeviceKindNo
  16. {
  17. get { return deviceKindNo; }
  18. set { deviceKindNo = value; OnPropertyChanged(); }
  19. }
  20. /// <summary>
  21. /// Desc:设备名称
  22. /// Default:
  23. /// Nullable:False
  24. /// </summary>
  25. private string deviceKindName { get; set; }
  26. public string DeviceKindName
  27. {
  28. get { return deviceKindName; }
  29. set { deviceKindName = value; OnPropertyChanged(); }
  30. }
  31. /// <summary>
  32. /// Desc:所属项目编号
  33. /// Default:
  34. /// Nullable:True
  35. /// </summary>
  36. private string projectNo { get; set; }
  37. public string ProjectNo
  38. {
  39. get { return projectNo; }
  40. set { projectNo = value; OnPropertyChanged(); }
  41. }
  42. /// <summary>
  43. /// Desc:描述
  44. /// Default:
  45. /// Nullable:False
  46. /// </summary>
  47. private string describe { get; set; }
  48. public string Describe
  49. {
  50. get { return describe; }
  51. set { describe = value; OnPropertyChanged(); }
  52. }
  53. /// <summary>
  54. /// Desc:创建者
  55. /// Default:
  56. /// Nullable:False
  57. /// </summary>
  58. public string CreateBy { get; set; }
  59. /// <summary>
  60. /// Desc:创建时间
  61. /// Default:
  62. /// Nullable:False
  63. /// </summary>
  64. public DateTime CreateTime { get; set; }
  65. /// <summary>
  66. /// Desc:更新者
  67. /// Default:
  68. /// Nullable:False
  69. /// </summary>
  70. public string UpdateBy { get; set; }
  71. /// <summary>
  72. /// Desc:更新时间
  73. /// Default:
  74. /// Nullable:False
  75. /// </summary>
  76. public DateTime UpdateTime { get; set; }
  77. /// <summary>
  78. /// Desc:备注
  79. /// Default:
  80. /// Nullable:True
  81. /// </summary>
  82. public string Remark { get; set; }
  83. }
  84. }