From 835d1da2acc84c6f9b721233d10d339cb3f5aa3c Mon Sep 17 00:00:00 2001 From: A0010407 Date: Sun, 7 Apr 2024 15:35:32 +0800 Subject: [PATCH] =?UTF-8?q?2024-04-07=20=E5=9F=BA=E7=A1=80=E4=BF=A1?= =?UTF-8?q?=E6=81=AF-=E4=BA=A7=E5=93=81-=E6=8A=A5=E5=B7=A5=E6=B1=87?= =?UTF-8?q?=E7=8E=872?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../main/java/com/op/wms/domain/BaseProduct.java | 14 ++++++++++++++ 1 file changed, 14 insertions(+) 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 94faff0dc..2f4b896e2 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)