package foundation.object.reader; import java.util.List; public interface IEntityReader { String getString(Object entity); String getJSONString(Object entity) throws Exception; String getJSONString(Object entity, String defaultValue); List getValueList(Object entity) throws Exception; }