1234567891011121314151617181920212223242526272829303132333435363738394041 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using SAGA.MBI.Common;
- namespace SAGA.GplotDrawData
- {
- public class WebGplotSettings
- {
- static WebGplotSettings()
- {
- GplotUrl =MBIConst.GplotViewHost+"gplot";
- MindMapUrl =MBIConst.GplotViewHost+"mindMap";
- VPipeUrl=MBIConst.GplotViewHost+"conduitGraphy";
- VSpaceUrl = MBIConst.GplotViewHost+"spaceGraphy";
- MachineRoomUrl = MBIConst.GplotViewHost + "coldside";
- }
- /// <summary>
- /// 拓扑图地址
- /// </summary>
- public static readonly string GplotUrl;
- /// <summary>
- /// 思维导图地址
- /// </summary>
- public static readonly string MindMapUrl;
- /// <summary>
- /// 立管地址
- /// </summary>
- public static readonly string VPipeUrl;
- /// <summary>
- /// 立面空间地址
- /// </summary>
- public static readonly string VSpaceUrl;
- /// <summary>
- /// 机房地址
- /// </summary>
- public static readonly string MachineRoomUrl;
- }
- }
|