package com.yihu.wlyy.entity; import javax.persistence.Entity; import javax.persistence.Table; /** * 机构映射表 * @author hzp */ @Entity @Table(name = "wlyy_hospital_mapping") public class HospitalMapping extends IdEntity { // 本地机构代码 private String code; // 机构名称 private String name; // 对接机构 private String type; // 映射机构代码 private String mappingCode; public String getType() { return type; } public void setType(String type) { this.type = type; } 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 getMappingCode() { return mappingCode; } public void setMappingCode(String mappingCode) { this.mappingCode = mappingCode; } }