diff --git a/op-modules/op-wms/src/main/java/com/op/wms/domain/BaseProduct.java b/op-modules/op-wms/src/main/java/com/op/wms/domain/BaseProduct.java index 94faff0d..2f4b896e 100644 --- a/op-modules/op-wms/src/main/java/com/op/wms/domain/BaseProduct.java +++ b/op-modules/op-wms/src/main/java/com/op/wms/domain/BaseProduct.java @@ -344,6 +344,12 @@ public class BaseProduct extends BaseEntity { @Excel(name = "其它") private String other; + /** + * 报工汇率 + */ + @Excel(name = "报工汇率") + private Integer reportRate; + public void setCategory(String category) { this.category = category; } @@ -784,6 +790,14 @@ public class BaseProduct extends BaseEntity { return mtart; } + public void setReportRate(Integer reportRate) { + this.reportRate = reportRate; + } + + public Integer getReportRate() { + return reportRate; + } + @Override public String toString() { return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)