1
2
3
4
5
6
7
8
9
10
11
12
13
  | package com.vincent.rsf.server.api.entity.constant; 
 |    
 |  public class RcsConstant { 
 |    
 |      //下发任务至RCS 
 |      public static String pubTask = "/rsf-open-api/rcs/pub/task"; 
 |    
 |      //同步RCS库位信息 
 |      public static String syncLocs = "/rsf-open-api/rcs/sync/locs"; 
 |    
 |      //上报订单信息 
 |      public static String REPORT_ORDERS = "/rsf-open-api/erp/report/order"; 
 |  } 
 |  
  |