- package com.jsh.erp.datasource.mappers;
- import com.jsh.erp.datasource.entities.MaterialInput;
- import com.jsh.erp.datasource.pda.dto.PDAGoodsInputDTO;
- import java.util.List;
- public interface MaterialInputMapper extends BaseMapperX<MaterialInput> {
- List<MaterialInput> listBy(PDAGoodsInputDTO pdaInventoryDTO);
- }
|