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 +
|
"}";
|
}
|
}
|