HotSpotType.cs 781 B

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