IStudentStatisticsService.java 393 B

1234567891011
  1. package com.xjrsoft.module.attendance.service;
  2. import com.github.yulichang.base.MPJBaseService;
  3. import com.xjrsoft.module.attendance.entity.StudentAttendanceStatistics;
  4. public interface IStudentStatisticsService extends MPJBaseService<StudentAttendanceStatistics> {
  5. void studentStatistics(String date, Integer timePeriod);
  6. void classStatistics(String date,Integer timePeriod);
  7. }