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);
}