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.
21 lines
568 B
21 lines
568 B
package com.ruoyi.newstocksystem.service;
|
|
|
|
import com.ruoyi.newstocksystem.domain.StockBasic;
|
|
|
|
import java.util.List;
|
|
|
|
public interface IStockBasicService {
|
|
int insertStockBasic(StockBasic stockBasic);
|
|
|
|
int updateStockBasic(StockBasic stockBasic);
|
|
|
|
int deleteStockBasic(String stockCode);
|
|
|
|
StockBasic selectStockBasicByCode(String stockCode);
|
|
|
|
List<StockBasic> selectStockBasicList(StockBasic stockBasic);
|
|
|
|
List<StockBasic> selectStockBasicByIndustry(String industryIndexCode);
|
|
|
|
int batchInsertStockBasic(List<StockBasic> stockBasicList);
|
|
} |