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

76 lines
1.6 KiB

package com.ruoyi.tcZz.service;
import com.ruoyi.tcZz.domain.TcFb;
2 years ago
import java.util.List;
/**
* Service
2 years ago
*
* @author ruoyi
* @date 2023-10-13
*/
2 years ago
public interface ITcFbService {
/**
*
2 years ago
*
* @param id
* @return
*/
public TcFb selectTcFbById(Long id);
/**
*
2 years ago
*
* @param tcFb
* @return
*/
public List<TcFb> selectTcFbList(TcFb tcFb);
/**
*
2 years ago
*
* @param tcFb
* @return
*/
public int insertTcFb(TcFb tcFb);
/**
*
2 years ago
*
* @param tcFb
* @return
*/
public int updateTcFb(TcFb tcFb);
/**
*
2 years ago
*
* @param ids
* @return
*/
public int deleteTcFbByIds(Long[] ids);
/**
*
2 years ago
*
* @param id
* @return
*/
public int deleteTcFbById(Long id);
2 years ago
/**
*
*
* @return
*/
public String importUser(List<TcFb> tccFbList);
/**
*
*
*
*/
public void updateByisStatus(Integer isStatus,List<String> ids);
}