TLSettingCommon.cs 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. using CommunityToolkit.Mvvm.ComponentModel;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace ivf_tl_Entity.Entity.HouseSetting
  8. {
  9. public class TLSettingCommon : ObservableObject
  10. {
  11. public long id { get; set; }
  12. private int _autoFocusTime;
  13. public int autoFocusTime
  14. {
  15. get => _autoFocusTime;
  16. set => SetProperty(ref _autoFocusTime, value);
  17. }
  18. public string tlSn { get; set; }
  19. public string tmpDir { get; set; }
  20. private int _videoFps;
  21. public int videoFps
  22. {
  23. get => _videoFps;
  24. set => SetProperty(ref _videoFps, value);
  25. }
  26. public int cropNum { get; set; }
  27. public string watermarking { get; set; }
  28. public string heapDate { get; set; }
  29. public string keepDate { get; set; }
  30. private string _reportHospitalLogoUrl;
  31. public string reportHospitalLogoUrl
  32. {
  33. get => _reportHospitalLogoUrl;
  34. set => SetProperty(ref _reportHospitalLogoUrl, value);
  35. }
  36. private string _reportHospitalName;
  37. public string reportHospitalName
  38. {
  39. get => _reportHospitalName;
  40. set => SetProperty(ref _reportHospitalName, value);
  41. }
  42. }
  43. }