|
|
@@ -1,195 +0,0 @@
|
|
|
-/*
|
|
|
- * Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
|
|
|
- *
|
|
|
- * Redistribution and use in source and binary forms, with or without
|
|
|
- * modification, are permitted provided that the following conditions are met:
|
|
|
- *
|
|
|
- * Redistributions of source code must retain the above copyright notice,
|
|
|
- * this list of conditions and the following disclaimer.
|
|
|
- * Redistributions in binary form must reproduce the above copyright
|
|
|
- * notice, this list of conditions and the following disclaimer in the
|
|
|
- * documentation and/or other materials provided with the distribution.
|
|
|
- * Neither the name of the dreamlu.net developer nor the names of its
|
|
|
- * contributors may be used to endorse or promote products derived from
|
|
|
- * this software without specific prior written permission.
|
|
|
- * Author: Chill 庄骞 (smallchill@163.com)
|
|
|
- */
|
|
|
-package org.springblade.deliver.goods.entity;
|
|
|
-
|
|
|
-import java.math.BigDecimal;
|
|
|
-import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
-import java.time.LocalDateTime;
|
|
|
-import java.io.Serializable;
|
|
|
-import java.util.Date;
|
|
|
-
|
|
|
-import lombok.Data;
|
|
|
-import lombok.EqualsAndHashCode;
|
|
|
-import io.swagger.annotations.ApiModel;
|
|
|
-import io.swagger.annotations.ApiModelProperty;
|
|
|
-
|
|
|
-/**
|
|
|
- * 发货通知单实体类
|
|
|
- *
|
|
|
- * @author BladeX
|
|
|
- * @since 2021-09-26
|
|
|
- */
|
|
|
-@Data
|
|
|
-@TableName("business_delivery")
|
|
|
-@ApiModel(value = "Delivery对象", description = "发货通知单")
|
|
|
-public class Delivery implements Serializable {
|
|
|
-
|
|
|
- private static final long serialVersionUID = 1L;
|
|
|
-
|
|
|
- /**
|
|
|
- * 主键
|
|
|
- */
|
|
|
- @ApiModelProperty(value = "主键")
|
|
|
- private Long id;
|
|
|
- /**
|
|
|
- * 系统编号
|
|
|
- */
|
|
|
- @ApiModelProperty(value = "系统编号")
|
|
|
- private String sysNo;
|
|
|
- /**
|
|
|
- * 订单号
|
|
|
- */
|
|
|
- @ApiModelProperty(value = "订单号")
|
|
|
- private String orderNo;
|
|
|
- /**
|
|
|
- * 原始订单号
|
|
|
- */
|
|
|
- @ApiModelProperty(value = "原始订单号")
|
|
|
- private String orgOrderNo;
|
|
|
- /**
|
|
|
- * 来源订单号
|
|
|
- */
|
|
|
- @ApiModelProperty(value = "来源订单号")
|
|
|
- private String srcOrderNo;
|
|
|
- /**
|
|
|
- * 来源id
|
|
|
- */
|
|
|
- @ApiModelProperty(value = "来源id")
|
|
|
- private Long srcId;
|
|
|
- /**
|
|
|
- * 发货通知单
|
|
|
- */
|
|
|
- @ApiModelProperty(value = "发货通知单")
|
|
|
- private String billType;
|
|
|
- /**
|
|
|
- * 发货日期
|
|
|
- */
|
|
|
- @ApiModelProperty(value = "发货日期")
|
|
|
- private Date businessDate;
|
|
|
- /**
|
|
|
- * 客户id(全称)
|
|
|
- */
|
|
|
- @ApiModelProperty(value = "客户id(全称)")
|
|
|
- private Long corpId;
|
|
|
- /**
|
|
|
- * 仓库id(全称)
|
|
|
- */
|
|
|
- @ApiModelProperty(value = "仓库id(全称)")
|
|
|
- private Long storageId;
|
|
|
- /**
|
|
|
- * 仓库电话
|
|
|
- */
|
|
|
- @ApiModelProperty(value = "仓库电话")
|
|
|
- private String storageTel;
|
|
|
- /**
|
|
|
- * 收货人
|
|
|
- */
|
|
|
- @ApiModelProperty(value = "收货人")
|
|
|
- private String arrivalContact;
|
|
|
- /**
|
|
|
- * 收货地址
|
|
|
- */
|
|
|
- @ApiModelProperty(value = "收货地址")
|
|
|
- private String arrivalAddress;
|
|
|
- /**
|
|
|
- * 收货人签字
|
|
|
- */
|
|
|
- @ApiModelProperty(value = "收货人签字")
|
|
|
- private String arrivalSign;
|
|
|
- /**
|
|
|
- * 收货备注
|
|
|
- */
|
|
|
- @ApiModelProperty(value = "收货备注")
|
|
|
- private String otherRemarks;
|
|
|
- /**
|
|
|
- * 运费要求
|
|
|
- */
|
|
|
- @ApiModelProperty(value = "运费要求")
|
|
|
- private String freightRemarks;
|
|
|
- /**
|
|
|
- * 数量合计
|
|
|
- */
|
|
|
- @ApiModelProperty(value = "数量合计")
|
|
|
- private BigDecimal totalQuantity;
|
|
|
- /**
|
|
|
- * 重量合计
|
|
|
- */
|
|
|
- @ApiModelProperty(value = "重量合计")
|
|
|
- private BigDecimal totalWeight;
|
|
|
- /**
|
|
|
- * 体积合计
|
|
|
- */
|
|
|
- @ApiModelProperty(value = "体积合计")
|
|
|
- private BigDecimal totalVolumn;
|
|
|
- /**
|
|
|
- * 备注
|
|
|
- */
|
|
|
- @ApiModelProperty(value = "备注")
|
|
|
- private String deliveryRemarks;
|
|
|
- /**
|
|
|
- * 特别提醒
|
|
|
- */
|
|
|
- @ApiModelProperty(value = "特别提醒")
|
|
|
- private String specialRemarks;
|
|
|
- /**
|
|
|
- * 版本
|
|
|
- */
|
|
|
- @ApiModelProperty(value = "版本")
|
|
|
- private String version;
|
|
|
- /**
|
|
|
- * 租户id
|
|
|
- */
|
|
|
- @ApiModelProperty(value = "租户id")
|
|
|
- private String tenantId;
|
|
|
- /**
|
|
|
- * 创建人
|
|
|
- */
|
|
|
- @ApiModelProperty(value = "创建人")
|
|
|
- private Long createUser;
|
|
|
- /**
|
|
|
- * 创建部门
|
|
|
- */
|
|
|
- @ApiModelProperty(value = "创建部门")
|
|
|
- private Long createDept;
|
|
|
- /**
|
|
|
- * 创建时间
|
|
|
- */
|
|
|
- @ApiModelProperty(value = "创建时间")
|
|
|
- private Date createTime;
|
|
|
- /**
|
|
|
- * 修改人
|
|
|
- */
|
|
|
- @ApiModelProperty(value = "修改人")
|
|
|
- private Long updateUser;
|
|
|
- /**
|
|
|
- * 修改时间
|
|
|
- */
|
|
|
- @ApiModelProperty(value = "修改时间")
|
|
|
- private Date updateTime;
|
|
|
- /**
|
|
|
- * 状态(0 正常 1停用)
|
|
|
- */
|
|
|
- @ApiModelProperty(value = "状态(0 正常 1停用)")
|
|
|
- private Integer status;
|
|
|
- /**
|
|
|
- * 是否已删除(0 否 1是)
|
|
|
- */
|
|
|
- @ApiModelProperty(value = "是否已删除(0 否 1是)")
|
|
|
- private Integer isDeleted;
|
|
|
-
|
|
|
-
|
|
|
-}
|