|
@@ -0,0 +1,127 @@
|
|
|
+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.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 Gdc
|
|
|
+ * @since 2021-09-22
|
|
|
+ */
|
|
|
+@Data
|
|
|
+@EqualsAndHashCode(callSuper = true)
|
|
|
+@Accessors(chain = true)
|
|
|
+public class StockSaleReceiptReport extends BaseModel<StockSaleReceiptReport> {
|
|
|
+
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 主键
|
|
|
+ */
|
|
|
+ @TableId(type = IdType.UUID)
|
|
|
+ private String id;
|
|
|
+ /**
|
|
|
+ * 公司id
|
|
|
+ */
|
|
|
+ private String compId;
|
|
|
+ /**
|
|
|
+ * 合同编号
|
|
|
+ */
|
|
|
+ private String contractNo;
|
|
|
+ /**
|
|
|
+ * 车牌号
|
|
|
+ */
|
|
|
+ private String carNo;
|
|
|
+ /**
|
|
|
+ * 出库日期
|
|
|
+ */
|
|
|
+ private Date deliveryDate;
|
|
|
+ /**
|
|
|
+ * 净重(吨)
|
|
|
+ */
|
|
|
+ private Float netWeight;
|
|
|
+ /**
|
|
|
+ * 毛重(吨)
|
|
|
+ */
|
|
|
+ private Float grossWeight;
|
|
|
+ /**
|
|
|
+ * 皮重(吨)
|
|
|
+ */
|
|
|
+ private Float tare;
|
|
|
+ /**
|
|
|
+ * 结算重量(吨)
|
|
|
+ */
|
|
|
+ private Float settlementWeight;
|
|
|
+ /**
|
|
|
+ * 应收金额(元/吨)
|
|
|
+ */
|
|
|
+ private Float amountIngReceivable;
|
|
|
+ /**
|
|
|
+ * 已收金额(元/吨)
|
|
|
+ */
|
|
|
+ private Float amountEdReceivable;
|
|
|
+ /**
|
|
|
+ * 未收金额(元/吨)
|
|
|
+ */
|
|
|
+ private Float amountNotReceivable;
|
|
|
+ /**
|
|
|
+ * 收款截图
|
|
|
+ */
|
|
|
+ private String collectionScreenshot;
|
|
|
+ /**
|
|
|
+ * 收款日期
|
|
|
+ */
|
|
|
+ private Date collectionDate;
|
|
|
+ /**
|
|
|
+ * 已开发票(元)
|
|
|
+ */
|
|
|
+ private Float alreadyInvoice;
|
|
|
+ /**
|
|
|
+ * 库点
|
|
|
+ */
|
|
|
+ private String warehouseName;
|
|
|
+ /**
|
|
|
+ * 状态标识
|
|
|
+ */
|
|
|
+ private String statusFlag;
|
|
|
+ /**
|
|
|
+ * 状态
|
|
|
+ */
|
|
|
+ private String status;
|
|
|
+ /**
|
|
|
+ * 状态英文
|
|
|
+ */
|
|
|
+ private String statusEn;
|
|
|
+ /**
|
|
|
+ * 审核状态
|
|
|
+ */
|
|
|
+ private String approveStatus;
|
|
|
+ /**
|
|
|
+ * 审核流id
|
|
|
+ */
|
|
|
+ private String workflowId;
|
|
|
+ /**
|
|
|
+ * 备注
|
|
|
+ */
|
|
|
+ private String remark;
|
|
|
+
|
|
|
+
|
|
|
+ @Override
|
|
|
+ protected Serializable pkVal() {
|
|
|
+ return this.id;
|
|
|
+ }
|
|
|
+
|
|
|
+}
|