Package org.jeecgframework.core.annotation

Examples of org.jeecgframework.core.annotation.JeecgEntityTitle


      dbTable.setTableName(classMetadata.getTableName());
      dbTable.setEntityName(classMetadata.getEntityName());
      Class<?> c;
      try {
        c = Class.forName(key);
        JeecgEntityTitle t = c.getAnnotation(JeecgEntityTitle.class);
        dbTable.setTableTitle(t != null ? t.name() : "");
      } catch (ClassNotFoundException e) {
        e.printStackTrace();
      }
      resultList.add(dbTable);
    }
View Full Code Here

TOP

Related Classes of org.jeecgframework.core.annotation.JeecgEntityTitle

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.