Data.java 177 Bytes Edit Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 package com.bsth.entity; /** * @author Hill */ public abstract class Data { /** * 获取数据类型 * @return */ public abstract String getType(); }