Blame view

fw-valhalla-service/src/main/java/cn/fw/valhalla/service/data/PublicReportDataService.java 379 Bytes
bfac3874   xianpengcheng   public_report_dat...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  package cn.fw.valhalla.service.data;
  
  import cn.fw.valhalla.domain.db.PublicReportData;
  import com.baomidou.mybatisplus.extension.service.IService;
  
  /**
   * @author : kurisu
   * @className : PublicReportDataService
   * @description : 公共池报表数据(初次抽取)
   * @date: 2021-02-21 14:58
   */
  public interface PublicReportDataService extends IService<PublicReportData> {
  
  }