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.

62 lines
1.4 KiB

2 years ago
package com.ruoyi.zongzhi.service;
import com.ruoyi.zongzhi.domain.TcSgjTj;
import java.util.List;
/**
* Service
*
* @author ruoyi
* @date 2023-09-13
*/
public interface ITcSgjTjService {
/**
*
*
* @param id
* @return
*/
public TcSgjTj selectTcSgjTjById(Long id);
/**
*
*
* @param tcSgjTj
* @return
*/
public List<TcSgjTj> selectTcSgjTjList(TcSgjTj tcSgjTj);
/**
*
*
* @param tcSgjTj
* @return
*/
public int insertTcSgjTj(TcSgjTj tcSgjTj);
/**
*
*
* @param tcSgjTj
* @return
*/
public int updateTcSgjTj(TcSgjTj tcSgjTj);
/**
*
*
* @param ids
* @return
*/
public int deleteTcSgjTjByIds(Long[] ids);
/**
*
*
* @param id
* @return
*/
public int deleteTcSgjTjById(Long id);
}