| | |
| | | import org.springframework.web.multipart.MultipartFile; |
| | | |
| | | import java.util.HashMap; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | public interface AsnOrderItemService extends IService<AsnOrderItem> { |
| | | |
| | | R excelImport(MultipartFile file, HashMap<String, Object> hashMap) throws Exception; |
| | | |
| | | R excelImport(MultipartFile file, HashMap<String, Object> hashMap, Long loginUserId) throws Exception; |
| | | |
| | | boolean fieldsSave(Map<String, Object> params); |
| | | |
| | | R generateBarcode(List<Long> orders); |
| | | |
| | | IPage<Map<String, Object>> listByAsnId(PageParam<AsnOrderItem, BaseParam> pageParam, QueryWrapper<AsnOrderItem> buildWrapper); |
| | | |
| | | } |