|
@@ -2,7 +2,6 @@ package com.jy.business.contract.model.entity;
|
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.FieldFill;
|
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
-import com.baomidou.mybatisplus.annotation.TableLogic;
|
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
import com.jy.framework.model.base.BaseIdPo;
|
|
|
import lombok.Getter;
|
|
@@ -17,7 +16,7 @@ import java.util.Date;
|
|
|
* </p>
|
|
|
*
|
|
|
* @author
|
|
|
- * @since 2025-06-10
|
|
|
+ * @since 2025-06-12
|
|
|
*/
|
|
|
@Getter
|
|
|
@Setter
|
|
@@ -30,39 +29,34 @@ public class ContractInfo extends BaseIdPo {
|
|
|
private String contractNo;
|
|
|
|
|
|
/**
|
|
|
- * 合同类型 1-三梵合同,2-佰易来合同
|
|
|
+ * 是否含税(1是 0否)
|
|
|
*/
|
|
|
- private Integer type;
|
|
|
+ private Integer isTax;
|
|
|
|
|
|
/**
|
|
|
- * 合同主体id
|
|
|
+ * 合同状态 10进行中 20已完成
|
|
|
*/
|
|
|
- private Long contractSubjectId;
|
|
|
+ private Integer status;
|
|
|
|
|
|
/**
|
|
|
- * 采购类型 1-一件商品,2-批单商品
|
|
|
+ * 卖方公司名称
|
|
|
*/
|
|
|
- private Integer purchaseType;
|
|
|
+ private String sellerCompany;
|
|
|
|
|
|
/**
|
|
|
- * 是否含税(1是 0否)
|
|
|
+ * 卖方地址
|
|
|
*/
|
|
|
- private Integer isTax;
|
|
|
+ private String sellerAddress;
|
|
|
|
|
|
/**
|
|
|
- * 等级id
|
|
|
+ * 卖方国家
|
|
|
*/
|
|
|
- private Long rankId;
|
|
|
+ private String sellerCountry;
|
|
|
|
|
|
/**
|
|
|
- * 合同状态 10进行中 20已完成
|
|
|
+ * 卖方联系方式
|
|
|
*/
|
|
|
- private Integer status;
|
|
|
-
|
|
|
- /**
|
|
|
- * 包装状态 0未包装 1已包装
|
|
|
- */
|
|
|
- private Integer packingStatus;
|
|
|
+ private String sellerContact;
|
|
|
|
|
|
/**
|
|
|
* 支付类型 1银行卡支付 2支付宝支付
|
|
@@ -145,11 +139,6 @@ public class ContractInfo extends BaseIdPo {
|
|
|
private Integer validityDate;
|
|
|
|
|
|
/**
|
|
|
- * 客户id
|
|
|
- */
|
|
|
- private Long customerId;
|
|
|
-
|
|
|
- /**
|
|
|
* 客户名称
|
|
|
*/
|
|
|
private String customerName;
|
|
@@ -180,6 +169,11 @@ public class ContractInfo extends BaseIdPo {
|
|
|
private String shippingMethod;
|
|
|
|
|
|
/**
|
|
|
+ * 卸货港
|
|
|
+ */
|
|
|
+ private String placeOfDischarge;
|
|
|
+
|
|
|
+ /**
|
|
|
* 交货条款
|
|
|
*/
|
|
|
private String deliveryTerms;
|