package com.sunda.spmswms.entity;

import com.baomidou.mybatisplus.annotation.TableName;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableField;
import java.io.Serializable;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;

/**
 * <p>
 * 国内仓收货入库分批收货行表
 * </p>
 *
 * @author Wayne
 * @since 2023-06-16
 */
@Data
@EqualsAndHashCode(callSuper = false)
@Accessors(chain = true)
@TableName("SAP_DELIVERY_NOTE_BATCH_RECEIPT_DTL")
@ApiModel(value="SapDeliveryNoteBatchReceiptDtl对象", description="国内仓收货入库分批收货行表")
public class SapDeliveryNoteBatchReceiptDtl implements Serializable {

    private static final long serialVersionUID = 1L;

    @ApiModelProperty(value = "主键")
    @TableId("UUID")
    private String uuid;

    @ApiModelProperty(value = "行号")
    @TableField("ITEM")
    private String item;

    @ApiModelProperty(value = "SPMS单号")
    @TableField("SPMS_ID")
    private String spmsId;

    @ApiModelProperty(value = "物料编码")
    @TableField("MATERIAL_NO")
    private String materialNo;

    @ApiModelProperty(value = "箱码")
    @TableField("BOX_NOTE")
    private String boxNote;

    @ApiModelProperty(value = "基本单位")
    @TableField("BASIC_UNIT")
    private String basicUnit;

    @ApiModelProperty(value = "交货数量")
    @TableField("DELIVERY_QTY")
    private Double deliveryQty;

    @ApiModelProperty(value = "实收数量")
    @TableField("RECEIVED_QTY")
    private Double receivedQty;

    @ApiModelProperty(value = "销售单位")
    @TableField("UNIT_SALES")
    private String unitSales;

    @ApiModelProperty(value = "销售单位应收数量")
    @TableField("QTY_SALES")
    private Double qtySales;

    @ApiModelProperty(value = "销售单位实收数量")
    @TableField("ACTUAL_QTY_SALES")
    private Double actualQtySales;

    @ApiModelProperty(value = "储位数量关系")
    @TableField("TEMP_STORAGE")
    private String tempStorage;

    @ApiModelProperty(value = "外箱材质名称")
    @TableField("BOX_MATERIAL_NAME")
    private String boxMaterialName;

    @ApiModelProperty(value = "体积")
    @TableField("VOLUME")
    private String volume;
    
    @ApiModelProperty(value = "毛重")
    @TableField("BOX_GROSS_WEIGHT")
    private String boxGrossWeight;

    @ApiModelProperty(value = "净重")
    @TableField("BOX_NET_WEIGHT")
    private String boxNetWeight;

    @ApiModelProperty(value = "颜色")
    @TableField("BOX_COLOR")
    private String boxColor;

    @ApiModelProperty(value = "货币-SAP返回")
    @TableField("WAERS")
    private String waers;

    @ApiModelProperty(value = "金额-SAP返回")
    @TableField("DMBTR")
    private String dmbtr;

    @ApiModelProperty(value = "备注")
    @TableField("REMARK")
    private String remark;
    
    @ApiModelProperty(value = "SAP交货单号")
    @TableField("DELIVERY_NOTE_SAP")
    private String deliveryNoteSap;
    
    @ApiModelProperty(value = "SAP交货单行号")
    @TableField("DELIVERY_NOTE_SAP_ITEM")
    private String deliveryNoteSapItem;
    
    @ApiModelProperty(value = "储位UUID")
    @TableField("STORAGE_UUID")
    private String storageUuid;

    @ApiModelProperty(value = "备用字段")
    @TableField("FBK1")
    private String fbk1;

    @ApiModelProperty(value = "备用字段")
    @TableField("FBK2")
    private String fbk2;

    @ApiModelProperty(value = "备用字段")
    @TableField("FBK3")
    private String fbk3;

    @ApiModelProperty(value = "备用字段")
    @TableField("FBK4")
    private String fbk4;

    @ApiModelProperty(value = "备用字段")
    @TableField("FBK5")
    private String fbk5;


}
