收货添加面积体积重量;

This commit is contained in:
王奎兴
2026-02-04 15:04:16 +08:00
parent 16b99eb43f
commit 07df495135
@@ -227,4 +227,25 @@ public class ReceiptMaterialDetailDTO extends BaseVOEntity {
@ApiModelProperty("复合条件查询 物料名称 物料编码 物料条码")
private String compoundOrQuery;
@ApiModelProperty("总净重(KG)")
@Excel(name = "总净重(KG)")
private BigDecimal totalNetWeight;
@ApiModelProperty("总毛重(KG)")
@Excel(name = "总毛重(KG)")
private BigDecimal totalGrossWeight;
@ApiModelProperty("总体积(CBM)")
@Excel(name = "总体积(CBM)")
private BigDecimal totalVolume;
@ApiModelProperty("总面积(SQM)")
@Excel(name = "总面积(SQM)")
private BigDecimal totalArea;
@ApiModelProperty("单位")
@Excel(name = "单位")
private String unit;
}