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

62 lines
1.1 KiB

2 years ago
package com.ruoyi.tcZz.mapper;
import java.util.List;
import com.ruoyi.tcZz.domain.TcTbcz;
/**
* Mapper
*
* @author ruoyi
* @date 2023-10-12
*/
public interface TcTbczMapper
{
/**
*
*
* @param id
* @return
*/
public TcTbcz selectTcTbczById(Long id);
/**
*
*
* @param tcTbcz
* @return
*/
public List<TcTbcz> selectTcTbczList(TcTbcz tcTbcz);
/**
*
*
* @param tcTbcz
* @return
*/
public int insertTcTbcz(TcTbcz tcTbcz);
/**
*
*
* @param tcTbcz
* @return
*/
public int updateTcTbcz(TcTbcz tcTbcz);
/**
*
*
* @param id
* @return
*/
public int deleteTcTbczById(Long id);
/**
*
*
* @param ids
* @return
*/
public int deleteTcTbczByIds(Long[] ids);
}