StreamingAccountDataMapper.java 576 B

123456789101112131415161718
  1. package com.cyksj.mapper.manage.statistics;
  2. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  3. import com.cyksj.model.entity.StreamingAccountData;
  4. import org.apache.ibatis.annotations.Param;
  5. import java.util.Date;
  6. import java.util.List;
  7. /*
  8. *项目名: netflix
  9. *文件名: StreamingAccountDataMapper
  10. *创建者: JavaZou
  11. *创建时间:2022/10/18 14:53
  12. */
  13. public interface StreamingAccountDataMapper extends BaseMapper<StreamingAccountData> {
  14. List<StreamingAccountData> statisticsStreamingData(@Param("startDate") Date startDate, @Param("endDate") Date endDate);
  15. }