com.founder.core.domain.GsInvoCumlateFund Maven / Gradle / Ivy
The newest version!
package com.founder.core.domain;
import com.baomidou.mybatisplus.annotation.TableName;
import java.io.Serializable;
import java.math.BigDecimal;
@TableName(value = "gjyb_invo_cumlate_fund")
public class GsInvoCumlateFund implements Serializable {
private String setl_id;//[setl_id] [varchar](50) NULL,
private String fee_type;//[fee_type] [varchar](50) NULL,
private String year;//[year] [varchar](10) NULL,
private String cum_type_code;//[cum_type_code] [varchar](20) NULL,
private String cum_type_name;//[cum_type_name] [varchar](200) NULL,
private BigDecimal cum;//[cum] [decimal](16, 2) NULL
public String getSetl_id() {
return setl_id;
}
public void setSetl_id(String setl_id) {
this.setl_id = setl_id;
}
public String getFee_type() {
return fee_type;
}
public void setFee_type(String fee_type) {
this.fee_type = fee_type;
}
public String getYear() {
return year;
}
public void setYear(String year) {
this.year = year;
}
public String getCum_type_code() {
return cum_type_code;
}
public void setCum_type_code(String cum_type_code) {
this.cum_type_code = cum_type_code;
}
public String getCum_type_name() {
return cum_type_name;
}
public void setCum_type_name(String cum_type_name) {
this.cum_type_name = cum_type_name;
}
public BigDecimal getCum() {
return cum;
}
public void setCum(BigDecimal cum) {
this.cum = cum;
}
}