BatchAndQty.java 459 Bytes
package com.huaheng.api.tv.domain;

import java.math.BigDecimal;

public class BatchAndQty {
    private String batchAndqty;
    private BigDecimal qty;

    public String getBatchAndqty() {
        return batchAndqty;
    }

    public void setBatchAndqty(String batchAndqty) {
        this.batchAndqty = batchAndqty;
    }

    public BigDecimal getQty() {
        return qty;
    }

    public void setQty(BigDecimal qty) {
        this.qty = qty;
    }
}