|
@ -0,0 +1,67 @@
|
|
|
package com.yihu.jw.entity.hospital.healthCare;
|
|
|
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
import com.yihu.jw.entity.UuidIdentityEntity;
|
|
|
import com.yihu.jw.entity.UuidIdentityEntityWithCreateTime;
|
|
|
import com.yihu.jw.entity.hospital.prescription.WlyyOutpatientDO;
|
|
|
|
|
|
import javax.persistence.Column;
|
|
|
import javax.persistence.Entity;
|
|
|
import javax.persistence.Table;
|
|
|
import javax.persistence.Transient;
|
|
|
import java.util.Date;
|
|
|
import java.util.List;
|
|
|
|
|
|
/**
|
|
|
* Created by wangzhinan on 20211003
|
|
|
*/
|
|
|
@Entity
|
|
|
@Table(name = "base_ylz_medical_refund")
|
|
|
public class YlzMedicalRelationRefundDO extends UuidIdentityEntityWithCreateTime {
|
|
|
|
|
|
String ylzMedicalRelationId;//医保结算系统id
|
|
|
String code;//医保结算冲销接口编码
|
|
|
String name;//医保结算冲销接口名称
|
|
|
String request;//请求参数
|
|
|
String response;//返回参数
|
|
|
|
|
|
public String getYlzMedicalRelationId() {
|
|
|
return ylzMedicalRelationId;
|
|
|
}
|
|
|
|
|
|
public void setYlzMedicalRelationId(String ylzMedicalRelationId) {
|
|
|
this.ylzMedicalRelationId = ylzMedicalRelationId;
|
|
|
}
|
|
|
|
|
|
public String getCode() {
|
|
|
return code;
|
|
|
}
|
|
|
|
|
|
public void setCode(String code) {
|
|
|
this.code = code;
|
|
|
}
|
|
|
|
|
|
public String getName() {
|
|
|
return name;
|
|
|
}
|
|
|
|
|
|
public void setName(String name) {
|
|
|
this.name = name;
|
|
|
}
|
|
|
|
|
|
public String getRequest() {
|
|
|
return request;
|
|
|
}
|
|
|
|
|
|
public void setRequest(String request) {
|
|
|
this.request = request;
|
|
|
}
|
|
|
|
|
|
public String getResponse() {
|
|
|
return response;
|
|
|
}
|
|
|
|
|
|
public void setResponse(String response) {
|
|
|
this.response = response;
|
|
|
}
|
|
|
}
|