|
@@ -0,0 +1,101 @@
|
|
|
+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-08-02
|
|
|
+ */
|
|
|
+@Data
|
|
|
+@EqualsAndHashCode(callSuper = true)
|
|
|
+@Accessors(chain = true)
|
|
|
+@TableName("price_confirmation_sheet")
|
|
|
+public class PriceConfirmationSheet extends BaseModel<PriceConfirmationSheet> {
|
|
|
+
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 主键
|
|
|
+ */
|
|
|
+ @TableId(type = IdType.UUID)
|
|
|
+ private String id;
|
|
|
+ /**
|
|
|
+ * 合同编号
|
|
|
+ */
|
|
|
+ private String contractNo;
|
|
|
+ /**
|
|
|
+ * 合同类型(1销售2采购)
|
|
|
+ */
|
|
|
+ private String contractType;
|
|
|
+ /**
|
|
|
+ * 点价单编号
|
|
|
+ */
|
|
|
+ private String priceListNo;
|
|
|
+ /**
|
|
|
+ * 点价单附件
|
|
|
+ */
|
|
|
+ private String addressUrl;
|
|
|
+ /**
|
|
|
+ * 品种合约及方向
|
|
|
+ */
|
|
|
+ private String varietyContractDirection;
|
|
|
+ /**
|
|
|
+ * 买方
|
|
|
+ */
|
|
|
+ private String buyer;
|
|
|
+ /**
|
|
|
+ * 卖方
|
|
|
+ */
|
|
|
+ private String seller;
|
|
|
+ /**
|
|
|
+ * 买方电话
|
|
|
+ */
|
|
|
+ private String buyerPhone;
|
|
|
+ /**
|
|
|
+ * 卖方电话
|
|
|
+ */
|
|
|
+ private String sellerPhone;
|
|
|
+ /**
|
|
|
+ * 成交数量(手)
|
|
|
+ */
|
|
|
+ private Float transactionsNumberHand;
|
|
|
+ /**
|
|
|
+ * 成交数量(吨)
|
|
|
+ */
|
|
|
+ private Float transactionsNumber;
|
|
|
+ /**
|
|
|
+ * 成交价格(元/吨)
|
|
|
+ */
|
|
|
+ private Float transactionPrice;
|
|
|
+ /**
|
|
|
+ * 成交日期
|
|
|
+ */
|
|
|
+ private Date transactionDate;
|
|
|
+ /**
|
|
|
+ * 备注
|
|
|
+ */
|
|
|
+ private String remarks;
|
|
|
+
|
|
|
+
|
|
|
+ @Override
|
|
|
+ protected Serializable pkVal() {
|
|
|
+ return this.id;
|
|
|
+ }
|
|
|
+
|
|
|
+}
|