WebGplotSettings.cs 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using SAGA.MBI.Common;
  7. namespace SAGA.GplotDrawData
  8. {
  9. public class WebGplotSettings
  10. {
  11. static WebGplotSettings()
  12. {
  13. GplotUrl =MBIConst.GplotViewHost+"gplot";
  14. MindMapUrl =MBIConst.GplotViewHost+"mindMap";
  15. VPipeUrl=MBIConst.GplotViewHost+"conduitGraphy";
  16. VSpaceUrl = MBIConst.GplotViewHost+"spaceGraphy";
  17. MachineRoomUrl = MBIConst.GplotViewHost + "coldside";
  18. }
  19. /// <summary>
  20. /// 拓扑图地址
  21. /// </summary>
  22. public static readonly string GplotUrl;
  23. /// <summary>
  24. /// 思维导图地址
  25. /// </summary>
  26. public static readonly string MindMapUrl;
  27. /// <summary>
  28. /// 立管地址
  29. /// </summary>
  30. public static readonly string VPipeUrl;
  31. /// <summary>
  32. /// 立面空间地址
  33. /// </summary>
  34. public static readonly string VSpaceUrl;
  35. /// <summary>
  36. /// 机房地址
  37. /// </summary>
  38. public static readonly string MachineRoomUrl;
  39. }
  40. }