| 123456789101112131415161718192021222324252627 |
- using CommunityToolkit.Mvvm.ComponentModel;
- using System;
- using System.Collections.Generic;
- using System.Collections.ObjectModel;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace ivf_tl_Entity.ControlEntity
- {
- public partial class AddressEntity : ObservableObject
- {
- /// <summary>
- /// 拼音首字母
- /// </summary>
- public string pinyinPrefix { get; set; }
- public string extName { get; set; }
- /// <summary>
- /// 对应字母数据
- /// </summary>
- public ObservableCollection<AddressEntity> children { get; set; }
- public int deep { get; set; }
- public int id { get; set; }
- }
- }
|