cloudroam
2025-03-10 c306cba52bcc3e2c423f77d4a52c35ad04c52038
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package com.jsh.erp.datasource.vo;
 
import java.math.BigDecimal;
 
public class MaterialCountVo {
 
    private Long headerId;
 
    private BigDecimal materialCount;
 
    public Long getHeaderId() {
        return headerId;
    }
 
    public void setHeaderId(Long headerId) {
        this.headerId = headerId;
    }
 
    public BigDecimal getMaterialCount() {
        return materialCount;
    }
 
    public void setMaterialCount(BigDecimal materialCount) {
        this.materialCount = materialCount;
    }
}