新版仿ok交易所-后端
1
zyy
2026-03-09 4164ba59cb88d33b191f42d3bef122f6f7af6312
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.yami.trading.service.etf;
 
import com.yami.trading.bean.etf.domain.EtfSecKLine;
import com.baomidou.mybatisplus.extension.service.IService;
 
/**
 * <p>
 * Etf秒级k线图 服务类
 * </p>
 *
 * @author HT
 * @since 2023-05-18 17:27:13
 */
public interface EtfSecKLineService extends IService<EtfSecKLine> {
 
    void deleteOverdueEtfKLine();
 
 
}