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/mapper/TcSjlyMapper.java

62 lines
1.5 KiB

2 years ago
package com.ruoyi.tcZz.mapper;
import java.util.List;
import com.ruoyi.tcZz.domain.TcSjly;
/**
* tc_sjlyMapper
*
* @author ruoyi
* @date 2023-10-12
*/
public interface TcSjlyMapper
{
/**
* tc_sjly
*
* @param id tc_sjly
* @return tc_sjly
*/
public TcSjly selectTcSjlyById(Long id);
/**
* tc_sjly
*
* @param tcSjly tc_sjly
* @return tc_sjly
*/
public List<TcSjly> selectTcSjlyList(TcSjly tcSjly);
/**
* tc_sjly
*
* @param tcSjly tc_sjly
* @return
*/
public int insertTcSjly(TcSjly tcSjly);
/**
* tc_sjly
*
* @param tcSjly tc_sjly
* @return
*/
public int updateTcSjly(TcSjly tcSjly);
/**
* tc_sjly
*
* @param id tc_sjly
* @return
*/
public int deleteTcSjlyById(Long id);
/**
* tc_sjly
*
* @param ids
* @return
*/
public int deleteTcSjlyByIds(Long[] ids);
}