Package com.iteye.tianshi.web.model.base

Examples of com.iteye.tianshi.web.model.base.TDictionaryType


   */
  @Transactional(readOnly=true)
  public List<TDictionary> queryDictionarys(Long dictTypeId) {
    List<TDictionary> dictionaries = DictionaryHolder.getDictionaries(dictTypeId);
    if(dictionaries == null) {
      TDictionaryType dictionaryType = this.dictionaryTypeDao.find(dictTypeId);
      if(dictionaryType != null) {
        dictionaries = dictionaryType.getTDictionaries();
      }
      DictionaryHolder.putDictionaries(dictTypeId, dictionaries);
    }
    return dictionaries;
 
View Full Code Here

TOP

Related Classes of com.iteye.tianshi.web.model.base.TDictionaryType

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.