package com.artfess.rescue.integrate.config;

import lombok.Data;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Component;

@Component
@Data
public class YhxtConfig {

    @Value("${yhxt.url}")
    private  String url;

    @Value("${yhxt.port}")
    private String port;

    @Value("${yhxt.userkey}")
    private String userKey;

}
