|
|
@ -1,12 +1,16 @@ |
|
|
|
package com.ruoyi.manufacture.domain; |
|
|
|
|
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat; |
|
|
|
import org.apache.commons.lang3.builder.ToStringBuilder; |
|
|
|
import org.apache.commons.lang3.builder.ToStringStyle; |
|
|
|
import com.ruoyi.common.annotation.Excel; |
|
|
|
import com.ruoyi.common.core.domain.BaseEntity; |
|
|
|
|
|
|
|
import java.math.BigDecimal; |
|
|
|
import java.util.Date; |
|
|
|
|
|
|
|
/** |
|
|
|
* 发货通知单对象 delivery_goods_notice |
|
|
|
* 出货资料 delivery_goods_notice |
|
|
|
* |
|
|
|
* @author ruoyi |
|
|
|
* @date 2023-04-11 |
|
|
@ -18,56 +22,125 @@ public class DeliveryGoodsNotice extends BaseEntity |
|
|
|
/** 发货通知单id */ |
|
|
|
private Long deliveryGoodsNoticeId; |
|
|
|
|
|
|
|
/** 通知单号 */ |
|
|
|
@Excel(name = "通知单号") |
|
|
|
/** 出货资料单号 */ |
|
|
|
@Excel(name = "出货资料单号") |
|
|
|
private String noticeOrderNumber; |
|
|
|
|
|
|
|
/** 发货日期 */ |
|
|
|
@Excel(name = "发货日期") |
|
|
|
private String deliveryDate; |
|
|
|
|
|
|
|
/** 资料类型 */ |
|
|
|
@Excel(name = "资料类型") |
|
|
|
private String informationType; |
|
|
|
|
|
|
|
/** 模板类型 */ |
|
|
|
@Excel(name = "模板类型") |
|
|
|
private String templateType; |
|
|
|
|
|
|
|
/** 业务人员 */ |
|
|
|
@Excel(name = "业务人员") |
|
|
|
private String businessMembers; |
|
|
|
|
|
|
|
/** 关联出库单号 */ |
|
|
|
@Excel(name = "关联出库单号") |
|
|
|
private String relatedDeliveryNumber; |
|
|
|
|
|
|
|
/** 订单类型 */ |
|
|
|
@Excel(name = "订单类型") |
|
|
|
private String orderType; |
|
|
|
|
|
|
|
/** 客户代码 */ |
|
|
|
@Excel(name = "客户代码") |
|
|
|
@Excel(name = "客户ID") |
|
|
|
private String enterpriseCode; |
|
|
|
|
|
|
|
/** 客户名称 */ |
|
|
|
@Excel(name = "客户名称") |
|
|
|
@Excel(name = "客户公司名称") |
|
|
|
private String enterpriseName; |
|
|
|
|
|
|
|
/** 客户订单号 */ |
|
|
|
@Excel(name = "客户订单号") |
|
|
|
private String customerNumber; |
|
|
|
|
|
|
|
|
|
|
|
/** 物料数量 */ |
|
|
|
@Excel(name = "物料总量") |
|
|
|
private String productQuantity; |
|
|
|
|
|
|
|
/** 物料合计 */ |
|
|
|
@Excel(name = "物料合计") |
|
|
|
private String amountMoney; |
|
|
|
|
|
|
|
/** 不含税总价(RMB) */ |
|
|
|
@Excel(name = "不含税总价") |
|
|
|
private BigDecimal allPriceExcludingTaxRmb; |
|
|
|
|
|
|
|
/** 含税总价(RMB) */ |
|
|
|
@Excel(name = "含税总价") |
|
|
|
private BigDecimal allPriceIncludesTax; |
|
|
|
|
|
|
|
/** 不含税总价(美元) */ |
|
|
|
@Excel(name = "不含税总价") |
|
|
|
private BigDecimal allPriceExcludingTaxDollar; |
|
|
|
|
|
|
|
|
|
|
|
/** 计划交付时间 */ |
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd") |
|
|
|
@Excel(name = "计划交付时间", width = 30, dateFormat = "yyyy-MM-dd") |
|
|
|
private Date plannedDeliveryTime; |
|
|
|
|
|
|
|
/** 客户验收时间 */ |
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd") |
|
|
|
@Excel(name = "客户验收时间", width = 30, dateFormat = "yyyy-MM-dd") |
|
|
|
private Date acceptanceTime; |
|
|
|
|
|
|
|
/** 付款条件 */ |
|
|
|
@Excel(name = "付款条件") |
|
|
|
private String paymentCondition; |
|
|
|
|
|
|
|
/** 交付条件 */ |
|
|
|
@Excel(name = "交付条件") |
|
|
|
private String deliveryCondition; |
|
|
|
|
|
|
|
/** 联系人 */ |
|
|
|
@Excel(name = "联系人") |
|
|
|
private String customerContact; |
|
|
|
|
|
|
|
/** 客户厂区 */ |
|
|
|
@Excel(name = "客户厂区") |
|
|
|
private String customerFactory; |
|
|
|
|
|
|
|
/** 送货地址 */ |
|
|
|
@Excel(name = "送货地址") |
|
|
|
/** 联系电话 */ |
|
|
|
@Excel(name = "联系电话") |
|
|
|
private String contactNumber; |
|
|
|
|
|
|
|
/** 收货 */ |
|
|
|
@Excel(name = "收货地址") |
|
|
|
private String deliveryAddress; |
|
|
|
|
|
|
|
/** 送货日期 */ |
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd") |
|
|
|
@Excel(name = "送货日期", width = 30, dateFormat = "yyyy-MM-dd") |
|
|
|
private Date deliverTime; |
|
|
|
|
|
|
|
|
|
|
|
/** 客户厂区 */ |
|
|
|
|
|
|
|
private String customerFactory; |
|
|
|
|
|
|
|
/** 内外销 */ |
|
|
|
@Excel(name = "内外销") |
|
|
|
private String exportSales; |
|
|
|
|
|
|
|
/** 仓库编号 */ |
|
|
|
@Excel(name = "仓库编号") |
|
|
|
private String stockNumber; |
|
|
|
|
|
|
|
/** 仓库名称 */ |
|
|
|
@Excel(name = "仓库名称") |
|
|
|
private String stockName; |
|
|
|
|
|
|
|
/** 备注 */ |
|
|
|
@Excel(name = "备注") |
|
|
|
private String remarks; |
|
|
|
|
|
|
|
/** 制单人 */ |
|
|
|
@Excel(name = "制单人") |
|
|
|
private String voucherPreparation; |
|
|
|
|
|
|
|
/** 发货否 */ |
|
|
|
@Excel(name = "发货否") |
|
|
|
private String deliveryGoodsFlag; |
|
|
|
|
|
|
|
/** 录入时间 */ |
|
|
@ -210,21 +283,21 @@ public class DeliveryGoodsNotice extends BaseEntity |
|
|
|
{ |
|
|
|
return deliveryGoodsFlag; |
|
|
|
} |
|
|
|
public void setFirstAddTime(String firstAddTime) |
|
|
|
public void setFirstAddTime(String firstAddTime) |
|
|
|
{ |
|
|
|
this.firstAddTime = firstAddTime; |
|
|
|
} |
|
|
|
|
|
|
|
public String getFirstAddTime() |
|
|
|
public String getFirstAddTime() |
|
|
|
{ |
|
|
|
return firstAddTime; |
|
|
|
} |
|
|
|
public void setUpdateInfoTime(String updateInfoTime) |
|
|
|
public void setUpdateInfoTime(String updateInfoTime) |
|
|
|
{ |
|
|
|
this.updateInfoTime = updateInfoTime; |
|
|
|
} |
|
|
|
|
|
|
|
public String getUpdateInfoTime() |
|
|
|
public String getUpdateInfoTime() |
|
|
|
{ |
|
|
|
return updateInfoTime; |
|
|
|
} |
|
|
@ -247,6 +320,142 @@ public class DeliveryGoodsNotice extends BaseEntity |
|
|
|
return standbyTwo; |
|
|
|
} |
|
|
|
|
|
|
|
public String getInformationType() { |
|
|
|
return informationType; |
|
|
|
} |
|
|
|
|
|
|
|
public void setInformationType(String informationType) { |
|
|
|
this.informationType = informationType; |
|
|
|
} |
|
|
|
|
|
|
|
public String getTemplateType() { |
|
|
|
return templateType; |
|
|
|
} |
|
|
|
|
|
|
|
public void setTemplateType(String templateType) { |
|
|
|
this.templateType = templateType; |
|
|
|
} |
|
|
|
|
|
|
|
public String getBusinessMembers() { |
|
|
|
return businessMembers; |
|
|
|
} |
|
|
|
|
|
|
|
public void setBusinessMembers(String businessMembers) { |
|
|
|
this.businessMembers = businessMembers; |
|
|
|
} |
|
|
|
|
|
|
|
public String getRelatedDeliveryNumber() { |
|
|
|
return relatedDeliveryNumber; |
|
|
|
} |
|
|
|
|
|
|
|
public void setRelatedDeliveryNumber(String relatedDeliveryNumber) { |
|
|
|
this.relatedDeliveryNumber = relatedDeliveryNumber; |
|
|
|
} |
|
|
|
|
|
|
|
public String getOrderType() { |
|
|
|
return orderType; |
|
|
|
} |
|
|
|
|
|
|
|
public void setOrderType(String orderType) { |
|
|
|
this.orderType = orderType; |
|
|
|
} |
|
|
|
|
|
|
|
public String getProductQuantity() { |
|
|
|
return productQuantity; |
|
|
|
} |
|
|
|
|
|
|
|
public void setProductQuantity(String productQuantity) { |
|
|
|
this.productQuantity = productQuantity; |
|
|
|
} |
|
|
|
|
|
|
|
public String getAmountMoney() { |
|
|
|
return amountMoney; |
|
|
|
} |
|
|
|
|
|
|
|
public void setAmountMoney(String amountMoney) { |
|
|
|
this.amountMoney = amountMoney; |
|
|
|
} |
|
|
|
|
|
|
|
public BigDecimal getAllPriceExcludingTaxRmb() { |
|
|
|
return allPriceExcludingTaxRmb; |
|
|
|
} |
|
|
|
|
|
|
|
public void setAllPriceExcludingTaxRmb(BigDecimal allPriceExcludingTaxRmb) { |
|
|
|
this.allPriceExcludingTaxRmb = allPriceExcludingTaxRmb; |
|
|
|
} |
|
|
|
|
|
|
|
public BigDecimal getAllPriceIncludesTax() { |
|
|
|
return allPriceIncludesTax; |
|
|
|
} |
|
|
|
|
|
|
|
public void setAllPriceIncludesTax(BigDecimal allPriceIncludesTax) { |
|
|
|
this.allPriceIncludesTax = allPriceIncludesTax; |
|
|
|
} |
|
|
|
|
|
|
|
public BigDecimal getAllPriceExcludingTaxDollar() { |
|
|
|
return allPriceExcludingTaxDollar; |
|
|
|
} |
|
|
|
|
|
|
|
public void setAllPriceExcludingTaxDollar(BigDecimal allPriceExcludingTaxDollar) { |
|
|
|
this.allPriceExcludingTaxDollar = allPriceExcludingTaxDollar; |
|
|
|
} |
|
|
|
|
|
|
|
public Date getPlannedDeliveryTime() { |
|
|
|
return plannedDeliveryTime; |
|
|
|
} |
|
|
|
|
|
|
|
public void setPlannedDeliveryTime(Date plannedDeliveryTime) { |
|
|
|
this.plannedDeliveryTime = plannedDeliveryTime; |
|
|
|
} |
|
|
|
|
|
|
|
public Date getAcceptanceTime() { |
|
|
|
return acceptanceTime; |
|
|
|
} |
|
|
|
|
|
|
|
public void setAcceptanceTime(Date acceptanceTime) { |
|
|
|
this.acceptanceTime = acceptanceTime; |
|
|
|
} |
|
|
|
|
|
|
|
public String getPaymentCondition() { |
|
|
|
return paymentCondition; |
|
|
|
} |
|
|
|
|
|
|
|
public void setPaymentCondition(String paymentCondition) { |
|
|
|
this.paymentCondition = paymentCondition; |
|
|
|
} |
|
|
|
|
|
|
|
public String getDeliveryCondition() { |
|
|
|
return deliveryCondition; |
|
|
|
} |
|
|
|
|
|
|
|
public void setDeliveryCondition(String deliveryCondition) { |
|
|
|
this.deliveryCondition = deliveryCondition; |
|
|
|
} |
|
|
|
|
|
|
|
public String getCustomerNumber() { |
|
|
|
return customerNumber; |
|
|
|
} |
|
|
|
|
|
|
|
public void setCustomerNumber(String customerNumber) { |
|
|
|
this.customerNumber = customerNumber; |
|
|
|
} |
|
|
|
|
|
|
|
public Date getDeliverTime() { |
|
|
|
return deliverTime; |
|
|
|
} |
|
|
|
|
|
|
|
public void setDeliverTime(Date deliverTime) { |
|
|
|
this.deliverTime = deliverTime; |
|
|
|
} |
|
|
|
|
|
|
|
public String getContactNumber() { |
|
|
|
return contactNumber; |
|
|
|
} |
|
|
|
|
|
|
|
public void setContactNumber(String contactNumber) { |
|
|
|
this.contactNumber = contactNumber; |
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
public String toString() { |
|
|
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) |
|
|
|