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

62 lines
1.2 KiB

2 years ago
package com.ruoyi.tcZz.service;
import java.util.List;
import com.ruoyi.tcZz.domain.TcDbxt;
/**
* Service
*
* @author ruoyi
* @date 2023-10-13
2 years ago
*/
public interface ITcDbxtService
{
/**
*
*
* @param id
* @return
*/
public TcDbxt selectTcDbxtById(Long id);
/**
*
*
* @param tcDbxt
* @return
*/
public List<TcDbxt> selectTcDbxtList(TcDbxt tcDbxt);
/**
*
*
* @param tcDbxt
* @return
*/
public int insertTcDbxt(TcDbxt tcDbxt);
/**
*
*
* @param tcDbxt
* @return
*/
public int updateTcDbxt(TcDbxt tcDbxt);
/**
*
*
* @param ids
* @return
*/
public int deleteTcDbxtByIds(Long[] ids);
/**
*
*
* @param id
* @return
*/
public int deleteTcDbxtById(Long id);
}