MarkKeyEntity.cs 1.0 KB

1234567891011121314151617181920212223242526272829303132
  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.Mark
  8. {
  9. public class MarkKeyEntity : ObservableObject
  10. {
  11. public long id { get; set; }
  12. private int _num;
  13. public int num { get => _num; set => SetProperty(ref _num, value); }
  14. private string _info;
  15. public string info { get => _info; set => SetProperty(ref _info, value); }
  16. private string _markKey;
  17. public string markKey { get => _markKey; set => SetProperty(ref _markKey, value); }
  18. private int _keyNode;
  19. public int keyNode { get => _keyNode; set => SetProperty(ref _keyNode, value); }
  20. private string _name;
  21. public string name { get => _name; set => SetProperty(ref _name, value); }
  22. private int _orderNum;
  23. public int orderNum { get => _orderNum; set => SetProperty(ref _orderNum, value); }
  24. }
  25. }