kimi
2020-05-18 c8aee7b9bfd79cfd741d7e5692520f4f51a31a86
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
package com.highdatas.mdm.entity;
 
import com.baomidou.mybatisplus.activerecord.Model;
import com.baomidou.mybatisplus.annotations.TableName;
 
import java.io.Serializable;
import java.math.BigDecimal;
 
/**
 * <p>
 * 
 * </p>
 *
 * @author kimi
 * @since 2019-12-16
 */
@TableName("attention")
 
public class Attention extends Model<Attention> {
 
    private static final long serialVersionUID = 1L;
 
    private String id;
 
    private String type;
 
    private String peroid;
 
    private String dimension;
 
    private String name;
 
    private Integer cnt;
 
    private BigDecimal amt;
 
    private Integer changedcnt;
 
    private BigDecimal changedamt;
 
    private BigDecimal rate;
 
    public String getId() {
        return id;
    }
 
    public Attention setId(String id) {
        this.id = id;
        return this;
    }
    public String getType() {
        return type;
    }
 
    public Attention setType(String type) {
        this.type = type;
        return this;
    }
    public String getPeroid() {
        return peroid;
    }
 
    public Attention setPeroid(String peroid) {
        this.peroid = peroid;
        return this;
    }
    public String getDimension() {
        return dimension;
    }
 
    public Attention setDimension(String dimension) {
        this.dimension = dimension;
        return this;
    }
    public String getName() {
        return name;
    }
 
    public Attention setName(String name) {
        this.name = name;
        return this;
    }
    public Integer getCnt() {
        return cnt;
    }
 
    public Attention setCnt(Integer cnt) {
        this.cnt = cnt;
        return this;
    }
    public BigDecimal getAmt() {
        return amt;
    }
 
    public Attention setAmt(BigDecimal amt) {
        this.amt = amt;
        return this;
    }
    public Integer getChangedcnt() {
        return changedcnt;
    }
 
    public Attention setChangedcnt(Integer changedcnt) {
        this.changedcnt = changedcnt;
        return this;
    }
    public BigDecimal getChangedamt() {
        return changedamt;
    }
 
    public Attention setChangedamt(BigDecimal changedamt) {
        this.changedamt = changedamt;
        return this;
    }
    public BigDecimal getRate() {
        return rate;
    }
 
    public Attention setRate(BigDecimal rate) {
        this.rate = rate;
        return this;
    }
 
    @Override
    protected Serializable pkVal() {
        return this.id;
    }
 
    @Override
    public String toString() {
        return "Attention{" +
        "id=" + id +
        ", type=" + type +
        ", peroid=" + peroid +
        ", dimension=" + dimension +
        ", name=" + name +
        ", cnt=" + cnt +
        ", amt=" + amt +
        ", changedcnt=" + changedcnt +
        ", changedamt=" + changedamt +
        ", rate=" + rate +
        "}";
    }
}