xyz.migoo.framework.infra.service.developer.dictionary.DictionaryValueService 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.DictionaryValuePageReqVO;
import xyz.migoo.framework.infra.dal.dataobject.developer.dictionary.DictionaryValueDO;
import java.util.List;
public interface DictionaryValueService {
PageResult get(DictionaryValuePageReqVO req);
List get();
void add(DictionaryValueDO bean);
void update(DictionaryValueDO bean);
void remove(Long id);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy