BasDeviceKindDto.cs 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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. public class BasDeviceKindDto : BaseDto
  9. {
  10. /// <summary>
  11. /// Desc:设备类型主键ID
  12. /// Default:
  13. /// Nullable:False
  14. /// </summary>
  15. private long deviceKindId { get; set; }
  16. public long DeviceKindId
  17. {
  18. get { return deviceKindId; }
  19. set { deviceKindId = value; OnPropertyChanged(); }
  20. }
  21. // <summary>
  22. /// Desc:设备类型编号
  23. /// Default:
  24. /// Nullable:False
  25. /// </summary>
  26. private string deviceKindNo { get; set; }
  27. public string DeviceKindNo
  28. {
  29. get { return deviceKindNo; }
  30. set { deviceKindNo = value; OnPropertyChanged(); }
  31. }
  32. /// <summary>
  33. /// Desc:设备名称
  34. /// Default:
  35. /// Nullable:False
  36. /// </summary>
  37. private string deviceKindName { get; set; }
  38. public string DeviceKindName
  39. {
  40. get { return deviceKindName; }
  41. set { deviceKindName = value; OnPropertyChanged(); }
  42. }
  43. /// <summary>
  44. /// Desc:创建者
  45. /// Default:
  46. /// Nullable:False
  47. /// </summary>
  48. public string CreateBy { get; set; }
  49. /// <summary>
  50. /// Desc:创建时间
  51. /// Default:
  52. /// Nullable:False
  53. /// </summary>
  54. public DateTime CreateTime { get; set; }
  55. /// <summary>
  56. /// Desc:更新者
  57. /// Default:
  58. /// Nullable:False
  59. /// </summary>
  60. public string UpdateBy { get; set; }
  61. /// <summary>
  62. /// Desc:更新时间
  63. /// Default:
  64. /// Nullable:False
  65. /// </summary>
  66. public DateTime UpdateTime { get; set; }
  67. /// <summary>
  68. /// Desc:备注
  69. /// Default:
  70. /// Nullable:True
  71. /// </summary>
  72. public string Remark { get; set; }
  73. }
  74. }