|
@@ -28,190 +28,266 @@ import io.swagger.annotations.ApiModelProperty;
|
|
|
@TableName("sale_order_b2b")
|
|
|
public class SaleOrderB2b implements Serializable {
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
-
|
|
|
-
|
|
|
- @TableId(type = IdType.ASSIGN_ID)
|
|
|
+
|
|
|
+ @TableId(type = IdType.ASSIGN_ID)
|
|
|
@ApiModelProperty(value = "主键id")
|
|
|
- private String id;
|
|
|
-
|
|
|
+ private java.lang.String id;
|
|
|
+
|
|
|
@ApiModelProperty(value = "创建人")
|
|
|
- private String createBy;
|
|
|
-
|
|
|
- @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ private java.lang.String createBy;
|
|
|
+
|
|
|
+ @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
|
|
@ApiModelProperty(value = "创建时间")
|
|
|
- private Date createTime;
|
|
|
-
|
|
|
+ private java.util.Date createTime;
|
|
|
+
|
|
|
@ApiModelProperty(value = "更新人")
|
|
|
- private String updateBy;
|
|
|
-
|
|
|
- @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ private java.lang.String updateBy;
|
|
|
+
|
|
|
+ @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
|
|
@ApiModelProperty(value = "更新时间")
|
|
|
- private Date updateTime;
|
|
|
-
|
|
|
- @Excel(name = "客户确认(1-已确认,0-未确认)", width = 15)
|
|
|
+ private java.util.Date updateTime;
|
|
|
+
|
|
|
+ @Excel(name = "客户确认(1-已确认,0-未确认)", width = 15)
|
|
|
@ApiModelProperty(value = "客户确认(1-已确认,0-未确认)")
|
|
|
- private Integer status;
|
|
|
-
|
|
|
- @Excel(name = "提交(submit)1是0否", width = 15)
|
|
|
+ private java.lang.Integer status;
|
|
|
+
|
|
|
+ @Excel(name = "提交(submit)1是0否", width = 15)
|
|
|
@ApiModelProperty(value = "提交(submit)1是0否")
|
|
|
- private String submit;
|
|
|
-
|
|
|
- @Excel(name = "关闭(close)1是0否", width = 15)
|
|
|
+ private java.lang.String submit;
|
|
|
+
|
|
|
+ @Excel(name = "关闭(close)1是0否", width = 15)
|
|
|
@ApiModelProperty(value = "关闭(close)1是0否")
|
|
|
- private String close;
|
|
|
-
|
|
|
- @Excel(name = "删除状态(0-正常,1-已删除)", width = 15)
|
|
|
+ private java.lang.String close;
|
|
|
+
|
|
|
+ @Excel(name = "删除状态(0-正常,1-已删除)", width = 15)
|
|
|
@ApiModelProperty(value = "删除状态(0-正常,1-已删除)")
|
|
|
@TableLogic
|
|
|
- private Integer delFlag;
|
|
|
-
|
|
|
- @Excel(name = "单据日期", width = 15, format = "yyyy-MM-dd")
|
|
|
- @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd")
|
|
|
- @DateTimeFormat(pattern="yyyy-MM-dd")
|
|
|
+ private java.lang.Integer delFlag;
|
|
|
+
|
|
|
+ @Excel(name = "单据日期", width = 20, format = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
|
|
@ApiModelProperty(value = "单据日期")
|
|
|
- private Date billDate;
|
|
|
-
|
|
|
- @Excel(name = "单据编码", width = 15)
|
|
|
+ private java.util.Date billDate;
|
|
|
+
|
|
|
+ @Excel(name = "单据编码", width = 15)
|
|
|
@ApiModelProperty(value = "单据编码")
|
|
|
- private String billCode;
|
|
|
-
|
|
|
- @Excel(name = "项目(project)", width = 15)
|
|
|
+ private java.lang.String billCode;
|
|
|
+
|
|
|
+ @Excel(name = "项目(project)", width = 15)
|
|
|
@ApiModelProperty(value = "项目(project)")
|
|
|
- private String project;
|
|
|
-
|
|
|
- @Excel(name = "项目名称", width = 15)
|
|
|
+ private java.lang.String project;
|
|
|
+
|
|
|
+ @Excel(name = "项目名称", width = 15)
|
|
|
@ApiModelProperty(value = "项目名称")
|
|
|
- private String projectName;
|
|
|
-
|
|
|
- @Excel(name = "客户(customer)", width = 15)
|
|
|
+ private java.lang.String projectName;
|
|
|
+
|
|
|
+ @Excel(name = "客户(customer)", width = 15)
|
|
|
@ApiModelProperty(value = "客户(customer)")
|
|
|
- private String customer;
|
|
|
-
|
|
|
- @Excel(name = "客户名称", width = 15)
|
|
|
+ private java.lang.String customer;
|
|
|
+
|
|
|
+ @Excel(name = "客户名称", width = 15)
|
|
|
@ApiModelProperty(value = "客户名称")
|
|
|
- private String customerName;
|
|
|
-
|
|
|
- @Excel(name = "业务类型(busyness type)", width = 15)
|
|
|
+ private java.lang.String customerName;
|
|
|
+
|
|
|
+ @Excel(name = "业务类型(busyness type)", width = 15)
|
|
|
@ApiModelProperty(value = "业务类型(busyness type)")
|
|
|
- private String busynessType;
|
|
|
-
|
|
|
- @Excel(name = "中间人(intermediator)", width = 15)
|
|
|
+ private java.lang.String busynessType;
|
|
|
+
|
|
|
+ @Excel(name = "中间人(intermediator)", width = 15)
|
|
|
@ApiModelProperty(value = "中间人(intermediator)")
|
|
|
- private String intermediator;
|
|
|
-
|
|
|
- @Excel(name = "中间人名称", width = 15)
|
|
|
+ private java.lang.String intermediator;
|
|
|
+
|
|
|
+ @Excel(name = "中间人名称", width = 15)
|
|
|
@ApiModelProperty(value = "中间人名称")
|
|
|
- private String intermediatorName;
|
|
|
-
|
|
|
- @Excel(name = "优先级(priority)", width = 15)
|
|
|
+ private java.lang.String intermediatorName;
|
|
|
+
|
|
|
+ @Excel(name = "优先级(priority)", width = 15)
|
|
|
@ApiModelProperty(value = "优先级(priority)")
|
|
|
- private String priority;
|
|
|
-
|
|
|
- @Excel(name = "产品分类(production class)", width = 15)
|
|
|
+ private java.lang.String priority;
|
|
|
+
|
|
|
+ @Excel(name = "产品分类(production class)", width = 15)
|
|
|
@ApiModelProperty(value = "产品分类(production class)")
|
|
|
- private String productionClass;
|
|
|
-
|
|
|
- @Excel(name = "机型(model)", width = 15)
|
|
|
+ private java.lang.String productionClass;
|
|
|
+
|
|
|
+ @Excel(name = "机型(model)", width = 15)
|
|
|
@ApiModelProperty(value = "机型(model)")
|
|
|
- private String model;
|
|
|
-
|
|
|
- @Excel(name = "厂家(maker)", width = 15)
|
|
|
+ private java.lang.String model;
|
|
|
+
|
|
|
+ @Excel(name = "厂家(maker)", width = 15)
|
|
|
@ApiModelProperty(value = "厂家(maker)")
|
|
|
- private String maker;
|
|
|
-
|
|
|
- @Excel(name = "币种(currency)", width = 15)
|
|
|
+ private java.lang.String maker;
|
|
|
+
|
|
|
+ @Excel(name = "币种(currency)", width = 15)
|
|
|
@ApiModelProperty(value = "币种(currency)")
|
|
|
- private String currency;
|
|
|
-
|
|
|
- @Excel(name = "汇率(exchange rate)", width = 15)
|
|
|
+ private java.lang.String currency;
|
|
|
+
|
|
|
+ @Excel(name = "汇率(exchange rate)", width = 15)
|
|
|
@ApiModelProperty(value = "汇率(exchange rate)")
|
|
|
private java.math.BigDecimal exchangeRate;
|
|
|
-
|
|
|
- @Excel(name = "交货条款(delivery terms)", width = 15)
|
|
|
+
|
|
|
+ @Excel(name = "交货条款(delivery terms)", width = 15)
|
|
|
@ApiModelProperty(value = "交货条款(delivery terms)")
|
|
|
- private String deliveryTerms;
|
|
|
-
|
|
|
- @Excel(name = "付款条件(payment terms)", width = 15)
|
|
|
+ private java.lang.String deliveryTerms;
|
|
|
+
|
|
|
+ @Excel(name = "付款条件(payment terms)", width = 15)
|
|
|
@ApiModelProperty(value = "付款条件(payment terms)")
|
|
|
- private String paymentTerms;
|
|
|
-
|
|
|
- @Excel(name = "交期(delivery time)", width = 15, format = "yyyy-MM-dd")
|
|
|
- @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd")
|
|
|
- @DateTimeFormat(pattern="yyyy-MM-dd")
|
|
|
+ private java.lang.String paymentTerms;
|
|
|
+
|
|
|
+ @Excel(name = "交期(delivery time)", width = 20, format = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
|
|
@ApiModelProperty(value = "交期(delivery time)")
|
|
|
- private Date deliveryTime;
|
|
|
-
|
|
|
- @Excel(name = "发货方式(delivery)", width = 15)
|
|
|
+ private java.util.Date deliveryTime;
|
|
|
+
|
|
|
+ @Excel(name = "发货方式(delivery)", width = 15)
|
|
|
@ApiModelProperty(value = "发货方式(delivery)")
|
|
|
- private String delivery;
|
|
|
-
|
|
|
- @Excel(name = "交货地点(delivery address)", width = 15)
|
|
|
+ private java.lang.String delivery;
|
|
|
+
|
|
|
+ @Excel(name = "交货地点(delivery address)", width = 15)
|
|
|
@ApiModelProperty(value = "交货地点(delivery address)")
|
|
|
- private String deliveryAddress;
|
|
|
-
|
|
|
- @Excel(name = "开票抬头(Invoice header)", width = 15)
|
|
|
+ private java.lang.String deliveryAddress;
|
|
|
+
|
|
|
+ @Excel(name = "开票抬头(Invoice header)", width = 15)
|
|
|
@ApiModelProperty(value = "开票抬头(Invoice header)")
|
|
|
- private String invoiceHeader;
|
|
|
-
|
|
|
- @Excel(name = "质保期(warranty period)", width = 15)
|
|
|
+ private java.lang.String invoiceHeader;
|
|
|
+
|
|
|
+ @Excel(name = "开票地址(Invoice address)", width = 15)
|
|
|
+ @ApiModelProperty(value = "开票地址(Invoice address)")
|
|
|
+ private java.lang.String invoiceAddress;
|
|
|
+
|
|
|
+ @Excel(name = "质保期(warranty period)", width = 15)
|
|
|
@ApiModelProperty(value = "质保期(warranty period)")
|
|
|
- private String warrantyPeriod;
|
|
|
-
|
|
|
- @Excel(name = "是否出口(export) 1是0否", width = 15)
|
|
|
+ private java.lang.String warrantyPeriod;
|
|
|
+
|
|
|
+ @Excel(name = "是否出口(export) 1是0否", width = 15)
|
|
|
@ApiModelProperty(value = "是否出口(export) 1是0否")
|
|
|
- private String isExport;
|
|
|
-
|
|
|
- @Excel(name = "包装要求(packageb requirement)", width = 15)
|
|
|
+ private java.lang.String isExport;
|
|
|
+
|
|
|
+ @Excel(name = "包装要求(packageb requirement)", width = 15)
|
|
|
@ApiModelProperty(value = "包装要求(packageb requirement)")
|
|
|
- private String packagebRequirement;
|
|
|
-
|
|
|
- @Excel(name = "销售部门(sale department)", width = 15)
|
|
|
+ private java.lang.String packagebRequirement;
|
|
|
+
|
|
|
+ @Excel(name = "销售部门(sale department)", width = 15)
|
|
|
@ApiModelProperty(value = "销售部门(sale department)")
|
|
|
- private String saleDepartment;
|
|
|
-
|
|
|
- @Excel(name = "业务员(salesman)", width = 15)
|
|
|
+ private java.lang.String saleDepartment;
|
|
|
+
|
|
|
+ @Excel(name = "业务员(salesman)", width = 15)
|
|
|
@ApiModelProperty(value = "业务员(salesman)")
|
|
|
- private String salesman;
|
|
|
-
|
|
|
- @Excel(name = "销售部门(sale department)名称", width = 15)
|
|
|
+ private java.lang.String salesman;
|
|
|
+
|
|
|
+ @Excel(name = "销售部门(sale department)名称", width = 15)
|
|
|
@ApiModelProperty(value = "销售部门(sale department)名称")
|
|
|
- private String saleDepartmentName;
|
|
|
-
|
|
|
- @Excel(name = "业务员(salesman)名称", width = 15)
|
|
|
+ private java.lang.String saleDepartmentName;
|
|
|
+
|
|
|
+ @Excel(name = "业务员(salesman)名称", width = 15)
|
|
|
@ApiModelProperty(value = "业务员(salesman)名称")
|
|
|
- private String salesmanName;
|
|
|
-
|
|
|
- @Excel(name = "附件(attachs)", width = 15)
|
|
|
+ private java.lang.String salesmanName;
|
|
|
+
|
|
|
+ @Excel(name = "附件(attachs)", width = 15)
|
|
|
@ApiModelProperty(value = "附件(attachs)")
|
|
|
- private String attachs;
|
|
|
-
|
|
|
- @Excel(name = "备注(notes)", width = 15)
|
|
|
+ private java.lang.String attachs;
|
|
|
+
|
|
|
+ @Excel(name = "备注(notes)", width = 15)
|
|
|
@ApiModelProperty(value = "备注(notes)")
|
|
|
- private String notes;
|
|
|
-
|
|
|
- @Excel(name = "客户订单号(customer order number)", width = 15)
|
|
|
+ private java.lang.String notes;
|
|
|
+
|
|
|
+ @Excel(name = "客户订单号(customer order number)", width = 15)
|
|
|
@ApiModelProperty(value = "客户订单号(customer order number)")
|
|
|
- private String customerOrder;
|
|
|
-
|
|
|
- @Excel(name = "折上折(double discount)", width = 15)
|
|
|
+ private java.lang.String customerOrder;
|
|
|
+
|
|
|
+ @Excel(name = "折上折(double discount)", width = 15)
|
|
|
@ApiModelProperty(value = "折上折(double discount)")
|
|
|
private java.math.BigDecimal doubleDiscount;
|
|
|
-
|
|
|
- @Excel(name = "折后金额(converted amount)", width = 15)
|
|
|
+
|
|
|
+ @Excel(name = "折后金额(converted amount)", width = 15)
|
|
|
@ApiModelProperty(value = "折后金额(converted amount)")
|
|
|
- private String convertedAmount;
|
|
|
-
|
|
|
- @Excel(name = "质保条款(warranty terms)", width = 15)
|
|
|
+ private java.math.BigDecimal convertedAmount;
|
|
|
+
|
|
|
+ @Excel(name = "质保条款(warranty terms)", width = 15)
|
|
|
@ApiModelProperty(value = "质保条款(warranty terms)")
|
|
|
- private String warrantyTerms;
|
|
|
-
|
|
|
- @Excel(name = "预付比例(advance ratio)", width = 15)
|
|
|
+ private java.lang.String warrantyTerms;
|
|
|
+
|
|
|
+ @Excel(name = "预付比例(advance ratio)", width = 15)
|
|
|
@ApiModelProperty(value = "预付比例(advance ratio)")
|
|
|
- private String advanceRatio;
|
|
|
-
|
|
|
- @Excel(name = "版本号", width = 15)
|
|
|
+ private java.lang.String advanceRatio;
|
|
|
+
|
|
|
+ @Excel(name = "版本号", width = 15)
|
|
|
@ApiModelProperty(value = "版本号")
|
|
|
- private String version;
|
|
|
+ private java.lang.String version;
|
|
|
+
|
|
|
+ @Excel(name = "订单金额(order money)", width = 15)
|
|
|
+ @ApiModelProperty(value = "订单金额(order money)")
|
|
|
+ private java.math.BigDecimal orderMoney;
|
|
|
+
|
|
|
+ @Excel(name = "发货金额(delivery money)", width = 15)
|
|
|
+ @ApiModelProperty(value = "发货金额(delivery money)")
|
|
|
+ private java.math.BigDecimal deliveryMoney;
|
|
|
+
|
|
|
+ @Excel(name = "发票金额(invoice money)", width = 15)
|
|
|
+ @ApiModelProperty(value = "发票金额(invoice money)")
|
|
|
+ private java.math.BigDecimal invoiceMoney;
|
|
|
+
|
|
|
+ @Excel(name = "收款金额(collected money)", width = 15)
|
|
|
+ @ApiModelProperty(value = "收款金额(collected money)")
|
|
|
+ private java.math.BigDecimal collectedMoney;
|
|
|
+
|
|
|
+ @Excel(name = "来源", width = 15)
|
|
|
+ @ApiModelProperty(value = "来源")
|
|
|
+ private java.lang.String sourceCode;
|
|
|
+
|
|
|
+ @Excel(name = "来源2", width = 15)
|
|
|
+ @ApiModelProperty(value = "来源2")
|
|
|
+ private java.lang.String sourceCode2;
|
|
|
+
|
|
|
+ @Excel(name = "运输方式(transport)", width = 15)
|
|
|
+ @ApiModelProperty(value = "运输方式(transport)")
|
|
|
+ private java.lang.String transport;
|
|
|
+
|
|
|
+ @Excel(name = "确认人", width = 15)
|
|
|
+ @ApiModelProperty(value = "确认人")
|
|
|
+ private java.lang.String confirmBy;
|
|
|
+
|
|
|
+ @Excel(name = "确认时间", width = 20, format = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
|
|
+ @ApiModelProperty(value = "确认时间")
|
|
|
+ private java.util.Date confirmTime;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "所属部门")
|
|
|
+ private java.lang.String sysOrgCode;
|
|
|
+
|
|
|
+ @Excel(name = "上海/香港", width = 15)
|
|
|
+ @ApiModelProperty(value = "上海/香港")
|
|
|
+ private java.lang.String organize;
|
|
|
+
|
|
|
+ @Excel(name = "协议条款", width = 15)
|
|
|
+ @ApiModelProperty(value = "协议条款")
|
|
|
+ private java.lang.String agreementTerms;
|
|
|
+
|
|
|
+ @Excel(name = "1是 0否", width = 15)
|
|
|
+ @ApiModelProperty(value = "1是 0否")
|
|
|
+ private java.lang.Integer b2b;
|
|
|
+
|
|
|
+ @Excel(name = "船名", width = 15)
|
|
|
+ @ApiModelProperty(value = "船名")
|
|
|
+ private java.lang.String shipName;
|
|
|
+
|
|
|
+ @Excel(name = "imo", width = 15)
|
|
|
+ @ApiModelProperty(value = "imo")
|
|
|
+ private java.lang.String imo;
|
|
|
+
|
|
|
+ @Excel(name = "联系人主键", width = 15)
|
|
|
+ @ApiModelProperty(value = "联系人主键")
|
|
|
+ private java.lang.String liaisonId;
|
|
|
+
|
|
|
+ @Excel(name = "联系人信息", width = 15)
|
|
|
+ @ApiModelProperty(value = "联系人信息")
|
|
|
+ private java.lang.String liaisonInfo;
|
|
|
+
|
|
|
+ @Excel(name = "关闭原因", width = 15)
|
|
|
+ @ApiModelProperty(value = "关闭原因")
|
|
|
+ private java.lang.String closeReason;
|
|
|
}
|