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

com.github.rexsheng.springboot.faster.system.post.application.PostService Maven / Gradle / Ivy

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

import com.github.rexsheng.springboot.faster.common.domain.PagedList;
import com.github.rexsheng.springboot.faster.system.menu.application.dto.*;
import com.github.rexsheng.springboot.faster.system.post.application.dto.AddPostRequest;
import com.github.rexsheng.springboot.faster.system.post.application.dto.PostDetailResponse;
import com.github.rexsheng.springboot.faster.system.post.application.dto.QueryPostRequest;
import com.github.rexsheng.springboot.faster.system.post.application.dto.UpdatePostRequest;

import java.util.List;

public interface PostService {

    void add(AddPostRequest request);

    List queryList(QueryPostRequest request);

    PagedList pagedList(QueryPostRequest request);

    PostDetailResponse get(Integer id);

    void update(UpdatePostRequest request);

    void updateStatus(List request);

    void delete(List ids);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy