39 lines
654 B
Java
39 lines
654 B
Java
package com.dpkj.common.config;
|
|
|
|
import lombok.Data;
|
|
import org.springframework.boot.context.properties.ConfigurationProperties;
|
|
import org.springframework.stereotype.Component;
|
|
|
|
/**
|
|
* @Auther: 萧道子
|
|
* @Date: 2024/4/28 14:55
|
|
* @Description:
|
|
*/
|
|
@Data
|
|
@Component
|
|
@ConfigurationProperties(prefix = "dpkj.chs.yn")
|
|
public class YnChsConfig {
|
|
|
|
/**
|
|
* 医保接口地址
|
|
*/
|
|
private String url;
|
|
|
|
/**
|
|
* 医保机构编码
|
|
*/
|
|
private String fixmedinsCode;
|
|
|
|
/**
|
|
* 服务商统一社会信用代码
|
|
*/
|
|
private String infosyscode;
|
|
|
|
/**
|
|
* 服务商ID码
|
|
*/
|
|
private String infosyssign;
|
|
|
|
|
|
}
|