Examples of TDictionaryType


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
Copyright © 2018 www.massapi.com. 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.