123456789101112131415161718 |
- package com.gis.service;
- import com.gis.domain.po.BarrageEntity;
- import java.time.LocalDate;
- /**
- * Created by owen on 2020/3/11 0011 16:14
- */
- public interface BarrageService extends IBaseService<BarrageEntity, Long> {
- Integer getCountDisplay();
- Integer countFindByDate(LocalDate now);
- }
|