|
@@ -30,10 +30,22 @@ public class TWareHouseExcelItem {
|
|
|
@Excel(name = "品牌")
|
|
|
private String fMarks;
|
|
|
|
|
|
+ /**
|
|
|
+ * 计价单位(数据字典),对应,t_unitfees f_id,如果选择为毛重,数量(f_qty)取主表的毛重,如果选择净重,取主表的净重,如果为箱量,取主表的箱量
|
|
|
+ */
|
|
|
+ @Excel(name = "计价单位")
|
|
|
+ private String fFeeunitid;
|
|
|
+
|
|
|
/** 重量 */
|
|
|
- @Excel(name = "重量")
|
|
|
+ @Excel(name = "数量")
|
|
|
private BigDecimal fBillingQty;
|
|
|
|
|
|
+ /**
|
|
|
+ * 单价
|
|
|
+ */
|
|
|
+ @Excel(name = "单价")
|
|
|
+ private BigDecimal fUnitprice;
|
|
|
+
|
|
|
/** 业务日期 */
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
|
|
@Excel(name = "业务日期", width = 30, dateFormat = "yyyy-MM-dd")
|
|
@@ -174,6 +186,22 @@ public class TWareHouseExcelItem {
|
|
|
this.fAmt2 = fAmt2;
|
|
|
}
|
|
|
|
|
|
+ public String getfFeeunitid() {
|
|
|
+ return fFeeunitid;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setfFeeunitid(String fFeeunitid) {
|
|
|
+ this.fFeeunitid = fFeeunitid;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getfUnitprice() {
|
|
|
+ return fUnitprice;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setfUnitprice(BigDecimal fUnitprice) {
|
|
|
+ this.fUnitprice = fUnitprice;
|
|
|
+ }
|
|
|
+
|
|
|
@Override
|
|
|
public String toString() {
|
|
|
return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
|