HotSpotType.cs 800 B

1234567891011121314151617181920212223242526
  1. 
  2. using SqlSugar;
  3. using XF.Domain.Repository;
  4. namespace Hotline.Orders
  5. {
  6. /// <summary>
  7. /// 热点基础数据
  8. /// </summary>
  9. [SugarIndex("unique_hotspottype_name", nameof(HotSpotType.HotSpotName), OrderByType.Desc, true)]
  10. public class HotSpotType: CreationSoftDeleteEntity
  11. {
  12. public string HotSpotName { get; set; }
  13. [SugarColumn(IsNullable = true)]
  14. public string ParentId { get; set; }
  15. public string PYCode { get; set; }
  16. public string FullPYCode { get; set; }
  17. public string ProvinceCode { get; set; }
  18. public int OrderBy { get; set; }
  19. public string TrunkNum { get; set; }
  20. /// <summary>
  21. /// 生成的时候写入
  22. /// </summary>
  23. public string HotSpotFullName { get; set; }
  24. }
  25. }