tb_formulasdata.cs 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using Prism.Mvvm;
  6. using System.Threading.Tasks;
  7. namespace DefaultEdit.Model
  8. {
  9. ///<summary>
  10. ///
  11. ///</summary>
  12. public partial class tb_formulasdata:BindableBase
  13. {
  14. public tb_formulasdata()
  15. {
  16. }
  17. /// <summary>
  18. /// Desc:
  19. /// Default:
  20. /// Nullable:True
  21. /// </summary>
  22. private long _Id;
  23. /// <summary>
  24. /// Desc:
  25. /// Default:
  26. /// Nullable:True
  27. /// </summary>
  28. private string _第一次离心转速;
  29. /// <summary>
  30. /// Desc:
  31. /// Default:
  32. /// Nullable:True
  33. /// </summary>
  34. private string _第一次离心时间;
  35. /// <summary>
  36. /// Desc:
  37. /// Default:
  38. /// Nullable:True
  39. /// </summary>
  40. private string _第二次离心转速;
  41. /// <summary>
  42. /// Desc:
  43. /// Default:
  44. /// Nullable:True
  45. /// </summary>
  46. private string _第二次离心时间;
  47. private string _光固化时间;
  48. public long Id { get => _Id; set { SetProperty(ref _Id, value); } }
  49. public string 第一次离心转速 { get => _第一次离心转速; set { SetProperty(ref _第一次离心转速, value); } }
  50. public string 第一次离心时间 { get => _第一次离心时间; set { SetProperty(ref _第一次离心时间, value); } }
  51. public string 第二次离心转速 { get => _第二次离心转速; set { SetProperty(ref _第二次离心转速, value); } }
  52. public string 第二次离心时间 { get => _第二次离心时间; set { SetProperty(ref _第二次离心时间, value); } }
  53. public string 光固化时间 { get => _光固化时间; set { SetProperty(ref _光固化时间, value); } }
  54. }
  55. }