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

62 lines
1.2 KiB

package com.ruoyi.tcZz.mapper;
import java.util.List;
import com.ruoyi.tcZz.domain.TcYqzs;
/**
* Mapper
*
* @author ruoyi
* @date 2023-10-12
*/
public interface TcYqzsMapper
{
/**
*
*
* @param id
* @return
*/
public TcYqzs selectTcYqzsById(Long id);
/**
*
*
* @param tcYqzs
* @return
*/
public List<TcYqzs> selectTcYqzsList(TcYqzs tcYqzs);
/**
*
*
* @param tcYqzs
* @return
*/
public int insertTcYqzs(TcYqzs tcYqzs);
/**
*
*
* @param tcYqzs
* @return
*/
public int updateTcYqzs(TcYqzs tcYqzs);
/**
*
*
* @param id
* @return
*/
public int deleteTcYqzsById(Long id);
/**
*
*
* @param ids
* @return
*/
public int deleteTcYqzsByIds(Long[] ids);
}