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

62 lines
1.4 KiB

2 years ago
package com.ruoyi.tcZz.service;
import java.util.List;
import com.ruoyi.tcZz.domain.TcZbxq;
/**
* Service
*
* @author ruoyi
* @date 2023-10-12
*/
public interface ITcZbxqService
{
/**
*
*
* @param id
* @return
*/
public TcZbxq selectTcZbxqById(Long id);
/**
*
*
* @param tcZbxq
* @return
*/
public List<TcZbxq> selectTcZbxqList(TcZbxq tcZbxq);
/**
*
*
* @param tcZbxq
* @return
*/
public int insertTcZbxq(TcZbxq tcZbxq);
/**
*
*
* @param tcZbxq
* @return
*/
public int updateTcZbxq(TcZbxq tcZbxq);
/**
*
*
* @param ids
* @return
*/
public int deleteTcZbxqByIds(Long[] ids);
/**
*
*
* @param id
* @return
*/
public int deleteTcZbxqById(Long id);
}