MESUri.java
946 Bytes
package com.huaheng.api.mes.domain;
public enum MESUri {
// 登录
LOGIN("http://wanbao1.frp.newcoretech.com/api/basedata/usercenter/auth/v1/openapi/token/create"),
// 新增点位
INSERT_AGV_PORT("https://wanbao1.frp.newcoretech.com/api/metadata-flow/trigger/webhook/fc81f5d3-fa3d-4246-b6df-f3a65d2c38a6"),
// 新增托盘
INSERT_CONTAINER("http://wanbao1.frp.newcoretech.com/api/metadata-flow/trigger/webhook/1a7d44ea-43de-4a91-8a98-59061185c8e7"),
// 回传订单送达
RETURN_ORDER_CODE("http://wanbao1.frp.newcoretech.com/api/metadata-flow/trigger/webhook/479f5ed2-e69b-4ef9-884a-8e465e36807e"),
// 空箱送达
RETURN_EMPTY_FINISH("http://wanbao1.frp.newcoretech.com/api/metadata-flow/trigger/webhook/a17f2e23-99bc-43a2-bb16-6c44748f3988");
private String apiURI;
MESUri(String apiURI) {
this.apiURI = apiURI;
}
public String getApiUri() {
return apiURI;
}
}