You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
599 B
Java
24 lines
599 B
Java
package com.glxp.api.dao.inout;
|
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
import com.glxp.api.entity.inout.IoStatYearEntity;
|
|
import com.glxp.api.req.inout.FilterStatDataDetailRequest;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* 年汇总数据Dao
|
|
*/
|
|
public interface IoStatYearDao extends BaseMapper<IoStatYearEntity> {
|
|
|
|
/**
|
|
* 查询年度汇总数据列表
|
|
*
|
|
* @param statDataDetailRequest
|
|
* @return
|
|
*/
|
|
List<IoStatYearEntity> filterList(FilterStatDataDetailRequest statDataDetailRequest);
|
|
|
|
List<IoStatYearEntity> filterListByRecordKey(String recordKey);
|
|
}
|