All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.mingsoft.mdiy.biz.IDictBiz Maven / Gradle / Ivy

There is a newer version: 2.2.5
Show newest version
/**
 * Copyright (c) 2012-present 铭软科技(mingsoft.net)
 * 本软件及相关文档文件(以下简称“软件”)的版权归 铭软科技 所有
 * 遵循 铭软科技《服务协议》中的《保密条款》
 */




package net.mingsoft.mdiy.biz;


import net.mingsoft.base.biz.IBaseBiz;
import net.mingsoft.mdiy.entity.DictEntity;

import java.util.List;

/**
 * 字典表业务
 * @author 铭飞开发团队
 * @version
 * 版本号:1.0.0
* 创建日期:2016-9-8 17:11:19
* 历史修订:
*/ public interface IDictBiz extends IBaseBiz { /** * * 根据字典类型和标签名获取实体 * @param dictType 类型 * @param dictLabel 标签名 * @return DictEntity 字典实体 */ public DictEntity getByTypeAndLabelAndValue(String dictType, String dictLabel , String dictValue); /** * 获取所有字典类型 * 根据子数据类型获取所有字典类型 * @param dictEntity * @return */ List dictType(DictEntity dictEntity); /** * 使用站群排除appId拼接问题 * @param dictEntity * @return */ List queryExcludeApp(DictEntity dictEntity); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy