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

62 lines
1.2 KiB

2 years ago
package com.ruoyi.tcZz.service;
import java.util.List;
import com.ruoyi.tcZz.domain.TcWljg;
/**
* Service
*
* @author ruoyi
* @date 2023-10-12
*/
public interface ITcWljgService
{
/**
*
*
* @param id
* @return
*/
public TcWljg selectTcWljgById(Long id);
/**
*
*
* @param tcWljg
* @return
*/
public List<TcWljg> selectTcWljgList(TcWljg tcWljg);
/**
*
*
* @param tcWljg
* @return
*/
public int insertTcWljg(TcWljg tcWljg);
/**
*
*
* @param tcWljg
* @return
*/
public int updateTcWljg(TcWljg tcWljg);
/**
*
*
* @param ids
* @return
*/
public int deleteTcWljgByIds(Long[] ids);
/**
*
*
* @param id
* @return
*/
public int deleteTcWljgById(Long id);
}