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.
62 lines
1.4 KiB
62 lines
1.4 KiB
|
2 years ago
|
package com.ruoyi.booksystem.service;
|
||
|
|
|
||
|
|
import java.util.List;
|
||
|
|
import com.ruoyi.booksystem.domain.StatisticsTotal;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 统计当日持仓Service接口
|
||
|
|
*
|
||
|
|
* @author ruoyi
|
||
|
|
* @date 2023-12-18
|
||
|
|
*/
|
||
|
|
public interface IStatisticsTotalService
|
||
|
|
{
|
||
|
|
/**
|
||
|
|
* 查询统计当日持仓
|
||
|
|
*
|
||
|
|
* @param id 统计当日持仓主键
|
||
|
|
* @return 统计当日持仓
|
||
|
|
*/
|
||
|
|
public StatisticsTotal selectStatisticsTotalById(Long id);
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 查询统计当日持仓列表
|
||
|
|
*
|
||
|
|
* @param statisticsTotal 统计当日持仓
|
||
|
|
* @return 统计当日持仓集合
|
||
|
|
*/
|
||
|
|
public List<StatisticsTotal> selectStatisticsTotalList(StatisticsTotal statisticsTotal);
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 新增统计当日持仓
|
||
|
|
*
|
||
|
|
* @param statisticsTotal 统计当日持仓
|
||
|
|
* @return 结果
|
||
|
|
*/
|
||
|
|
public int insertStatisticsTotal(StatisticsTotal statisticsTotal);
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 修改统计当日持仓
|
||
|
|
*
|
||
|
|
* @param statisticsTotal 统计当日持仓
|
||
|
|
* @return 结果
|
||
|
|
*/
|
||
|
|
public int updateStatisticsTotal(StatisticsTotal statisticsTotal);
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 批量删除统计当日持仓
|
||
|
|
*
|
||
|
|
* @param ids 需要删除的统计当日持仓主键集合
|
||
|
|
* @return 结果
|
||
|
|
*/
|
||
|
|
public int deleteStatisticsTotalByIds(Long[] ids);
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 删除统计当日持仓信息
|
||
|
|
*
|
||
|
|
* @param id 统计当日持仓主键
|
||
|
|
* @return 结果
|
||
|
|
*/
|
||
|
|
public int deleteStatisticsTotalById(Long id);
|
||
|
|
}
|