郑永安
2023-06-19 f65443d8abeaedc9d102324565e8368e7c9d90c8
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
package com.gk.firework.Domain.Vo;
 
import com.gk.firework.Domain.ProductInfo;
 
import java.math.BigDecimal;
 
 
public class SaleNumVo extends ProductInfo {
 
    private BigDecimal num;
 
    private String itemcode;
 
    private String enterprisenumber;
 
    private String enterprisename;
 
 
    public BigDecimal getNum() {
        return num;
    }
 
    public void setNum(BigDecimal num) {
        this.num = num;
    }
 
    public String getItemcode() {
        return itemcode;
    }
 
    public void setItemcode(String itemcode) {
        this.itemcode = itemcode;
    }
 
    public String getEnterprisenumber() {
        return enterprisenumber;
    }
 
    public void setEnterprisenumber(String enterprisenumber) {
        this.enterprisenumber = enterprisenumber;
    }
 
    public String getEnterprisename() {
        return enterprisename;
    }
 
    public void setEnterprisename(String enterprisename) {
        this.enterprisename = enterprisename;
    }
}