package com.mossle.api.dict; public class DictDataDTO { private String name; private String value; private String type; public String getName() { return name; } public void setName(String name) { this.name = name; } public String getValue() { return value; } public void setValue(String value) { this.value = value; } public String getType() { return type; } public void setType(String type) { this.type = type; } // ~ public boolean getBoolean() { return Boolean.parseBoolean(value); } public int getInt() { return Integer.parseInt(value); } public double getDouble() { return Double.parseDouble(value); } }