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

62 lines
1.3 KiB

package com.ruoyi.tcZz.mapper;
import java.util.List;
import com.ruoyi.tcZz.domain.TcWlmqfzr;
/**
* Mapper
*
* @author ruoyi
* @date 2023-10-13
*/
public interface TcWlmqfzrMapper
{
/**
*
*
* @param id
* @return
*/
public TcWlmqfzr selectTcWlmqfzrById(Long id);
/**
*
*
* @param tcWlmqfzr
* @return
*/
public List<TcWlmqfzr> selectTcWlmqfzrList(TcWlmqfzr tcWlmqfzr);
/**
*
*
* @param tcWlmqfzr
* @return
*/
public int insertTcWlmqfzr(TcWlmqfzr tcWlmqfzr);
/**
*
*
* @param tcWlmqfzr
* @return
*/
public int updateTcWlmqfzr(TcWlmqfzr tcWlmqfzr);
/**
*
*
* @param id
* @return
*/
public int deleteTcWlmqfzrById(Long id);
/**
*
*
* @param ids
* @return
*/
public int deleteTcWlmqfzrByIds(Long[] ids);
}