You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
364 B
16 lines
364 B
package xyz.wbsite.frame.provider;
|
|
|
|
import xyz.wbsite.frame.base.DictEntity;
|
|
|
|
import javax.validation.constraints.NotNull;
|
|
import java.util.List;
|
|
|
|
public interface DictProvider {
|
|
|
|
List<DictEntity> getDict(@NotNull String dictName);
|
|
|
|
boolean isExist(@NotNull String dictName);
|
|
|
|
boolean isExistValue(@NotNull String dictName, @NotNull String dictKey);
|
|
}
|