You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
udi-wms-java/src/main/java/com/glxp/api/res/collect/CollectOrderUploadCountResp...

48 lines
1017 B
Java

package com.glxp.api.res.collect;
import lombok.Data;
import java.math.BigDecimal;
/**
* 单据上传统计返回
* qyt
*/
@Data
public class CollectOrderUploadCountResponse {
private Long notUploadingCount;
private Long alreadyUploadingCount;
private Long uploadingFailCount;
private BigDecimal buyerCentage;
private BigDecimal salesCentage;
private Integer codeCount;
private Integer buyerScanCount;
private Integer salesScanCount;
private Integer buyerScanCountReturn ;
private Integer salesScanCountReturn ;
private Integer buyerScanSumCount;
private Integer salesScanSumCount;
private Integer buyerScanSumCountReturn ;
private Integer salesScanSumCountReturn ;
private Integer count;
/**
* 拆零赋码数量
*/
private Integer fifoSplitOneCount;
/**
* 整取赋码数量
*/
private Integer fifoSplitTwoCount;
// /**
// * 手动赋码数量
// */
// private Integer fifoSplitThreeCount;
}