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/service/ITcYqyjService.java

62 lines
1.2 KiB

2 years ago
package com.ruoyi.tcZz.service;
import java.util.List;
import com.ruoyi.tcZz.domain.TcYqyj;
/**
* Service
*
* @author ruoyi
* @date 2023-10-12
*/
public interface ITcYqyjService
{
/**
*
*
* @param id
* @return
*/
public TcYqyj selectTcYqyjById(Long id);
/**
*
*
* @param tcYqyj
* @return
*/
public List<TcYqyj> selectTcYqyjList(TcYqyj tcYqyj);
/**
*
*
* @param tcYqyj
* @return
*/
public int insertTcYqyj(TcYqyj tcYqyj);
/**
*
*
* @param tcYqyj
* @return
*/
public int updateTcYqyj(TcYqyj tcYqyj);
/**
*
*
* @param ids
* @return
*/
public int deleteTcYqyjByIds(Long[] ids);
/**
*
*
* @param id
* @return
*/
public int deleteTcYqyjById(Long id);
}