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

org.zodiac.mybatisplus.base.DictionaryService Maven / Gradle / Ivy

There is a newer version: 1.6.8
Show newest version
package org.zodiac.mybatisplus.base;

import java.util.List;

import org.zodiac.mybatisplus.model.entity.DictionaryEntity;
import org.zodiac.mybatisplus.model.vo.DictionaryVO;
import org.zodiac.sdk.toolkit.model.KeyValue;

/**
 * 数据字典Service。
 * 
 */
public interface DictionaryService extends BaseService{

    List getLabelValueList(String type);

    boolean createDictAndChildren(DictionaryVO dictVO);

    boolean updateDictAndChildren(DictionaryVO dictVO);

    boolean deleteDictAndChildren(Long id);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy