1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package com.zy.asrs.wms.apis.wcs.entity.domain;
 
 
import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;
 
@Data
@ConfigurationProperties(prefix = "rcs")
@Component
public class SystemProperties {
    /***RCS基础API HOST*/
    private String baseHost;
    /***RRCS上报任务状态*/
    private String issueTaskOfEvent;
    /**RCS通知传输线流动*/
    private String conveyorStart;
    private static String HOST = "http://localhost:8080";
 
    public static String ISSUE_TASK_OF_EVENT = HOST +  "/task/create";
 
    public static String CONVEYOR_START = HOST + "/conveyor/moveContainer";
 
 
}