package com.java110.po.purchase;
|
|
import lombok.Data;
|
|
/**
|
* 采购执行库存统计
|
*/
|
@Data
|
public class PurchaseApplyStock {
|
|
/**
|
* 主键ID
|
*/
|
private String id;
|
|
/**
|
* 申请单ID
|
*/
|
private String applyOrderId;
|
|
/**
|
* 采购次数
|
*/
|
private String purchaseTimes;
|
|
/**
|
* 采购数量
|
*/
|
private String purchaseQuantity;
|
|
/**
|
* 采购单价
|
*/
|
private String purchasePrice;
|
|
/**
|
* 采购总金额
|
*/
|
private String purchaseAmount;
|
|
/**
|
* 累计数量_John
|
*/
|
private String totalQuantityJohn;
|
|
/**
|
* 应付金额_John
|
*/
|
private String payableAmountJohn;
|
|
/**
|
* 付款次数
|
*/
|
private String paymentTimes;
|
|
/**
|
* 付款总金额
|
*/
|
private String paymentTotalAmount;
|
|
/**
|
* 未付金额_John
|
*/
|
private String unpaidAmountJohn;
|
|
/**
|
* 未发生_John
|
*/
|
private String unhappenJohn;
|
|
/**
|
* 入库数量
|
*/
|
private String stockQuantity;
|
|
/**
|
* 领用数量
|
*/
|
private String useQuantity;
|
|
/**
|
* 剩余数量
|
*/
|
private String surplusQuantity;
|
|
/**
|
* 单价_John
|
*/
|
private String priceJohn;
|
|
/**
|
* 剩余金额
|
*/
|
private String surplusAmount;
|
|
/**
|
* 保管人_John
|
*/
|
private String keeperJohn;
|
|
}
|