1
2
3
4
5
6
7
8
9
10
11
12
13
14
| package com.zy.common.constant;
|
| /*
| * Created by Monkey D. Luffy on 2025.09.09
| * */
| public class ArmConstant {
|
| public static final String ARM_URL = "http://192.168.99.130:80";
|
| public static final String ARM_ADAPTOR = "adaptor/api/wcs/order";//创建订单
|
| public static final String ARM_WORKSPACE = "adaptor/api/wcs/workspace/ready";//通知工作空间已就绪
|
| }
|
|