package com.zy.common.constant;
|
|
/**
|
* @author pang.jiabao
|
* @description 调用外部API地址常量
|
* @createDate 2025/11/13 13:10
|
*/
|
public class ApiInterfaceConstant {
|
|
/* **************************************ERP接口对接 start*******************************************************/
|
|
/**
|
* ERP对接基础地址
|
*/
|
// public static final String URI = "http://192.168.99.130:80";
|
// 测试地址
|
public static final String ERP_IP = "http://127.0.0.1:8080/wms/open/asrs";
|
|
/**
|
* 入库完成上报路径
|
*/
|
public static final String PAKIN_PATH = "/inOrderFinishReport";
|
|
/**
|
* 出库完成上报路径
|
*/
|
public static final String PAKOUT_PATH = "/outOrderFinishReport";
|
|
/* ***************************************AGV接口对接 start*******************************************************/
|
|
/**
|
* AGV对接基础地址
|
*/
|
// public static final String AGV_IP = "http://192.168.99.130:80";
|
// 测试地址
|
public static final String AGV_IP = "http://127.0.0.1:8080/yhfzwms/open/asrs";
|
|
/**
|
* 仙工M4 - 创建任务(货物转运、实托入库,实托出库)
|
*/
|
public static final String AGV_CREATE_TASK_PATH = "/api/agv/inbond";
|
|
/**
|
* 仙工M4 - 取消任务
|
*/
|
public static final String AGV_CANCEL_TASK_PATH = "/api/agv/cancelTransport";
|
|
}
|