自动化立体仓库 - WMS系统
#
18516761980
2021-12-06 7203d67cfa3a2fc1cab9b8985dfd35c1797207b1
src/main/java/com/zy/asrs/entity/MatCodeCountDto.java
@@ -5,17 +5,36 @@
 */
public class MatCodeCountDto {
    private String billNo;
    private Integer seqNo;
    private String matNo;
    private int count;
    private Double count;
    public MatCodeCountDto() {
    }
    public MatCodeCountDto(String matNo, int count) {
    public MatCodeCountDto(String matNo, Double count) {
        this.matNo = matNo;
        this.count = count;
    }
    public MatCodeCountDto(String billNo, Integer seqNo, String matNo, Double count) {
        this.matNo = matNo;
        this.count = count;
        this.billNo = billNo;
        this.seqNo = seqNo;
    }
    public String getBillNo() { return billNo; }
    public void setBillNo(String billNo) { this.billNo = billNo; }
    public Integer getSeqNo() { return seqNo; }
    public void setSeqNo(Integer seqNo) { this.seqNo = seqNo; }
    public String getMatNo() {
        return matNo;
@@ -25,11 +44,11 @@
        this.matNo = matNo;
    }
    public int getCount() {
    public Double getCount() {
        return count;
    }
    public void setCount(int count) {
    public void setCount(Double count) {
        this.count = count;
    }
}