package foundation.data.entity; import foundation.json.IJSONWriter; public interface IDictionary { String getId(); String getName(); String getValue(String code); void writeJSONBody(IJSONWriter writer); }