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
27
package com.jsh.erp.datasource.entities;
 
import java.math.BigDecimal;
import java.util.Date;
 
public class DepotItemVo4Material extends DepotItem{
 
    private String mname;
 
    private String mmodel;
 
    public String getMname() {
        return mname;
    }
 
    public void setMname(String mname) {
        this.mname = mname;
    }
 
    public String getMmodel() {
        return mmodel;
    }
 
    public void setMmodel(String mmodel) {
        this.mmodel = mmodel;
    }
}