ShipmentContainerAdvice.java 4.45 KB
package com.huaheng.pc.shipment.shipmentContainerAdvice.domain;

import java.io.Serializable;

import com.baomidou.mybatisplus.annotation.TableField;
import org.jeecgframework.poi.excel.annotation.Excel;

import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;

import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;

/**
 * @Description: 出库预配盘
 * @Author:      jeecg-boot
 * @Date:        2023-11-16
 * @Version:     V1.0
 */
@Data
@TableName("shipment_container_advice")
@Accessors(chain = true)
@EqualsAndHashCode(callSuper = false)
@ApiModel(value = "shipment_container_advice对象", description = "出库预配盘")
public class ShipmentContainerAdvice implements Serializable {
    private static final long serialVersionUID = 1L;

    /** 主键 */
    @TableId(type = IdType.AUTO)
    @ApiModelProperty(value = "主键")
    private Integer id;
    /** 仓库编码 */
    @Excel(name = "仓库编码", width = 15)
    @ApiModelProperty(value = "仓库编码")
    @TableField(value = "warehouseCode")
    private String warehouseCode;
    /** 容器编码 */
    @Excel(name = "容器编码", width = 15)
    @ApiModelProperty(value = "容器编码")
    @TableField(value = "containerCode")
    private String containerCode;

    @ApiModelProperty(value = "库存id")
    @TableField(value = "inventoryDetailId")
    private Integer inventoryDetailId;

    /** 出库配盘ID */
    @Excel(name = "出库配盘ID", width = 15)
    @ApiModelProperty(value = "出库配盘ID")
    @TableField(value = "shipmentContainerId")
    private Integer shipmentContainerId;
    /** 出库单编码 */
    @Excel(name = "出库单编码", width = 15)
    @ApiModelProperty(value = "出库单编码")
    @TableField(value = "shipmentCode")
    private String shipmentCode;
    /** 出库单ID */
    @Excel(name = "出库单ID", width = 15)
    @ApiModelProperty(value = "出库单ID")
    @TableField(value = "shipmentId")
    private Integer shipmentId;
    /** 出库明细id */
    @Excel(name = "出库明细id", width = 15)
    @ApiModelProperty(value = "出库明细id")
    @TableField(value = "shipmentDetailId")
    private Integer shipmentDetailId;
    /** 货主 */
    @Excel(name = "货主", width = 15)
    @ApiModelProperty(value = "货主")
    @TableField(value = "companyCode")
    private String companyCode;
    /** 物料编码 */
    @Excel(name = "物料编码", width = 15)
    @ApiModelProperty(value = "物料编码")
    @TableField(value = "materialCode")
    private String materialCode;
    /** 物料名称 */
    @Excel(name = "物料名称", width = 15)
    @ApiModelProperty(value = "物料名称")
    @TableField(value = "materialName")
    private String materialName;
    /** 物料规格 */
    @Excel(name = "物料规格", width = 15)
    @ApiModelProperty(value = "物料规格")
    @TableField(value = "materialSpec")
    private String materialSpec;
    /** 物料单位 */
    @Excel(name = "物料单位", width = 15)
    @ApiModelProperty(value = "物料单位")
    @TableField(value = "materialUnit")
    private String materialUnit;
    /** 批次 */
    @Excel(name = "批次", width = 15)
    @ApiModelProperty(value = "批次")
    @TableField(value = "batch")
    private String batch;
    /** 状态 */
    @Excel(name = "状态", width = 15)
    @ApiModelProperty(value = "状态")
    @TableField(value = "status")
    private Integer status;
    /** 数量 */
    @Excel(name = "数量", width = 15)
    @ApiModelProperty(value = "数量")
    @TableField(value = "qty")
    private java.math.BigDecimal qty;
    /** 已出数量 */
    @Excel(name = "已出数量", width = 15)
    @ApiModelProperty(value = "已出数量")
    @TableField(value = "taskQty")
    private java.math.BigDecimal taskQty;
    /** 创建人 */
    @ApiModelProperty(value = "创建人")
    @TableField(value = "createdBy")
    private String createdBy;
    /** 创建日期 */
    @ApiModelProperty(value = "创建日期")
    @TableField(value = "created")
    private java.util.Date created;
    /** 更新人 */
    @ApiModelProperty(value = "更新人")
    @TableField(value = "lastUpdatedBy")
    private String lastUpdatedBy;
    /** 更新日期 */
    @ApiModelProperty(value = "更新日期")
    @TableField(value = "lastUpdated")
    private java.util.Date lastUpdated;
}