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.
31 lines
662 B
Java
31 lines
662 B
Java
package com.glxp.api.service.inout;
|
|
|
|
import com.glxp.api.entity.inout.IoStatMonthEntity;
|
|
import com.glxp.api.req.inout.FilterStatDataDetailRequest;
|
|
|
|
import java.util.Date;
|
|
import java.util.List;
|
|
|
|
/**
|
|
* 物资出入库汇总 - 月 Service
|
|
*/
|
|
public interface IoStatMonthService {
|
|
|
|
/**
|
|
* 统计出入库汇总数据
|
|
*
|
|
* @param date
|
|
*/
|
|
void statData(Date date);
|
|
|
|
/**
|
|
* 查询月汇总数据列表
|
|
*
|
|
* @param statDataDetailRequest
|
|
* @return
|
|
*/
|
|
List<IoStatMonthEntity> filterList(FilterStatDataDetailRequest statDataDetailRequest);
|
|
|
|
List<IoStatMonthEntity> filterListByRecordKey(String recordKey);
|
|
}
|