|
@@ -56,9 +56,11 @@ public class TWareHouseExcelItem {
|
|
|
@Excel(name = "货物堆存费")
|
|
|
private BigDecimal fAmt;
|
|
|
|
|
|
- /** 装卸费 */
|
|
|
- @Excel(name = "装卸费")
|
|
|
- private BigDecimal fAmt1;
|
|
|
+ /**
|
|
|
+ * 费用名称
|
|
|
+ */
|
|
|
+ @Excel(name = "费用名称")
|
|
|
+ private String fFeeid;
|
|
|
|
|
|
/** 金额 */
|
|
|
@Excel(name = "金额")
|
|
@@ -156,6 +158,22 @@ public class TWareHouseExcelItem {
|
|
|
return fAmt;
|
|
|
}
|
|
|
|
|
|
+ public String getfFeeid() {
|
|
|
+ return fFeeid;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setfFeeid(String fFeeid) {
|
|
|
+ this.fFeeid = fFeeid;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getfAmt2() {
|
|
|
+ return fAmt2;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setfAmt2(BigDecimal fAmt2) {
|
|
|
+ this.fAmt2 = fAmt2;
|
|
|
+ }
|
|
|
+
|
|
|
@Override
|
|
|
public String toString() {
|
|
|
return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
|