Header.java 1.12 KB
package com.huaheng.api.mes.dto;

import io.swagger.annotations.ApiModelProperty;

import java.math.BigDecimal;

public class Header {

    @ApiModelProperty(value="id")
    private Integer id;

    /** 入库单 单号*/
    @ApiModelProperty(value="MES单据单号")
    private String referCode;

    /**入库单 单据类型 (用于区分入库和外协入库)*/
    @ApiModelProperty(value="MES单据类型")
    private String refeCodeType;

    @ApiModelProperty(value="总数量")
    private BigDecimal totalQty;

    public BigDecimal getTotalQty() {
        return totalQty;
    }

    public void setTotalQty(BigDecimal totalQty) {
        this.totalQty = totalQty;
    }

    public Integer getId() {
        return id;
    }

    public void setId(Integer id) {
        this.id = id;
    }

    public String getReferCode() {
        return referCode;
    }

    public void setReferCode(String referCode) {
        this.referCode = referCode;
    }

    public String getRefeCodeType() {
        return refeCodeType;
    }

    public void setRefeCodeType(String refeCodeType) {
        this.refeCodeType = refeCodeType;
    }
}