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.
23 lines
438 B
Java
23 lines
438 B
Java
8 months ago
|
package com.glxp.api.res.collect;
|
||
|
|
||
|
import io.swagger.models.auth.In;
|
||
|
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;
|
||
|
|
||
|
}
|