You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

45 lines
921 B
Java

3 years ago
package com.ruoyi.system.mapper;
import java.util.List;
import com.ruoyi.system.domain.SysUserPost;
/**
*
*
* @author ruoyi
*/
public interface SysUserPostMapper
{
/**
* ID
*
* @param userId ID
* @return
*/
public int deleteUserPostByUserId(Long userId);
/**
* ID使
*
* @param postId ID
* @return
*/
public int countUserPostById(Long postId);
/**
*
*
* @param ids ID
* @return
*/
public int deleteUserPost(Long[] ids);
/**
*
*
* @param userPostList
* @return
*/
public int batchUserPost(List<SysUserPost> userPostList);
}