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

xyz.migoo.framework.infra.service.developer.dictionary.DictionaryService Maven / Gradle / Ivy

The newest version!
package xyz.migoo.framework.infra.service.developer.dictionary;

import xyz.migoo.framework.common.pojo.PageResult;
import xyz.migoo.framework.infra.controller.developer.dictionary.vo.DictionaryPageReqVO;
import xyz.migoo.framework.infra.dal.dataobject.developer.dictionary.DictionaryDO;

import java.util.List;

public interface DictionaryService {

    PageResult get(DictionaryPageReqVO req);

    List get();

    void add(DictionaryDO bean);

    void update(DictionaryDO bean);

    void verify(String code, Long id);

    void remove(Long id);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy