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

62 lines
1.3 KiB

2 years ago
package com.ruoyi.tcZz.service;
import java.util.List;
import com.ruoyi.tcZz.domain.TcSjlytj;
/**
* Service
2 years ago
*
* @author ruoyi
* @date 2023-10-13
2 years ago
*/
public interface ITcSjlytjService
{
/**
*
2 years ago
*
* @param id
* @return
2 years ago
*/
public TcSjlytj selectTcSjlytjById(Long id);
/**
*
2 years ago
*
* @param tcSjlytj
* @return
2 years ago
*/
public List<TcSjlytj> selectTcSjlytjList(TcSjlytj tcSjlytj);
/**
*
2 years ago
*
* @param tcSjlytj
2 years ago
* @return
*/
public int insertTcSjlytj(TcSjlytj tcSjlytj);
/**
*
2 years ago
*
* @param tcSjlytj
2 years ago
* @return
*/
public int updateTcSjlytj(TcSjlytj tcSjlytj);
/**
*
2 years ago
*
* @param ids
2 years ago
* @return
*/
public int deleteTcSjlytjByIds(Long[] ids);
/**
*
2 years ago
*
* @param id
2 years ago
* @return
*/
public int deleteTcSjlytjById(Long id);
}