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

com.github.rexsheng.springboot.faster.system.dict.application.DictService Maven / Gradle / Ivy

The newest version!
package com.github.rexsheng.springboot.faster.system.dict.application;

import com.github.rexsheng.springboot.faster.common.domain.PagedList;
import com.github.rexsheng.springboot.faster.system.dict.application.dto.AddDictRequest;
import com.github.rexsheng.springboot.faster.system.dict.application.dto.DictDetailResponse;
import com.github.rexsheng.springboot.faster.system.dict.application.dto.QueryDictRequest;
import com.github.rexsheng.springboot.faster.system.dict.application.dto.UpdateDictRequest;

import java.util.List;

public interface DictService {

    void add(AddDictRequest request);

    List queryList(QueryDictRequest request);

    PagedList pagedList(QueryDictRequest request);

    DictDetailResponse get(Long id);

    void update(UpdateDictRequest request);

    void updateStatus(List request);

    void delete(List ids);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy