package com.ots.project.system.user.mapper;
|
import com.ots.project.system.user.domain.UserPost;
|
import java.util.List;
|
|
public interface UserPostMapper {
|
|
public int deleteUserPostByUserId(Long userId);
|
|
public int countUserPostById(Long postId);
|
|
public int deleteUserPost(Long[] ids);
|
|
public int batchUserPost(List<UserPost> userPostList);
|
}
|