EnforcementHotspot.cs 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  1. using Hotline.Settings.Hotspots;
  2. using SqlSugar;
  3. using System.ComponentModel;
  4. using XF.Domain.Repository;
  5. namespace Hotline.JudicialManagement
  6. {
  7. /// <summary>
  8. /// 司法行政监督管理指定热点
  9. /// </summary>
  10. [Description("司法行政监督管理指定热点")]
  11. public class EnforcementHotspot : CreationSoftDeleteEntity
  12. {
  13. public string HotSpotName { get; set; }
  14. [SugarColumn(IsNullable = true)]
  15. public string ParentId { get; set; }
  16. [SugarColumn(IsNullable = true)]
  17. public string PYCode { get; set; }
  18. [SugarColumn(IsNullable = true)]
  19. public string FullPYCode { get; set; }
  20. public string ProvinceCode { get; set; }
  21. public int OrderBy { get; set; }
  22. public string TrunkNum { get; set; }
  23. /// <summary>
  24. /// 生成的时候写入
  25. /// </summary>
  26. public string HotSpotFullName { get; set; }
  27. [SugarColumn(IsIgnore = true)]
  28. public List<EnforcementHotspot> Children { get; set; }
  29. [SugarColumn(IsIgnore = true)]
  30. public bool HasChild { get; set; }
  31. }
  32. }