64 lines
1.8 KiB
C#
64 lines
1.8 KiB
C#
using EasyInject.Attributes;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
/// <summary>
|
|
/// 全局配置
|
|
/// </summary>
|
|
|
|
public class GlobalConfig
|
|
{
|
|
/// <summary>
|
|
/// 请求协议
|
|
/// </summary>
|
|
public static string agreement = "http";
|
|
/// <summary>
|
|
/// 服务IP地址
|
|
/// </summary>
|
|
public static string serverIp = "192.168.1.196";
|
|
/// <summary>
|
|
/// 服务端口
|
|
/// </summary>
|
|
public static int serverPort = 8080;
|
|
/// <summary>
|
|
/// 请求地址的前缀
|
|
/// </summary>
|
|
public static string LoopApiPostfix = "app";
|
|
|
|
public static string EmulatorApiPostfix = "emulator";
|
|
/// <summary>
|
|
/// 远程存储数据接口地址
|
|
/// </summary>
|
|
public static string remoteSaveDataApi = "public/client/data/set";
|
|
/// <summary>
|
|
/// 获取远程存储数据接口地址
|
|
/// </summary>
|
|
public static string remoteGetDataApi = "public/client/data/get";
|
|
/// <summary>
|
|
/// agv 任务列表接口
|
|
/// </summary>
|
|
public static string agvTaskListApi = "public/wcs/agv_instruction/list";
|
|
/// <summary>
|
|
/// agv 任务状态反馈接口
|
|
/// </summary>
|
|
public static string agvTaskStatusFeedBackApi = "api/agv/v1/feedback";
|
|
/// <summary>
|
|
/// 后台设备数据监控的websockt地址
|
|
/// </summary>
|
|
public static string wsDeviceMonitorAddress = "app/ws/device/monitor";
|
|
/// <summary>
|
|
/// 与后台仓库库存监控websockt地址
|
|
/// </summary>
|
|
public static string wsStorageMonitorAddress = "app/ws/common/location/stauts";
|
|
/// <summary>
|
|
/// 获取后台库存数据接口地址
|
|
/// </summary>
|
|
public static string getStorageDataAip = "public/edi/obtains_container_of_rows";
|
|
/// <summary>
|
|
/// 获取托盘信息接口
|
|
/// </summary>
|
|
public static string containerInfoApi = "public/edi/obtains_container_palletize";
|
|
|
|
|
|
}
|