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

70 lines
1.6 KiB

2 years ago
package com.ruoyi.tcZz.mapper;
import java.util.List;
import com.ruoyi.tcZz.domain.TcYqxxltj;
2 years ago
import org.apache.ibatis.annotations.Param;
2 years ago
/**
2 years ago
* Mapper
2 years ago
*
* @author ruoyi
* @date 2023-10-12
*/
public interface TcYqxxltjMapper
{
/**
2 years ago
*
2 years ago
*
2 years ago
* @param id
* @return
2 years ago
*/
public TcYqxxltj selectTcYqxxltjById(Long id);
/**
2 years ago
*
2 years ago
*
2 years ago
* @param tcYqxxltj
* @return
2 years ago
*/
public List<TcYqxxltj> selectTcYqxxltjList(TcYqxxltj tcYqxxltj);
/**
2 years ago
*
2 years ago
*
2 years ago
* @param tcYqxxltj
2 years ago
* @return
*/
public int insertTcYqxxltj(TcYqxxltj tcYqxxltj);
/**
2 years ago
*
2 years ago
*
2 years ago
* @param tcYqxxltj
2 years ago
* @return
*/
public int updateTcYqxxltj(TcYqxxltj tcYqxxltj);
/**
2 years ago
*
2 years ago
*
2 years ago
* @param id
2 years ago
* @return
*/
public int deleteTcYqxxltjById(Long id);
/**
2 years ago
*
2 years ago
*
* @param ids
* @return
*/
public int deleteTcYqxxltjByIds(Long[] ids);
2 years ago
/**
*
*
*
*/
public void updateByisStatus(@Param("isStatus") Integer isStatus, @Param("ids") List<String> ids);
2 years ago
}