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/TcVxMapper.java

62 lines
1.0 KiB

package com.ruoyi.tcZz.mapper;
import java.util.List;
import com.ruoyi.tcZz.domain.TcVx;
/**
* 微信Mapper接口
*
* @author ruoyi
* @date 2023-10-13
*/
public interface TcVxMapper
{
/**
* 查询微信
*
* @param id 微信主键
* @return 微信
*/
public TcVx selectTcVxById(Long id);
/**
* 查询微信列表
*
* @param tcVx 微信
* @return 微信集合
*/
public List<TcVx> selectTcVxList(TcVx tcVx);
/**
* 新增微信
*
* @param tcVx 微信
* @return 结果
*/
public int insertTcVx(TcVx tcVx);
/**
* 修改微信
*
* @param tcVx 微信
* @return 结果
*/
public int updateTcVx(TcVx tcVx);
/**
* 删除微信
*
* @param id 微信主键
* @return 结果
*/
public int deleteTcVxById(Long id);
/**
* 批量删除微信
*
* @param ids 需要删除的数据主键集合
* @return 结果
*/
public int deleteTcVxByIds(Long[] ids);
}