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

62 lines
1.6 KiB

package com.ruoyi.tcZz.service;
import java.util.List;
import com.ruoyi.tcZz.domain.TcBjsjwp;
/**
* Service
*
* @author ruoyi
* @date 2023-10-13
*/
public interface ITcBjsjwpService
{
/**
*
*
* @param id
* @return
*/
public TcBjsjwp selectTcBjsjwpById(Long id);
/**
*
*
* @param tcBjsjwp
* @return
*/
public List<TcBjsjwp> selectTcBjsjwpList(TcBjsjwp tcBjsjwp);
/**
*
*
* @param tcBjsjwp
* @return
*/
public int insertTcBjsjwp(TcBjsjwp tcBjsjwp);
/**
*
*
* @param tcBjsjwp
* @return
*/
public int updateTcBjsjwp(TcBjsjwp tcBjsjwp);
/**
*
*
* @param ids
* @return
*/
public int deleteTcBjsjwpByIds(Long[] ids);
/**
*
*
* @param id
* @return
*/
public int deleteTcBjsjwpById(Long id);
}