/** 
 | 
 * Copyright (c) 2018 人人开源 All rights reserved. 
 | 
 * 
 | 
 * https://www.renren.io 
 | 
 * 
 | 
 * 版权所有,侵权必究! 
 | 
 */ 
 | 
  
 | 
package com.zt.modules.sys.dao; 
 | 
  
 | 
import com.zt.common.dao.BaseDao; 
 | 
import com.zt.modules.sys.dto.DictTypeDto; 
 | 
import com.zt.modules.sys.model.SysDictType; 
 | 
import org.apache.ibatis.annotations.Mapper; 
 | 
  
 | 
import java.util.List; 
 | 
  
 | 
/** 
 | 
 * 字典类型 
 | 
 * 
 | 
 * @author hehz 
 | 
 */ 
 | 
@Mapper 
 | 
public interface SysDictTypeDao extends BaseDao<SysDictType> { 
 | 
  
 | 
    List<SysDictType> getTenantDictTypes(Long tenantId); 
 | 
    List<DictTypeDto> getMaxSortList2(); 
 | 
} 
 |