基础数据的BUG修改

This commit is contained in:
秦鸿展
2026-02-07 17:22:11 +08:00
parent e7162e1877
commit 244b8d7e6e
8 changed files with 69 additions and 7 deletions
@@ -158,6 +158,7 @@ public class MaterialBaseInfo extends BaseVOEntity{
@ApiModelProperty("单位数量")
@Excel(name = "单位数量")
@TableField(exist = false)
private BigDecimal unitNumber;
@ApiModelProperty("是否公用: 1-是 2-否")
@@ -190,36 +191,42 @@ public class MaterialBaseInfo extends BaseVOEntity{
*/
@ApiModelProperty("商品名称")
@Excel(name = "商品名称")
@TableField(exist = false)
private String commodityName;
/**
* 商品编码
*/
@ApiModelProperty("商品编码")
@Excel(name = "商品编码")
@TableField(exist = false)
private String commodityNo;
/**
* 料号
*/
@ApiModelProperty("料号")
@Excel(name = "料号")
@TableField(exist = false)
private String materialNo;
/**
* 规格型号
*/
@ApiModelProperty("规格型号")
@Excel(name = "规格型号")
@TableField(exist = false)
private String specificationModel;
/**
* Invoice No
*/
@ApiModelProperty("Invoice No")
@Excel(name = "Invoice No")
@TableField(exist = false)
private String invoiceNo;
/**
* 升
*/
@ApiModelProperty("")
@Excel(name = "")
@TableField(exist = false)
private String liter;
/**
@@ -227,6 +234,7 @@ public class MaterialBaseInfo extends BaseVOEntity{
*/
@ApiModelProperty("尺寸")
@Excel(name = "尺寸")
@TableField(exist = false)
private String size;
/**
@@ -234,20 +242,23 @@ public class MaterialBaseInfo extends BaseVOEntity{
*/
@ApiModelProperty("申报单位")
@Excel(name = "申报单位")
@TableField(exist = false)
private String declareUnit;
/**
* Batch Ref NOs
* Batch Ref NO's
*/
@ApiModelProperty("Batch Ref NOs")
@Excel(name = "Batch Ref NOs")
@ApiModelProperty("Batch Ref NO's")
@Excel(name = "Batch Ref NO's")
@TableField(exist = false)
private String batchRefNo;
/**
* Sheet Ref NOs
* Sheet Ref NO's
*/
@ApiModelProperty("Sheet Ref NOs")
@Excel(name = "Sheet Ref NOs")
@ApiModelProperty("Sheet Ref NO's")
@Excel(name = "Sheet Ref NO's")
@TableField(exist = false)
private String sheetRefNo;
/**
@@ -255,6 +266,7 @@ public class MaterialBaseInfo extends BaseVOEntity{
*/
@ApiModelProperty("原产国")
@Excel(name = "原产国")
@TableField(exist = false)
private String countryOfOrigin;
/**
@@ -262,6 +274,7 @@ public class MaterialBaseInfo extends BaseVOEntity{
*/
@ApiModelProperty("箱号/卡板号")
@Excel(name = "箱号/卡板号")
@TableField(exist = false)
private String casePalletNo;
/**
@@ -276,6 +289,7 @@ public class MaterialBaseInfo extends BaseVOEntity{
*/
@ApiModelProperty("申报数量")
@Excel(name = "申报数量")
@TableField(exist = false)
private Double declareQuantity;
/**
@@ -283,6 +297,7 @@ public class MaterialBaseInfo extends BaseVOEntity{
*/
@ApiModelProperty("箱数")
@Excel(name = "箱数")
@TableField(exist = false)
private Double caseCount;
/**
@@ -290,6 +305,7 @@ public class MaterialBaseInfo extends BaseVOEntity{
*/
@ApiModelProperty("件数")
@Excel(name = "件数")
@TableField(exist = false)
private Double pieceCount;
/**
@@ -297,6 +313,7 @@ public class MaterialBaseInfo extends BaseVOEntity{
*/
@ApiModelProperty("出库数量")
@Excel(name = "出库数量")
@TableField(exist = false)
private Double outboundQuantity;
/**
@@ -304,6 +321,7 @@ public class MaterialBaseInfo extends BaseVOEntity{
*/
@ApiModelProperty("总净重(KG)")
@Excel(name = "总净重(KG)")
@TableField(exist = false)
private Double totalNetWeight;
/**
@@ -311,6 +329,7 @@ public class MaterialBaseInfo extends BaseVOEntity{
*/
@ApiModelProperty("总毛重(KG)")
@Excel(name = "总毛重(KG)")
@TableField(exist = false)
private Double totalGrossWeight;
/**
@@ -318,6 +337,7 @@ public class MaterialBaseInfo extends BaseVOEntity{
*/
@ApiModelProperty("总体积(CBM)")
@Excel(name = "总体积(CBM)")
@TableField(exist = false)
private Double totalVolume;
/**
@@ -325,12 +345,14 @@ public class MaterialBaseInfo extends BaseVOEntity{
*/
@ApiModelProperty("总面积(SQM)")
@Excel(name = "总面积(SQM)")
@TableField(exist = false)
private Double totalArea;
/**
* 总价
*/
@ApiModelProperty("总价")
@Excel(name = "总价")
@TableField(exist = false)
private Double totalAmount;
/**
@@ -338,6 +360,7 @@ public class MaterialBaseInfo extends BaseVOEntity{
*/
@ApiModelProperty("单位")
@Excel(name = "单位")
@TableField(exist = false)
private String unit;
@@ -5,6 +5,7 @@ import com.mhd.basic.domain.batch.repository.po.BatchPO;
import com.mhd.common.core.annotation.Excel;
import com.mhd.common.core.handler.ListTypeHandler;
import com.mhd.common.core.web.domain.BaseVOEntity;
import com.mhd.system.api.domain.*;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
@@ -360,4 +361,19 @@ public class MaterialBaseInfoPO extends BaseVOEntity{
@ApiModelProperty("法定第二单位")
private String statutorySecondUnit;
@ApiModelProperty("商品规则")
private MaterialGoodsRuleFeign materialGoodsRule;
@ApiModelProperty("公共信息")
private MaterialCommonFeign materialCommon;
@ApiModelProperty("仓库控制信息")
private MaterialWarehouseControlFeign materialWarehouseControl;
@ApiModelProperty("库存预警信息")
private List<MaterialInventoryWarningFeign> materialInventoryWarningList;
@ApiModelProperty("条码信息")
private List<MaterialBarCodeFeign> materialBarCodeList;
}
@@ -68,6 +68,10 @@ public class PackPO extends BaseVOEntity{
@Excel(name = "是否作废: 1-否 2-是")
private Integer nullify;
@ApiModelProperty("包装单位(取第一条包装详情的单位名称)")
@Excel(name = "包装单位")
private String unitName;
@ApiModelProperty("包装明细")
private List<PackDetailPO> packDetailList;