Sign in

wms / wms_shanghaichaogui · Files

Logo

GitLab

  • Back to group
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • wms_shanghaichaogui
  • ..
  • domain
  • BatchAndQty.java
  • 修改
    61ac5b38
    曾湘平 authored
    2023-06-21 10:57:38 +0800  
    Browse Code »
BatchAndQty.java 459 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
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;
    }
}