AddressEntity.cs 733 B

123456789101112131415161718192021222324252627
  1. using CommunityToolkit.Mvvm.ComponentModel;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Collections.ObjectModel;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace ivf_tl_Entity.ControlEntity
  9. {
  10. public partial class AddressEntity : ObservableObject
  11. {
  12. /// <summary>
  13. /// 拼音首字母
  14. /// </summary>
  15. public string pinyinPrefix { get; set; }
  16. public string extName { get; set; }
  17. /// <summary>
  18. /// 对应字母数据
  19. /// </summary>
  20. public ObservableCollection<AddressEntity> children { get; set; }
  21. public int deep { get; set; }
  22. public int id { get; set; }
  23. }
  24. }