1234567891011121314151617181920212223242526272829303132 |
- package com.steerinfo.dil.service;
- import com.steerinfo.dil.model.WmspOutboundResultMaterial;
- import com.steerinfo.dil.vo.OutBoundTypeDetailedInfo;
- import com.steerinfo.framework.service.IBaseService;
- import java.math.BigDecimal;
- import java.util.List;
- import java.util.Map;
- /**
- * WmspOutboundResultMaterial服务接口:
- * @author generator
- * @version 1.0-SNAPSHORT 2022-01-25 03:23
- * 类描述
- * 修订历史:
- * 日期:2022-01-25
- * 作者:generator
- * 参考:
- * 描述:WmspOutboundResultMaterial服务接口
- * @see null
- * @Copyright 湖南视拓信息技术股份有限公司. All rights reserved.
- */
- public interface IWmspOutboundResultMaterialService extends IBaseService<WmspOutboundResultMaterial, BigDecimal>{
- int insertOutboundMaterial(BigDecimal orderId, List<Map<String, Object>> orderList);
- List<OutBoundTypeDetailedInfo> getOutBoundTypeDetailedInfo(BigDecimal resultId);
- Integer isOutboundResultMaterial(String onlycode, BigDecimal resultId);
- }
|