85 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Java
		
	
	
	
		
		
			
		
	
	
			85 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Java
		
	
	
	
| 
								 | 
							
								package tqq9.lc123.cloud.app.api.result;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								import kd.bos.openapi.common.custom.annotation.ApiModel;
							 | 
						||
| 
								 | 
							
								import kd.bos.openapi.common.custom.annotation.ApiParam;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								import java.io.Serializable;
							 | 
						||
| 
								 | 
							
								import java.math.BigDecimal;
							 | 
						||
| 
								 | 
							
								import java.util.List;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								@ApiModel
							 | 
						||
| 
								 | 
							
								public class FWInvQueryResult implements Serializable {
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    @ApiParam("操作失败数量")
							 | 
						||
| 
								 | 
							
								    private int failCount;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    @ApiParam("操作成功数量")
							 | 
						||
| 
								 | 
							
								    private int successCount;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    @ApiParam("返回结果")
							 | 
						||
| 
								 | 
							
								    private List<ResultBean> result;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    public int getFailCount() {
							 | 
						||
| 
								 | 
							
								        return failCount;
							 | 
						||
| 
								 | 
							
								    }
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    public void setFailCount(int failCount) {
							 | 
						||
| 
								 | 
							
								        this.failCount = failCount;
							 | 
						||
| 
								 | 
							
								    }
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    public int getSuccessCount() {
							 | 
						||
| 
								 | 
							
								        return successCount;
							 | 
						||
| 
								 | 
							
								    }
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    public void setSuccessCount(int successCount) {
							 | 
						||
| 
								 | 
							
								        this.successCount = successCount;
							 | 
						||
| 
								 | 
							
								    }
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    public List<ResultBean> getResult() {
							 | 
						||
| 
								 | 
							
								        return result;
							 | 
						||
| 
								 | 
							
								    }
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    public void setResult(List<ResultBean> result) {
							 | 
						||
| 
								 | 
							
								        this.result = result;
							 | 
						||
| 
								 | 
							
								    }
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    @ApiModel
							 | 
						||
| 
								 | 
							
								    public static class ResultBean implements Serializable {
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								        @ApiParam("物料编码")
							 | 
						||
| 
								 | 
							
								        private String number;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								        @ApiParam("批号")
							 | 
						||
| 
								 | 
							
								        private String lot;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								        @ApiParam("可用库存数量")
							 | 
						||
| 
								 | 
							
								        private BigDecimal qty;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								        public String getNumber() {
							 | 
						||
| 
								 | 
							
								            return number;
							 | 
						||
| 
								 | 
							
								        }
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								        public void setNumber(String number) {
							 | 
						||
| 
								 | 
							
								            this.number = number;
							 | 
						||
| 
								 | 
							
								        }
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								        public BigDecimal getQty() {
							 | 
						||
| 
								 | 
							
								            return qty;
							 | 
						||
| 
								 | 
							
								        }
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								        public void setQty(BigDecimal qty) {
							 | 
						||
| 
								 | 
							
								            this.qty = qty;
							 | 
						||
| 
								 | 
							
								        }
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								        public String getLot() {
							 | 
						||
| 
								 | 
							
								            return lot;
							 | 
						||
| 
								 | 
							
								        }
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								        public void setLot(String lot) {
							 | 
						||
| 
								 | 
							
								            this.lot = lot;
							 | 
						||
| 
								 | 
							
								        }
							 | 
						||
| 
								 | 
							
								    }
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								}
							 |