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.
RuoYi-Vue/newstock-system/src/main/java/com/ruoyi/newstocksystem/service/TStockFinancialService.java

77 lines
1.9 KiB

package com.ruoyi.newstocksystem.service;
import java.util.List;
import com.ruoyi.newstocksystem.domain.TStockFinancial;
/**
* Service
*
* @author lxy
* @date 2026-01-21
*/
public interface TStockFinancialService
{
/**
*
*
* @param id
* @return
*/
public TStockFinancial selectTStockFinancialById(Long id);
/**
*
*
* @param tStockFinancial
* @return
*/
public List<TStockFinancial> selectTStockFinancialList(TStockFinancial tStockFinancial);
/**
*
*
* @param tStockFinancial
* @return
*/
public int insertTStockFinancial(TStockFinancial tStockFinancial);
/**
*
*
* @param tStockFinancial
* @return
*/
public int updateTStockFinancial(TStockFinancial tStockFinancial);
/**
*
*
* @param ids
* @return
*/
public int deleteTStockFinancialByIds(Long[] ids);
/**
*
*
* @param id
* @return
*/
public int deleteTStockFinancialById(Long id);
/**
*
*
* @param tStockFinancialList
* @return
*/
public int batchUpsert(List<TStockFinancial> tStockFinancialList);
/**
*
*
* @param stockCode
* @return
*/
public boolean validateStockCodeExists(String stockCode);
}