23 lines
414 B
Java
23 lines
414 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")
|
||
|
public class ChsConfig {
|
||
|
|
||
|
/**
|
||
|
* 医保机构编码
|
||
|
*/
|
||
|
private String orgcode;
|
||
|
|
||
|
}
|