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.
tcZz-java/ruoyi-admin/src/main/java/com/ruoyi/tcZz/mapper/TcFbqkMapper.java

62 lines
1.3 KiB

2 years ago
package com.ruoyi.tcZz.mapper;
import java.util.List;
import com.ruoyi.tcZz.domain.TcFbqk;
/**
* tc_fbqkMapper
*
* @author ruoyi
* @date 2023-10-12
*/
public interface TcFbqkMapper
{
/**
* tc_fbqk
*
* @param id tc_fbqk
* @return tc_fbqk
*/
public TcFbqk selectTcFbqkById(Long id);
/**
* tc_fbqk
*
* @param tcFbqk tc_fbqk
* @return tc_fbqk
*/
public List<TcFbqk> selectTcFbqkList(TcFbqk tcFbqk);
/**
* tc_fbqk
*
* @param tcFbqk tc_fbqk
* @return
*/
public int insertTcFbqk(TcFbqk tcFbqk);
/**
* tc_fbqk
*
* @param tcFbqk tc_fbqk
* @return
*/
public int updateTcFbqk(TcFbqk tcFbqk);
/**
* tc_fbqk
*
* @param id tc_fbqk
* @return
*/
public int deleteTcFbqkById(Long id);
/**
* tc_fbqk
*
* @param ids
* @return
*/
public int deleteTcFbqkByIds(Long[] ids);
}