|
@@ -0,0 +1,197 @@
|
|
|
+package com.yh.saas.plugin.yiliangyiyun.entity;
|
|
|
+
|
|
|
+import java.util.Date;
|
|
|
+import com.baomidou.mybatisplus.activerecord.Model;
|
|
|
+import java.io.Serializable;
|
|
|
+
|
|
|
+import com.baomidou.mybatisplus.annotations.TableId;
|
|
|
+import com.baomidou.mybatisplus.annotations.TableName;
|
|
|
+import com.baomidou.mybatisplus.annotations.Version;
|
|
|
+
|
|
|
+import com.baomidou.mybatisplus.enums.IdType;
|
|
|
+import com.yh.saas.common.support.entity.BaseModel;
|
|
|
+import lombok.Data;
|
|
|
+import lombok.EqualsAndHashCode;
|
|
|
+import lombok.experimental.Accessors;
|
|
|
+
|
|
|
+/**
|
|
|
+ * <p>
|
|
|
+ * 采购入库报表
|
|
|
+ * </p>
|
|
|
+ *
|
|
|
+ * @author Gongdc
|
|
|
+ * @since 2021-07-31
|
|
|
+ */
|
|
|
+@Data
|
|
|
+@EqualsAndHashCode(callSuper = true)
|
|
|
+@Accessors(chain = true)
|
|
|
+@TableName("purchase_receipt_report")
|
|
|
+public class PurchaseReceiptReport extends BaseModel<PurchaseReceiptReport> {
|
|
|
+
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 主键
|
|
|
+ */
|
|
|
+ @TableId(type = IdType.UUID)
|
|
|
+ private String id;
|
|
|
+ /**
|
|
|
+ * 公司id
|
|
|
+ */
|
|
|
+ private String compId;
|
|
|
+ /**
|
|
|
+ * 合同编号
|
|
|
+ */
|
|
|
+ private String contractNo;
|
|
|
+ /**
|
|
|
+ * 货名key
|
|
|
+ */
|
|
|
+ private String goodsNameKey;
|
|
|
+ /**
|
|
|
+ * 货名
|
|
|
+ */
|
|
|
+ private String goodsName;
|
|
|
+ /**
|
|
|
+ * 仓位编号
|
|
|
+ */
|
|
|
+ private String positionNumber;
|
|
|
+ /**
|
|
|
+ * 派车编号
|
|
|
+ */
|
|
|
+ private String tranCarNo;
|
|
|
+ /**
|
|
|
+ * 车牌号
|
|
|
+ */
|
|
|
+ private String carNo;
|
|
|
+ /**
|
|
|
+ * 入库日期
|
|
|
+ */
|
|
|
+ private Date warehousingDate;
|
|
|
+ /**
|
|
|
+ * 水分
|
|
|
+ */
|
|
|
+ private String waterContent;
|
|
|
+ /**
|
|
|
+ * 蛋白
|
|
|
+ */
|
|
|
+ private String protein;
|
|
|
+ /**
|
|
|
+ * 结算单价(元/吨)
|
|
|
+ */
|
|
|
+ private Float settlementPrice;
|
|
|
+ /**
|
|
|
+ * 净重(吨)
|
|
|
+ */
|
|
|
+ private Float netWeight;
|
|
|
+ /**
|
|
|
+ * 结转重量(吨)
|
|
|
+ */
|
|
|
+ private Float carryOverWeight;
|
|
|
+ /**
|
|
|
+ * 扣款(元/吨)
|
|
|
+ */
|
|
|
+ private Float deductionAmount;
|
|
|
+ /**
|
|
|
+ * 扣款项
|
|
|
+ */
|
|
|
+ private String deductionItems;
|
|
|
+ /**
|
|
|
+ * 应付金额(元/吨)
|
|
|
+ */
|
|
|
+ private Float amountIngPayable;
|
|
|
+ /**
|
|
|
+ * 已付金额(元/吨)
|
|
|
+ */
|
|
|
+ private Float amountEdPayable;
|
|
|
+ /**
|
|
|
+ * 未付金额(元/吨)
|
|
|
+ */
|
|
|
+ private Float amountNotPayable;
|
|
|
+ /**
|
|
|
+ * 付款截图
|
|
|
+ */
|
|
|
+ private String paymentScreenshot;
|
|
|
+ /**
|
|
|
+ * 付款日期
|
|
|
+ */
|
|
|
+ private Date paymentDate;
|
|
|
+ /**
|
|
|
+ * 已开发票(元)
|
|
|
+ */
|
|
|
+ private Float alreadyInvoice;
|
|
|
+ /**
|
|
|
+ * 客户
|
|
|
+ */
|
|
|
+ private String customerName;
|
|
|
+ /**
|
|
|
+ * 库点
|
|
|
+ */
|
|
|
+ private String warehouseName;
|
|
|
+ /**
|
|
|
+ * 发票类型(1自开发票2对方开具)
|
|
|
+ */
|
|
|
+ private String invoiceType;
|
|
|
+ /**
|
|
|
+ * 发票类型key
|
|
|
+ */
|
|
|
+ private String invoiceTypeKey;
|
|
|
+ /**
|
|
|
+ * 单价(元/吨)
|
|
|
+ */
|
|
|
+ private Float unitPrice;
|
|
|
+ /**
|
|
|
+ * 基差(元/吨)
|
|
|
+ */
|
|
|
+ private Float basisPrice;
|
|
|
+ /**
|
|
|
+ * 卸车费(元/吨)
|
|
|
+ */
|
|
|
+ private Float unloadingCharge;
|
|
|
+ /**
|
|
|
+ * 发票费(元/吨)
|
|
|
+ */
|
|
|
+ private Float invoiceFee;
|
|
|
+ /**
|
|
|
+ * 补货结转
|
|
|
+ */
|
|
|
+ private Float replen;
|
|
|
+ /**
|
|
|
+ * 结转
|
|
|
+ */
|
|
|
+ private String carryForward;
|
|
|
+ /**
|
|
|
+ * 状态标识
|
|
|
+ */
|
|
|
+ private String statusFlag;
|
|
|
+ /**
|
|
|
+ * 状态
|
|
|
+ */
|
|
|
+ private String status;
|
|
|
+ /**
|
|
|
+ * 状态英文
|
|
|
+ */
|
|
|
+ private String statusEn;
|
|
|
+ /**
|
|
|
+ * 审核状态
|
|
|
+ */
|
|
|
+ private String approveStatus;
|
|
|
+ /**
|
|
|
+ * 客户确认状态标识(1是3否)
|
|
|
+ */
|
|
|
+ private String customerConfirmationStatusFlag;
|
|
|
+ /**
|
|
|
+ * 客户确认状态
|
|
|
+ */
|
|
|
+ private String customerConfirmationStatus;
|
|
|
+ /**
|
|
|
+ * 审核流id
|
|
|
+ */
|
|
|
+ private String workflowId;
|
|
|
+
|
|
|
+
|
|
|
+ @Override
|
|
|
+ protected Serializable pkVal() {
|
|
|
+ return this.id;
|
|
|
+ }
|
|
|
+
|
|
|
+}
|