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.
21 lines
440 B
Java
21 lines
440 B
Java
package com.glxp.api.service.inout;
|
|
|
|
import com.glxp.api.entity.inout.IoStatOrderEntity;
|
|
import com.glxp.api.req.inout.FilterStatDataRequest;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* 物资出入库汇总 - 总表 Service
|
|
*/
|
|
public interface IoStatOrderService {
|
|
|
|
/**
|
|
* 查询出入库汇总列表
|
|
*
|
|
* @param statDataRequest
|
|
* @return
|
|
*/
|
|
List<IoStatOrderEntity> filterList(FilterStatDataRequest statDataRequest);
|
|
}
|