package com.yihu.ehr.model.standard; import java.util.Objects; /** * 字典项数据模型 * * @author lincl * @version 1.0 * @created 2016.2.22 */ public class MStdDictEntry { //------------------ehr 字段 private Long id; private Long dictId;//字典ID private String code; private String value; private String desc; private Integer hashCode; //-----------------ehr 字段 private String OperationType; private Long standardId; private String stdVersion; public Long getId() { return id; } public void setId(Long id) { this.id = id; } public Long getDictId() { return dictId; } public void setDictId(Long dictId) { this.dictId = dictId; } public String getCode() { return code; } public void setCode(String code) { this.code = code; } public String getDesc() { return desc; } public void setDesc(String desc) { this.desc = desc; } public String getValue() { return value; } public void setValue(String value) { this.value = value; } public Integer getHashCode() { hashCode = Objects.hash(dictId, code, value, desc); return hashCode; } public void setHashCode(Integer hashCode) { this.hashCode = hashCode; } public Long getStandardId() { return standardId; } public void setStandardId(Long standardId) { this.standardId = standardId; } public String getOperationType() { return OperationType; } public void setOperationType(String operationType) { OperationType = operationType; } public String getStdVersion() { return stdVersion; } public void setStdVersion(String stdVersion) { this.stdVersion = stdVersion; } }