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

62 lines
1.5 KiB

package com.ruoyi.zongzhi.mapper;
import java.util.List;
import com.ruoyi.zongzhi.domain.TcBjsj;
/**
* ()Mapper
*
* @author ruoyi
* @date 2023-08-28
*/
public interface TcBjsjMapper
{
/**
* ()
*
* @param id ()
* @return ()
*/
public TcBjsj selectTcBjsjById(Long id);
/**
* ()
*
* @param tcBjsj ()
* @return ()
*/
public List<TcBjsj> selectTcBjsjList(TcBjsj tcBjsj);
/**
* ()
*
* @param tcBjsj ()
* @return
*/
public int insertTcBjsj(TcBjsj tcBjsj);
/**
* ()
*
* @param tcBjsj ()
* @return
*/
public int updateTcBjsj(TcBjsj tcBjsj);
/**
* ()
*
* @param id ()
* @return
*/
public int deleteTcBjsjById(Long id);
/**
* ()
*
* @param ids
* @return
*/
public int deleteTcBjsjByIds(Long[] ids);
}