Blame view

fw-valhalla-service/src/main/java/cn/fw/valhalla/service/data/impl/PublicReportDataServiceImpl.java 672 Bytes
bfac3874   xianpengcheng   public_report_dat...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
  package cn.fw.valhalla.service.data.impl;
  
  import cn.fw.valhalla.dao.mapper.PublicReportDataMapper;
  import cn.fw.valhalla.domain.db.PublicReportData;
  import cn.fw.valhalla.service.data.PublicReportDataService;
  import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
  import lombok.extern.slf4j.Slf4j;
  import org.springframework.stereotype.Service;
  
  /**
   * @author : kurisu
   * @className : PublicReportDataServiceImpl
   * @description : 公共池报表数据(初次抽取)
   * @date: 2021-02-21 14:58
   */
  @Slf4j
  @Service
  public class PublicReportDataServiceImpl extends ServiceImpl<PublicReportDataMapper, PublicReportData> implements PublicReportDataService {
  
  }