org.zodiac.mybatisplus.base.DictionaryService Maven / Gradle / Ivy
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);
}