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.
taicangzongzhi-java/ruoyi-admin/src/main/java/com/ruoyi/zongzhi/service/ITcSafetyCountyService.java

62 lines
1.4 KiB

package com.ruoyi.zongzhi.service;
import java.util.List;
import com.ruoyi.zongzhi.domain.TcSafetyCounty;
/**
* Service
*
* @author ruoyi
* @date 2023-09-20
*/
public interface ITcSafetyCountyService
{
/**
*
*
* @param id
* @return
*/
public TcSafetyCounty selectTcSafetyCountyById(Long id);
/**
*
*
* @param tcSafetyCounty
* @return
*/
public List<TcSafetyCounty> selectTcSafetyCountyList(TcSafetyCounty tcSafetyCounty);
/**
*
*
* @param tcSafetyCounty
* @return
*/
public int insertTcSafetyCounty(TcSafetyCounty tcSafetyCounty);
/**
*
*
* @param tcSafetyCounty
* @return
*/
public int updateTcSafetyCounty(TcSafetyCounty tcSafetyCounty);
/**
*
*
* @param ids
* @return
*/
public int deleteTcSafetyCountyByIds(Long[] ids);
/**
*
*
* @param id
* @return
*/
public int deleteTcSafetyCountyById(Long id);
}