Commit ced36a06e23107ddd7077c14a28ecffe5ed19846
Merge remote-tracking branch 'origin/master_0929' into master_0929
Showing
1 changed file
with
19 additions
and
0 deletions
| ... | ... | @@ -7,6 +7,7 @@ import com.lframework.xingyun.sc.entity.ReplenishmentOrder; |
| 7 | 7 | import io.swagger.annotations.ApiModelProperty; |
| 8 | 8 | import lombok.Data; |
| 9 | 9 | |
| 10 | +import java.math.BigDecimal; | |
| 10 | 11 | import java.time.LocalDate; |
| 11 | 12 | import java.util.List; |
| 12 | 13 | |
| ... | ... | @@ -86,6 +87,24 @@ public class GetReplenishmentOrderBo extends BaseBo<ReplenishmentOrder> { |
| 86 | 87 | private String purchaseOrderName; |
| 87 | 88 | |
| 88 | 89 | /** |
| 90 | + * 总需发 | |
| 91 | + */ | |
| 92 | + @ApiModelProperty(value = "总需发") | |
| 93 | + private BigDecimal totalQuantity; | |
| 94 | + | |
| 95 | + /** | |
| 96 | + * 总实发 | |
| 97 | + */ | |
| 98 | + @ApiModelProperty(value = "总实发") | |
| 99 | + private BigDecimal totalShippedQuantity; | |
| 100 | + | |
| 101 | + /** | |
| 102 | + * 总补发 | |
| 103 | + */ | |
| 104 | + @ApiModelProperty(value = "总补发") | |
| 105 | + private BigDecimal totalSupplementaryQuantity; | |
| 106 | + | |
| 107 | + /** | |
| 89 | 108 | * 状态 |
| 90 | 109 | */ |
| 91 | 110 | @ApiModelProperty("状态") | ... | ... |