EbookSnapshotMapperCustom.java 253 字节
Newer Older
1 2
package io.github.yubincloud.fairywiki.mapper;

3 4 5 6
import io.github.yubincloud.fairywiki.dto.resp.StatisticRespDto;

import java.util.List;

7 8
public interface EbookSnapshotMapperCustom {
    void genSnapshot();
9 10

    List<StatisticRespDto> getStatistic();
11
}