2025-03-24 22:12:01 +08:00
|
|
|
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 {
|
|
|
|
|
|
|
|
/**
|
2025-08-06 20:35:51 +08:00
|
|
|
* 医保机构代码
|
2025-03-24 22:12:01 +08:00
|
|
|
*/
|
2025-08-06 20:35:51 +08:00
|
|
|
private String orgId;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 收款员编号
|
|
|
|
*/
|
|
|
|
private String operatorId;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 收款员姓名
|
|
|
|
*/
|
|
|
|
private String operatorName;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 科室编号
|
|
|
|
*/
|
|
|
|
private String officeId;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 科室名称
|
|
|
|
*/
|
|
|
|
private String officeName;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 医保接口地址
|
|
|
|
*/
|
|
|
|
private String url;
|
2025-03-24 22:12:01 +08:00
|
|
|
|
|
|
|
}
|