Helius
2020-12-14 cc78ea9e77300dfcb9eb7a9dc397c81548d695fb
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
package com.matrix.system.hive.bean;
 
import com.matrix.core.anotations.Extend;
import com.matrix.system.hive.plugin.util.NumberUtils;
 
import java.io.Serializable;
 
 
/**
 *
 * @date 2016-07-03 20:53
 */
public class SysProjGoods implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    /**
     * id
     */
    private Long id;
 
    /**
     * skuid
     */
    private Long skuId;
 
    /**
     * 产品数量
     */
    private Double total;
 
    /**
     * 对应的项目ID
     */
    private Long projId;
 
    /**
     * 扩展属性
     */
    /**
     * 配料库存信息
     */
    @Extend
    private SysGoods goods;
 
 
 
 
    public SysGoods getGoods() {
        return goods;
    }
 
    public void setGoods(SysGoods goods) {
        this.goods = goods;
    }
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public Long getSkuId() {
        return skuId;
    }
 
    public void setSkuId(Long skuId) {
        this.skuId = skuId;
    }
 
    public Double getTotal() {
        return total;
    }
 
    public void setTotal(Double total) {
         this.total = NumberUtils.getDoubleNum(total, 3);
    }
 
    public Long getProjId() {
        return projId;
    }
 
    public void setProjId(Long projId) {
        this.projId = projId;
    }
 
 
}