123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- 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;
- }
- }
|