package com.ediagnosis.cdr.entity; import com.mybatisflex.annotation.Id; import com.mybatisflex.annotation.KeyType; import com.mybatisflex.annotation.Table; /** * 记录数据总量概览 * @TableName dim_data_summary */ @Table(value ="dim_data_summary") public class DimDataSummary { /** * */ @Id(keyType = KeyType.Auto) private Integer id; /** * 指标名称 */ private String name; /** * 指标编码 */ private String code; /** * 指标结果 */ private String value; /** * 更新时间 */ private String updateTime; /** * */ public Integer getId() { return id; } /** * */ public void setId(Integer id) { this.id = id; } /** * 指标名称 */ public String getName() { return name; } /** * 指标名称 */ public void setName(String name) { this.name = name; } /** * 指标编码 */ public String getCode() { return code; } /** * 指标编码 */ public void setCode(String code) { this.code = code; } /** * 指标结果 */ public String getValue() { return value; } /** * 指标结果 */ public void setValue(String value) { this.value = value; } /** * 更新时间 */ public String getUpdateTime() { return updateTime; } /** * 更新时间 */ public void setUpdateTime(String updateTime) { this.updateTime = updateTime; } }